/* ===================================
   CSS VARIABLES — PASTEL THEME SYSTEM
   =================================== */
:root {
  /* Pastel Palette */
  --pastel-lavender:    #e8d5f5;
  --pastel-mint:        #c9f0e3;
  --pastel-peach:       #fde4d0;
  --pastel-sky:         #cce8fb;
  --pastel-rose:        #fad4e0;
  --pastel-lemon:       #fdf4c2;
  --pastel-lilac:       #ddd0f7;
  --pastel-aqua:        #c5eef5;

  /* Navbar */
  --nav-bg:             rgba(240, 230, 255, 0.55);
  --nav-border:         rgba(180, 140, 240, 0.25);
  --nav-shadow:         rgba(180, 130, 230, 0.18);
  --nav-link:           #7c5cbf;
  --nav-link-hover:     #4a3080;
  --nav-link-active-bg: rgba(180, 140, 240, 0.2);
  --nav-dot:            #b48ae0;
  --nav-btn-border:     rgba(180, 140, 240, 0.35);
  --nav-btn-color:      #7c5cbf;
  --nav-cta-from:       #c9a8f0;
  --nav-cta-to:         #f5b8d8;
  --nav-cta-text:       #3a1a5c;
  --nav-logo-from:      #c9a8f0;
  --nav-logo-to:        #f5b8d8;
  --nav-logo-glow:      rgba(180, 130, 220, 0.45);
  --nav-name:           #4a3080;
  --nav-tag:            #b48ae0;
  --mobile-bg:          rgba(245, 238, 255, 0.97);

  /* Footer */
  --footer-bg-from:     #f5e6ff;
  --footer-bg-mid:      #ffe6f2;
  --footer-bg-to:       #e6f5ff;
  --footer-accent-1:    #c9a8f0;
  --footer-accent-2:    #f9b8d6;
  --footer-accent-3:    #9dd8f5;
  --footer-text:        #4a3060;
  --footer-muted:       rgba(80, 50, 100, 0.65);
  --footer-border:      rgba(180, 130, 220, 0.2);
  --footer-card-bg:     rgba(255, 255, 255, 0.35);
  --footer-card-hover:  rgba(180, 130, 220, 0.15);

  /* Body background (pastel animated gradient) */
  --body-grad-1: #f9e4ff;
  --body-grad-2: #d4eeff;
  --body-grad-3: #fff0d4;
  --body-grad-4: #d4ffe8;

  /* Surface and text */
  --text-primary: #333333;
  --text-secondary: #5d4f72;
  --heading-color: #3a2060;
  --section-bg: rgba(255, 255, 255, 0.5);
  --section-border: rgba(220, 200, 255, 0.4);
  --section-shadow: rgba(160, 100, 200, 0.1);
  --table-row-even: rgba(255,255,255,0.5);
}

:root {
    --text-primary: #3a1a5c;
    --card-bg: rgba(255,255,255,0.38);
}

.dark {
    --text-primary: #f3e8ff;
    --card-bg: rgba(40,20,60,0.75);
}

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

.section-card {
    background: var(--card-bg);
}

