/* ===== CSS Variables (Design Tokens) ===== */
:root {
  --background: hsl(45, 40%, 97%);
  --foreground: hsl(240, 15%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(240, 15%, 15%);
  --primary: hsl(8, 90%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(195, 90%, 50%);
  --muted: hsl(40, 25%, 92%);
  --muted-foreground: hsl(240, 8%, 40%);
  --border: hsl(40, 30%, 88%);
  --radius: 1rem;
  --mint: hsl(155, 85%, 40%);
  --lavender: hsl(268, 60%, 60%);
  --peach: hsl(22, 95%, 58%);
  --sky: hsl(188, 100%, 45%);
  --sunny: hsl(42, 100%, 50%);
  --coral: hsl(8, 90%, 55%);
  --font-sans: 'Nunito', system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
}

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Utilities ===== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--muted);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 3rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.4rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 3.5rem;
  width: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsla(240, 15%, 15%, 0.7);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--foreground);
  background: var(--muted);
}

.nav-link.active {
  background: hsla(8, 90%, 55%, 0.1);
  color: var(--primary);
}

.social-links-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.75rem;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border);
}

.social-icon {
  color: var(--muted-foreground);
  transition: color 0.2s;
  display: flex;
}

.social-youtube:hover {
  color: #ef4444;
}

.social-facebook:hover {
  color: #2563eb;
}

.social-instagram:hover {
  color: #ec4899;
}

.social-spotify:hover {
  color: #22c55e;
}

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.mobile-toggle:hover {
  background: var(--muted);
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--card);
  animation: fadeIn 0.3s ease-out;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: hsla(240, 15%, 15%, 0.7);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
  background: var(--muted);
}

.mobile-nav-link.active {
  background: hsla(8, 90%, 55%, 0.1);
  color: var(--primary);
}

.mobile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .logo-img {
    height: 4.5rem;
  }
}

/* ===== Main ===== */
.main-content {
  flex: 1;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15) 40%, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  width: 100%;
  text-align: left;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero .hero-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-content {
    padding: 4rem 4rem;
  }

  .hero .hero-sub {
    font-size: 1.25rem;
  }

  .hero .hero-desc {
    font-size: 1rem;
  }
}

/* ===== Sections ===== */
.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-title.text-mint {
  color: var(--mint);
}

.section-title.text-white {
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}

/* ===== Heading inline icon ===== */
.heading-icon {
  display: inline-flex;
  vertical-align: middle;
}

.heading-icon svg {
  width: 1em;
  height: 1em;
}

/* ===== Video Player ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--muted);
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Video Thumbnail Grid ===== */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 0 1rem;
  /* max-width: 48rem; */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.thumb-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.thumb-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--muted);
  cursor: pointer;
  border: none;
  padding: 0;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.thumb-btn:hover .thumb-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.thumb-play {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px -4px hsla(8, 90%, 55%, 0.25);
  transition: transform 0.2s;
}

.thumb-btn:hover .thumb-play {
  transform: scale(1.1);
}

.thumb-play svg {
  margin-left: 2px;
}

.thumb-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.thumb-iframe-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--muted);
}

.thumb-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Link row ===== */
.link-row {
  text-align: center;
  margin-top: 1.5rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: text-decoration 0.2s;
}