html[data-theme="dark"] {
  --nav-bg: rgba(31, 26, 44, 0.78);
  --nav-border: rgba(163, 134, 220, 0.35);
  --nav-shadow: rgba(18, 12, 30, 0.5);
  --nav-link: #d8c8ff;
  --nav-link-hover: #f0e9ff;
  --nav-link-active-bg: rgba(163, 134, 220, 0.22);
  --nav-dot: #f4a7c5;
  --nav-btn-border: rgba(208, 184, 255, 0.4);
  --nav-btn-color: #e1d2ff;
  --nav-cta-from: #9f7be2;
  --nav-cta-to: #f09ac3;
  --nav-cta-text: #221132;
  --nav-logo-from: #9f7be2;
  --nav-logo-to: #f09ac3;
  --nav-logo-glow: rgba(155, 120, 230, 0.5);
  --nav-name: #f2e9ff;
  --nav-tag: #d8b7ff;
  --mobile-bg: rgba(27, 23, 38, 0.95);

  --footer-bg-from: #20172b;
  --footer-bg-mid: #2a1d33;
  --footer-bg-to: #172535;
  --footer-accent-1: #a684e6;
  --footer-accent-2: #ef9cc2;
  --footer-accent-3: #7db7dd;
  --footer-text: #f1e9ff;
  --footer-muted: rgba(230, 221, 250, 0.75);
  --footer-border: rgba(166, 132, 230, 0.35);
  --footer-card-bg: rgba(255, 255, 255, 0.06);
  --footer-card-hover: rgba(166, 132, 230, 0.24);

  --body-grad-1: #191626;
  --body-grad-2: #182333;
  --body-grad-3: #2a1f31;
  --body-grad-4: #182828;

  --text-primary: #ebe4f8;
  --text-secondary: #c5b7dd;
  --heading-color: #f3ebff;
  --section-bg: rgba(24, 20, 36, 0.7);
  --section-border: rgba(158, 129, 216, 0.26);
  --section-shadow: rgba(5, 5, 10, 0.45);
  --table-row-even: rgba(255, 255, 255, 0.04);
}

/* ================
   GLOBAL RESET
   ================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Dancing+Script:wght@600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(-45deg,
    var(--body-grad-1),
    var(--body-grad-2),
    var(--body-grad-3),
    var(--body-grad-4));
  background-size: 400% 400%;
  animation: gradientBG 14s ease infinite;
  color: var(--text-primary);
  cursor: none;
}

@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================
   NAVBAR — PASTEL GLASSMORPHISM
   ============================ */
.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 20px;
  background: transparent;
}

.nav-pill {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 20px;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  box-shadow:
    0 8px 32px var(--nav-shadow),
    inset 0 1px 0 rgba(255,255,255,0.6);
  animation: popIn 0.6s cubic-bezier(.22,1,.36,1) both;
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-pill.scrolled {
  box-shadow:
    0 12px 40px var(--nav-shadow),
    inset 0 1px 0 rgba(255,255,255,0.7);
  background: rgba(240, 228, 255, 0.72);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nav-logo-from), var(--nav-logo-to));
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 18px var(--nav-logo-glow);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.logo:hover .logo-orb {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 6px 28px var(--nav-logo-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--nav-name);
  line-height: 1;
  font-weight: 700;
}

.logo-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--nav-tag);
}