.link-arrow:hover {
  text-decoration: underline;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

/* ===== Playlist Cards (categories) ===== */
.bg-peach-section {
  background: var(--peach);
  padding: 3rem 0;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  justify-items: center;
}

@media (min-width: 640px) {
  .playlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.playlist-card {
  display: block;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
  width: 100%;
  text-align: left;
}

.playlist-card:hover {
  transform: scale(1.05);
}

.playlist-card .pl-icon {
  display: block;
  margin-bottom: 0.75rem;
  color: white;
}

.playlist-card .pl-icon svg {
  width: 2rem;
  height: 2rem;
}

.playlist-card:hover .pl-icon svg {
  animation: bounceSoft 2s ease-in-out infinite;
}

.playlist-card .pl-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  color: white;
}

/* Playlist color variants */
.pl-coral {
  background: hsla(8, 90%, 55%, 0.5);
}

.pl-coral:hover {
  background: hsla(8, 90%, 55%, 0.6);
}

.pl-sky {
  background: hsla(188, 100%, 45%, 0.6);
}

.pl-sky:hover {
  background: hsla(188, 100%, 45%, 0.75);
}

.pl-sunny {
  background: hsla(42, 100%, 50%, 0.5);
}

.pl-sunny:hover {
  background: hsla(42, 100%, 50%, 0.6);
}

.pl-mint {
  background: hsla(155, 85%, 40%, 0.6);
}

.pl-mint:hover {
  background: hsla(155, 85%, 40%, 0.75);
}

.pl-lavender {
  background: hsla(268, 60%, 60%, 0.5);
}

.pl-lavender:hover {
  background: hsla(268, 60%, 60%, 0.6);
}

.pl-peach {
  background: hsla(22, 95%, 58%, 0.5);
}

.pl-peach:hover {
  background: hsla(22, 95%, 58%, 0.6);
}

.pl-primary {
  background: hsla(8, 90%, 55%, 0.5);
}

.pl-primary:hover {
  background: hsla(8, 90%, 55%, 0.6);
}

/* ===== CTA Banner (coloring) ===== */
.cta-banner {
  display: block;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  border: 2px solid hsla(8, 90%, 55%, 0.2);
  background: linear-gradient(135deg, hsla(8, 90%, 55%, 0.08), hsla(42, 100%, 50%, 0.06) 50%, hsla(188, 100%, 45%, 0.08));
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
  transition: transform 0.2s;
  /* max-width: 48rem; */
  margin: 0 auto;
}

.cta-banner:hover {
  transform: scale(1.02);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-icon {
  flex-shrink: 0;
  color: var(--foreground);
}

.cta-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.cta-body {
  flex: 1;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cta-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cta-arrow {
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.cta-banner:hover .cta-arrow {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 2.5rem 3rem;
  }

  .cta-icon svg {
    width: 3rem;
    height: 3rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

/* ===== Songs Page — Latest Video ===== */
.latest-video-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
}

.latest-video-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.2s;
}

.latest-video-btn:hover .latest-video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.latest-play-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px -4px hsla(8, 90%, 55%, 0.25);
  transition: transform 0.2s;
}

.latest-video-btn:hover .latest-play-circle {
  transform: scale(1.1);
}

.latest-play-circle svg {
  margin-left: 3px;
}

.latest-video-title {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ===== Activities Page ===== */
.activities-bg {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: hsl(30, 85%, 75%);
}

.doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  color: white;
  opacity: 0.18;
}

.doodle-icon {
  position: absolute;
  display: block;
}

.doodle-icon svg {
  width: 100%;
  height: 100%;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-card {
  position: relative;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.activity-card:not(.coming-soon):hover {
  transform: scale(1.05);
  border-color: hsla(8, 90%, 55%, 0.3);
  box-shadow: 0 4px 24px -4px hsla(8, 90%, 55%, 0.25);
}

.activity-card.coming-soon {
  opacity: 0.6;
  cursor: default;
}

.activity-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.activity-icon svg {
  width: 3rem;
  height: 3rem;
}

.activity-card:not(.coming-soon):hover .activity-icon svg {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-3deg);
  }

  75% {
    transform: rotate(3deg);
  }
}

.activity-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.activity-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.coming-soon-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

/* ===== For Parents Page ===== */
.parents-bg {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: hsl(85, 45%, 75%);
}

.info-card {
  background: var(--card);
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-card-header span {
  display: flex;
  flex-shrink: 0;
}

.info-card-header span svg {
  width: 24px;
  height: 24px;
}

.info-card-header h2 {
  font-size: 1.25rem;
}

.info-card .text-body {
  color: hsla(240, 15%, 15%, 0.8);
  line-height: 1.7;
}

.info-card .text-body p {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: hsla(240, 15%, 15%, 0.8);
}

.check-list .check-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
  display: flex;
}

.check-list .check-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== Contact Page ===== */
.contact-card {
  background: var(--card);
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
  max-width: 40rem;
  margin: 0 auto;
}

.contact-card .mail-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  color: var(--foreground);
}

.contact-card .mail-icon svg {
  width: 3rem;
  height: 3rem;
}

.contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: opacity 0.2s;
}

.mail-btn:hover {
  opacity: 0.9;
}

.mail-btn svg {
  width: 20px;
  height: 20px;
}

.contact-yt {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-yt a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-yt a:hover {
  color: var(--foreground);
}

/* ===== Coloring Page ===== */
.coloring-card {
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: 0 4px 20px -4px hsla(240, 15%, 15%, 0.08);
  transition: transform 0.2s;
  max-width: 20rem;
}

.coloring-card:hover {
  transform: scale(1.05);
}

.coloring-card img {
  width: 16rem;
  height: 16rem;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.coloring-card h3 {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.age-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsla(8, 90%, 55%, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.download-btn:hover {
  opacity: 0.9;
}

/* ===== Playlist Detail Page ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--foreground);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-header .detail-icon {
  display: flex;
  color: var(--foreground);
}

.detail-header .detail-icon svg {
  width: 2rem;
  height: 2rem;
}

.detail-header h1 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .detail-header h1 {
    font-size: 1.875rem;
  }
}

/* Play button in embed placeholder */
.embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  background: transparent;
}

.embed-play-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px -4px hsla(8, 90%, 55%, 0.25);
  transition: transform 0.2s;
}

.embed-placeholder:hover .embed-play-circle {
  transform: scale(1.1);
}

.embed-placeholder span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-inner {
  padding: 2rem 1rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  height: 4rem;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

/* ===== Scroll reveal ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}