/* Nav Links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(100, 65, 160, 0.65);
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  transition: color 0.22s, background 0.22s;
  white-space: nowrap;
}

.nav-center a:hover {
  color: var(--nav-link-hover);
  background: rgba(180, 140, 240, 0.12);
}

.nav-center a.active {
  color: var(--nav-link-hover);
  background: var(--nav-link-active-bg);
  border-bottom: 3px solid var(--nav-dot);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--nav-btn-border);
  background: rgba(255,255,255,0.28);
  color: var(--nav-btn-color);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s, transform 0.22s, color 0.22s;
}

.theme-toggle-btn:hover {
  border-color: rgba(180, 140, 240, 0.55);
  background: rgba(180, 140, 240, 0.12);
  color: var(--nav-link-hover);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.btn-ghost {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nav-btn-color);
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--nav-btn-border);
  transition: color 0.22s, border-color 0.22s, background 0.22s, transform 0.22s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--nav-link-hover);
  border-color: rgba(180, 140, 240, 0.55);
  background: rgba(180, 140, 240, 0.1);
  transform: translateY(-1px);
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--nav-cta-text);
  background: linear-gradient(135deg, var(--nav-cta-from) 0%, var(--nav-cta-to) 100%);
  padding: 10px 24px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(180, 130, 220, 0.4);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
  animation: scaleIn 0.6s cubic-bezier(.22,1,.36,1) 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-primary .play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.22s;
}

.btn-primary .play svg {
  width: 8px;
  height: 8px;
  fill: var(--nav-cta-text);
  margin-left: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 140, 230, 0.55);
  filter: brightness(1.06);
}

.btn-primary:hover .play {
  transform: scale(1.15);
}

.btn-primary:active {
  transform: scale(0.97);
}

.sep {
  width: 1px;
  height: 20px;
  background: rgba(180, 140, 240, 0.2);
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: rgba(120, 80, 180, 0.75);
  border-radius: 4px;
  transition: 0.32s ease;
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Dropdown */
.mobile-drop {
  display: none;
  max-width: 1200px;
  margin: 12px auto 0;
  background: var(--mobile-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 24px;
  border: 1px solid rgba(180, 140, 240, 0.18);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(160, 100, 200, 0.25);
  animation: dropIn 0.28s cubic-bezier(.22,1,.36,1) both;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-drop.open { display: block; }

.mobile-drop a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(80, 50, 120, 0.75);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(180, 140, 240, 0.1);
  transition: color 0.2s, background 0.2s;
}

.mobile-theme-toggle {
  width: calc(100% - 36px);
  margin: 16px 18px 8px;
  border: 1px solid var(--nav-btn-border);
  background: rgba(255,255,255,0.2);
  color: var(--nav-btn-color);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-drop a:last-child { border-bottom: none; }

.mobile-drop a:hover {
  color: var(--nav-link-hover);
  background: rgba(180, 140, 240, 0.08);
}

.mobile-drop a.active {
  color: var(--nav-link-hover);
  background: var(--nav-link-active-bg);
  font-weight: 600;
  border-left: 4px solid var(--nav-dot);
  padding-left: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mobile-drop a .m-ico { font-size: 1.1rem; }

.mobile-drop .m-cta {
  margin: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--nav-cta-text);
  background: linear-gradient(135deg, var(--nav-cta-from), var(--nav-cta-to));
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(180, 130, 220, 0.38);
  border-bottom: none !important;
}

/* ========
   SECTIONS
   ======== */
.hero {
  display: grid;
  place-items: center;
  min-height: 15vh;
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: rgba(140, 90, 200, 0.4);
  padding: 40px 20px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 40px;
}

section {
  margin-bottom: 50px;
  padding: 30px;
  border-radius: 20px;
  background: var(--section-bg);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px var(--section-shadow);
  border: 1px solid var(--section-border);
}

h2, h3 { margin-bottom: 15px; color: var(--heading-color); }

ul li { margin: 8px 0; font-weight: 500; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 15px;
  min-width: 600px;
}

table th {
  background: linear-gradient(135deg, #c9a8f0, #f5b8d8);
  color: #3a1a5c;
  padding: 10px;
}

table td { padding: 10px; text-align: center; }
table tr:nth-child(even) { background: var(--table-row-even); }

.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Art Cards */
.art-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.art-cards a {
  flex: 1 1 150px;
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  color: #3a1a5c;
  background: linear-gradient(45deg, #dab6f8, #f9b8d6);
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 14px rgba(180, 130, 220, 0.18);
}

.art-cards a:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(180, 100, 200, 0.28);
}

/* Gallery */
.gallery-grid {
  width: 90%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(160, 100, 200, 0.18);
  transition: 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover { transform: translateY(-10px); }
.gallery-item:hover img { transform: scale(1.1); }

/* Journey */
.journey p { margin-bottom: 15px; line-height: 1.6; }
.journey a { color: #b048a0; font-weight: 600; }

html[data-theme="dark"] .journey a {
  color: #f0a6cc;
}

/* Custom Cursor */
.circle {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: conic-gradient(#f0b8ff, #ffd6e8, #ffe8b0, #c8f5d8, #b8e0ff, #d4b8ff, #f0b8ff);
  animation: rotateRainbow 2s linear infinite;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

@keyframes rotateRainbow {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.video-grid iframe { width: 100%; height: 250px; border-radius: 15px; }
.video-card img { width: 100%; border-radius: 12px; transition: 0.3s ease; }
.video-card img:hover { transform: scale(1.05); }
.video-card p { margin-top: 8px; font-size: 14px; color: #555; }

/* ==================================
   FOOTER — SOFT PASTEL GLASSMORPHISM
   ================================== */
.site-footer {
  background: linear-gradient(135deg,
    var(--footer-bg-from) 0%,
    var(--footer-bg-mid) 45%,
    var(--footer-bg-to) 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  padding: 20px 0;
}

/* Soft blob decorations */
.site-footer .blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(48px);
}

.site-footer .blob-1 {
  width: 480px;
  height: 400px;
  background: radial-gradient(circle, #dab6f8, #f5c6e8);
  top: -100px;
  left: -80px;
  animation: blob-drift 18s ease-in-out infinite alternate;
}

.site-footer .blob-2 {
  width: 320px;
  height: 300px;
  background: radial-gradient(circle, #a8d8f5, #c8f0e8);
  bottom: -60px;
  right: 5%;
  animation: blob-drift 22s ease-in-out infinite alternate-reverse;
}

.site-footer .blob-3 {
  width: 220px;
  height: 240px;
  background: radial-gradient(circle, #fde4c8, #f9c8e0);
  top: 30%;
  right: 32%;
  animation: blob-drift 14s ease-in-out infinite alternate;
}

@keyframes blob-drift {
  from { transform: translate(0,0) rotate(0deg); }
  to   { transform: translate(16px, 10px) rotate(6deg); }
}

/* Top brush stripe */
.footer-brush {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--footer-accent-1) 15%,
    var(--footer-accent-2) 38%,
    var(--footer-accent-3) 58%,
    var(--footer-accent-1) 78%,
    transparent 100%);
  opacity: 0.9;
  position: relative;
}

.footer-brush::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px);
  opacity: 0.5;
}

/* Newsletter bar */
.footer-nl {
  border-bottom: 1px solid var(--footer-border);
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}

.footer-nl-left { display: flex; align-items: center; gap: 12px; }

.footer-nl-icon { font-size: 1.4rem; line-height: 1; color: #b060c8; }

.footer-nl-label { color: var(--footer-text); font-size: 0.92rem; line-height: 1.45; }
.footer-nl-label strong { display: block; font-weight: 600; color: #3a1060; }
.footer-nl-label span { color: rgba(80, 40, 100, 0.65); font-size: 0.78rem; }

.footer-nl-form {
  display: flex;
  border: 1px solid rgba(180, 130, 220, 0.35);
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(180, 130, 220, 0.12);
}

.footer-nl-form:focus-within {
  border-color: #c9a8f0;
  box-shadow: 0 0 20px rgba(180, 130, 220, 0.3);
}

.footer-nl-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: var(--footer-text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  width: 210px;
}

.footer-nl-form input::placeholder { color: rgba(100, 60, 140, 0.45); }

.footer-nl-form button {
  background: linear-gradient(135deg, var(--footer-accent-1) 0%, var(--footer-accent-2) 100%);
  border: none;
  padding: 10px 22px;
  color: #3a1060;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.footer-nl-form button:hover {
  background: linear-gradient(135deg, #b89ae0 0%, #f0a8c8 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(180, 130, 220, 0.4);
}

/* Footer grid */
.footer-grid {
  padding: 52px 64px 44px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 44px;
  position: relative;
  z-index: 2;
}

/* Brand column */
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-palette {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--footer-accent-1), var(--footer-accent-2), var(--footer-accent-3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(180, 130, 220, 0.38);
  transition: all 0.4s;
  flex-shrink: 0;
}

.footer-brand-link:hover .footer-palette {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 6px 24px rgba(180, 130, 220, 0.55);
}

.footer-wordmark-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: #3a1060;
  display: block;
  line-height: 1.1;
  font-weight: 700;
}

.footer-wordmark-tag {
  font-size: 0.66rem;
  color: #b060c8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-brand-desc {
  color: var(--footer-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.footer-pill {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(180, 130, 220, 0.28);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.7rem;
  color: var(--footer-text);
  transition: all 0.3s;
  cursor: default;
}

.footer-pill:hover {
  background: rgba(180, 130, 220, 0.15);
  border-color: #c9a8f0;
  color: #7040a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(180, 130, 220, 0.18);
}

.footer-milestone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(180, 130, 220, 0.25);
  border-radius: 8px;
  padding: 9px 14px;
  box-shadow: 0 2px 10px rgba(180, 130, 220, 0.1);
}

.footer-milestone-text { font-size: 0.76rem; color: var(--footer-text); line-height: 1.35; }
.footer-milestone-text strong { display: block; font-weight: 600; color: #a040b8; }

/* Nav columns */
.footer-nav-col h4 {
  font-size: 0.88rem;
  color: #3a1060;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-nav-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #c9a8f0, transparent);
  border-radius: 2px;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-col ul li a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
}

.footer-nav-col ul li a .fdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a8f0;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
  flex-shrink: 0;
}

.footer-nav-col ul li a:hover {
  color: #7040a0;
  gap: 11px;
  transform: translateX(4px);
}

.footer-nav-col ul li a:hover .fdot {
  opacity: 1;
  transform: scale(1);
}

/* Connect column */
.footer-connect-col h4 {
  font-size: 0.88rem;
  color: #3a1060;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-connect-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #f9b8d6, transparent);
  border-radius: 2px;
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  padding: 9px 13px;
  border: 1px solid rgba(180, 130, 220, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(180, 130, 220, 0.06);
}

.footer-social-link:hover {
  border-color: #c9a8f0;
  background: rgba(200, 160, 245, 0.18);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(180, 130, 220, 0.22);
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.footer-social-link:hover .footer-social-icon { transform: scale(1.1); }

.si-yt  { background: rgba(255, 180, 180, 0.25); color: #e05050; }
.si-ig  { background: rgba(240, 160, 200, 0.25); color: #c85098; }
.si-web { background: rgba(180, 210, 245, 0.25); color: #5090c8; }

.footer-social-name  { font-size: 0.78rem; color: #3a1060; font-weight: 600; display: block; line-height: 1.2; }
.footer-social-handle { font-size: 0.7rem; color: rgba(80, 40, 100, 0.6); }

/* Fun fact */
.footer-funfact {
  background: rgba(255, 255, 255, 0.45);
  border-left: 2px solid #c9a8f0;
  padding: 11px 13px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(180, 130, 220, 0.1);
}

.footer-funfact-label {
  font-size: 0.63rem;
  color: #b060c8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 600;
}

.footer-funfact-text {
  font-size: 0.78rem;
  color: var(--footer-muted);
  line-height: 1.5;
  font-style: italic;
}

.footer-funfact-text span {
  color: #a040b8;
  font-style: normal;
  font-weight: 600;
}

/* Divider */
.footer-divider {
  margin: 0 64px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(180, 130, 220, 0.35),
    rgba(240, 160, 200, 0.5),
    rgba(180, 130, 220, 0.35),
    transparent);
  position: relative;
  z-index: 2;
}

.footer-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c9a8f0;
  font-size: 0.58rem;
  background: linear-gradient(135deg, var(--footer-bg-from), var(--footer-bg-mid));
  padding: 0 8px;
  line-height: 1;
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.footer-copy { color: var(--footer-muted); font-size: 0.78rem; }
.footer-copy a { color: #b060c8; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.footer-copy a:hover { color: #7040a0; text-shadow: 0 0 10px rgba(180, 100, 220, 0.35); }

.footer-made {
  font-size: 0.76rem;
  color: var(--footer-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-heart {
  color: #e080b8;
  display: inline-block;
  animation: heartbeat 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(220, 100, 180, 0.45));
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.28); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
}

.footer-legal { display: flex; gap: 18px; }

.footer-legal a {
  color: rgba(80, 40, 100, 0.55);
  font-size: 0.73rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a8f0;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.footer-legal a:hover { color: #7040a0; }
.footer-legal a:hover::after { transform: scaleX(1); }

/* Scroll to top */
.footer-scroll-top {
  position: absolute;
  right: 64px;
  bottom: 72px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 130, 220, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(100, 60, 140, 0.75);
  font-size: 1rem;
  transition: all 0.3s;
  z-index: 10;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(180, 130, 220, 0.15);
}

.footer-scroll-top:hover {
  border-color: #c9a8f0;
  color: #7040a0;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(180, 130, 220, 0.35);
  background: rgba(200, 160, 245, 0.3);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 44px 36px 36px; }
  .footer-nl, .footer-bottom, .footer-divider { padding-left: 36px; padding-right: 36px; }
  .footer-divider { margin: 0 36px; }
  .footer-scroll-top { right: 36px; }
}

@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-sticky { padding: 12px 16px; }
  .nav-pill { height: 56px; max-width: 100%; }
  section { padding: 20px; }
}

@media (max-width: 600px) {
  table thead { display: none; }
  table, table tbody, table tr, table td { display: block; width: 100%; }
  table tr { margin-bottom: 15px; background: rgba(255,255,255,0.6); border-radius: 12px; padding: 10px; }
  table td { text-align: left; padding: 8px 10px; position: relative; }
  table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #b060c8;
  }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 36px 20px 28px;
    }
    .footer-nl {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-nl-form {
        width: 100%;
    }
    .footer-nl-form input {
        flex: 1;
        width: auto;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .footer-divider {
        margin: 0 20px;
    }
    .footer-scroll-top {
        right: 20px;
        bottom: 60px;
    }
    .footer-legal {
        flex-wrap: wrap;
        gap: 12px;
    }


    /* Responsive design */
    @media (max-width: 960px) {
        .footer-grid { 
            grid-template-columns: 1fr 1fr; 
            padding: 44px 36px 36px; 
        }
        .footer-nl, .footer-bottom, .footer-divider { 
            padding-left: 36px; 
            padding-right: 36px; 
        }
        .footer-divider { margin: 0 36px; }
        .footer-scroll-top { right: 36px; }
    }
    @media (max-width: 560px) {
        .footer-grid { 
            grid-template-columns: 1fr; 
            padding: 36px 20px 28px; 
        }
        .footer-nl { 
            padding: 20px; 
            flex-direction: column; 
            align-items: flex-start; 
        }
        .footer-nl-form { width: 100%; }
        .footer-nl-form input { flex: 1; width: auto; }
        .footer-bottom { 
            flex-direction: column; 
            align-items: flex-start; 
            padding: 16px 20px; 
        }
        .footer-divider { margin: 0 20px; }
        .footer-scroll-top { right: 20px; bottom: 60px; }
        .footer-legal { flex-wrap: wrap; gap: 12px; }
    }

}

/* =========================
   ART STUDIO PAGE STYLES
   ========================= */

/* Header */
header {
  text-align: center;
  padding: 30px 20px 10px;
}

header h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #4a3080;
}

/* Section Heading */
.container h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #3a2060;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Video Card */
.video-card {
  background: rgba(255,255,255,0.6);
  padding: 12px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(160,100,200,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(160,100,200,0.25);
}

/* Video iframe */
.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

/* Video caption */
.video-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--heading-color);
  text-align: center;
  font-weight: 500;
}

/* YouTube Link */
.youtube-link {
  text-align: center;
  margin-top: 25px;
}

.youtube-link a {
  text-decoration: none;
  font-weight: 600;
  color: #7c5cbf;
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(180,140,240,0.35);
  transition: all 0.25s ease;
}

.youtube-link a:hover {
  background: rgba(180,140,240,0.15);
  color: #4a3080;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-family: 'Dancing Script', cursive;
  color: #4a3080;
}

.hero h2 {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #7c5cbf;
}

.hero p {
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================================
   WATCH NOW — STATUS BADGE
   ================================ */

.watch-now-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.watch-now-header h2 {
  margin-bottom: 0;
}

#watchNowStatus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(180,140,240,0.3);
  color: #7c5cbf;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

#watchNowStatus[data-state="live"] {
  border-color: rgba(100,200,140,0.5);
  color: #2a7a50;
  background: rgba(200,255,230,0.5);
}

#watchNowStatus[data-state="fallback"] {
  border-color: rgba(200,160,80,0.4);
  color: #7a5a20;
  background: rgba(255,240,200,0.5);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot--live {
  background: #3db87a;
  box-shadow: 0 0 0 0 rgba(61,184,122,0.6);
  animation: statusPulse 2s ease-out infinite;
}

.status-dot--fallback {
  background: #c89030;
}

@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,184,122,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(61,184,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,184,122,0); }
}

/* ================================
   WATCH NOW — SKELETON LOADING
   ================================ */

@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.video-skeleton {
  pointer-events: none;
}

.skeleton-media {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(90deg,
    rgba(200,180,240,0.25) 0%,
    rgba(230,215,255,0.55) 50%,
    rgba(200,180,240,0.25) 100%);
  background-size: 600px 100%;
  animation: shimmer 1.6s linear infinite;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  margin-top: 10px;
  background: linear-gradient(90deg,
    rgba(200,180,240,0.2) 0%,
    rgba(230,215,255,0.45) 50%,
    rgba(200,180,240,0.2) 100%);
  background-size: 600px 100%;
  animation: shimmer 1.6s linear infinite;
}

.skeleton-line--long  { width: 80%; margin-left: auto; margin-right: auto; }
.skeleton-line--short { width: 50%; margin-left: auto; margin-right: auto; }

html[data-theme="dark"] .nav-center a {
  color: rgba(226, 212, 255, 0.75);
}

html[data-theme="dark"] .hamburger span {
  background: rgba(235, 223, 255, 0.9);
}

html[data-theme="dark"] .mobile-drop {
  border-color: rgba(166, 132, 230, 0.3);
  box-shadow: 0 16px 40px rgba(6, 6, 12, 0.45);
}

html[data-theme="dark"] .mobile-drop a {
  color: rgba(233, 223, 255, 0.85);
  border-bottom-color: rgba(166, 132, 230, 0.18);
}

html[data-theme="dark"] .mobile-drop a:hover {
  background: rgba(166, 132, 230, 0.15);
}

html[data-theme="dark"] .mobile-drop a.active {
  color: var(--nav-link-hover);
  background: var(--nav-link-active-bg);
  font-weight: 600;
  border-left: 4px solid var(--nav-dot);
  padding-left: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

html[data-theme="dark"] .theme-toggle-btn,
html[data-theme="dark"] .mobile-theme-toggle {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .art-cards a {
  color: #f3ecff;
  border-color: rgba(220, 205, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .video-card,
html[data-theme="dark"] .youtube-link a,
html[data-theme="dark"] #watchNowStatus,
html[data-theme="dark"] .footer-nl,
html[data-theme="dark"] .footer-nl-form,
html[data-theme="dark"] .footer-pill,
html[data-theme="dark"] .footer-milestone,
html[data-theme="dark"] .footer-social-link,
html[data-theme="dark"] .footer-funfact,
html[data-theme="dark"] .footer-scroll-top {
  background: var(--footer-card-bg);
}

html[data-theme="dark"] .footer-wordmark-name,
html[data-theme="dark"] .footer-social-name,
html[data-theme="dark"] .footer-connect-col h4,
html[data-theme="dark"] .footer-nav-col h4,
html[data-theme="dark"] .footer-nl-label strong,
html[data-theme="dark"] .footer-nl-icon {
  color: var(--footer-text);
}

html[data-theme="dark"] .footer-social-handle,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .footer-made,
html[data-theme="dark"] .footer-brand-desc,
html[data-theme="dark"] .footer-nav-col ul li a,
html[data-theme="dark"] .footer-funfact-text,
html[data-theme="dark"] .footer-legal a,
html[data-theme="dark"] .footer-nl-label span {
  color: var(--footer-muted);
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] header h1 {
  color: #f0e9ff;
}

html[data-theme="dark"] .hero h2 {
  color: #d4c3ff;
}

html[data-theme="dark"] .container h2 {
  color: var(--heading-color);
}