﻿/* ============================
   ARMANDO FLORES CAKERY STUDIO
   Color Palette from brand images
   ============================ */

:root {
  --brown:     #3D1F0D;
  --teal:      #1B4A47;
  --teal-light:#2A6B66;
  --red:       #8B1A1A;
  --red-light: #A52020;
  --gold:      #C9A84C;
  --gold-light:#E2C26A;
  --cream:     #F5F0E8;
  --white:     #FFFFFF;
  --dark:      #0D0D0D;
  --dark2:     #141414;
  --dark3:     #1A1A1A;
  --gray:      #888888;
  --gray-light:#CCCCCC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --radius:       12px;
  --radius-lg:    24px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); outline: none; border: none; }
ul { list-style: none; }

/* ========== THREE.JS CANVAS ========== */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========== MUSIC BUTTON ========== */
#music-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.85);
  border: 2px solid #C9A84C;
  color: #1a0a00;
  font-size: 1.7rem;
  line-height: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.6), 0 2px 8px rgba(0,0,0,0.4);
  pointer-events: all;
}
#music-btn:hover {
  background: #C9A84C;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(201,168,76,0.8);
}
#music-btn.active {
  background: #C9A84C;
  animation: pulse-music 2s ease-in-out infinite;
}
@keyframes pulse-music {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.5); }
  50%       { box-shadow: 0 4px 36px rgba(201,168,76,0.95); }
}

/* ========== LOADER ========== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201,168,76,0.6);
  margin-bottom: 1.5rem;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 10px;
  animation: loading-bar 2s ease forwards;
}
.loader-inner p {
  font-family: var(--font-display);
  color: var(--gray);
  letter-spacing: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
@keyframes loading-bar { from { width: 0; } to { width: 100%; } }
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 40px rgba(201,168,76,0.6); }
  50% { text-shadow: 0 0 80px rgba(201,168,76,1), 0 0 120px rgba(201,168,76,0.4); }
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0.8rem 3rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-af-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
  background: transparent;
  display: block;
}
.logo-af-img:hover {
  transform: scale(1.05);
}
.logo-af {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  display: block;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.mobile-menu-close:hover { background: var(--red); }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ========== MAIN CONTENT ========== */
main { position: relative; z-index: 1; }
section { position: relative; }

/* ========== HERO ========== */
.section-hero {
  min-height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
  overflow: hidden;
  position: relative;
}
.section-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,26,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  flex: 1 1 auto;
  max-width: 550px;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  animation: fadeInUp 1s 0.4s both;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s 0.6s both;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-style: italic;
  animation: fadeInUp 1s 0.8s both;
}
.hero-verse {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 0.9s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s 1s both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: fadeInUp 1s 1.2s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* HERO IMAGE */
.hero-image-wrap {
  flex: 0 0 auto;
  position: relative;
  width: 420px;
  height: 500px;
  animation: fadeInRight 1.2s 0.5s both;
  z-index: 1;
}
.hero-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
  animation: spin-slow 20s linear infinite;
}
.hero-ring::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(201,168,76,0.2);
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  z-index: 0;
}
.hero-image + .hero-image-placeholder { display: none; }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.5rem;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ========== SECTION SHARED ========== */
.section-dark {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6rem 3rem;
}
.section-ebooks, .section-classes, .section-videos, .section-about {
  padding: 6rem 3rem;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.section-header p { color: var(--gray-light); font-size: 1.05rem; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.full-width { width: 100%; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-link {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.3s;
}
.service-link:hover { text-decoration: underline; }

/* ========== EBOOKS ========== */
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.ebook-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.ebook-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.3);
}
.ebook-cover {
  width: 100%; height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--brown), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
}
.ebook-cover img { width: 100%; height: 100%; object-fit: cover; }
.ebook-info { padding: 1.5rem; }
.ebook-category {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ebook-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.ebook-info p { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.ebook-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.ebook-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}
.ebook-btn {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  transition: transform 0.3s;
}
.ebook-btn:hover { transform: scale(1.05); }
.ebook-skeleton {
  height: 350px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.section-cta {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.section-cta p { color: var(--gray-light); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
}
.newsletter-form input {
  flex: 1;
  background: none;
  color: var(--cream);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  transition: transform 0.3s;
}
.newsletter-form button:hover { transform: scale(1.03); }

/* ========== CLASSES ========== */
.classes-photo-row {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(42,21,7,0.15);
}
/* Placeholder when image file is missing */
.classes-photo-row.no-photo {
  height: 220px;
  background: linear-gradient(135deg, #3A8C85 0%, #C9A84C 50%, #C06070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.classes-photo-row.no-photo .classes-photo-overlay {
  background: linear-gradient(transparent 0%, rgba(42,21,7,0.55));
}
.classes-hero-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.classes-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 2.5rem 2rem;
  background: linear-gradient(transparent 40%, rgba(42,21,7,0.65));
  text-align: center;
}
.classes-photo-overlay p {
  color: #FDF8F2;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.classes-photo-overlay span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.classes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.class-type {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.class-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 55px; height: 55px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.class-type h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.class-type p { color: var(--gray); font-size: 0.9rem; }

.consult-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.consult-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group select option { background: var(--dark3); color: var(--cream); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-message { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.form-message.success { color: #4ecdc4; }
.form-message.error { color: var(--red-light); }

/* ========== CATERING ========== */
.chef-photo-banner {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(42,21,7,0.18);
}
/* Placeholder when image file is missing */
.chef-photo-banner.no-photo {
  height: 220px;
  background: linear-gradient(135deg, #8B1A1A 0%, #C9A84C 45%, #1B4A47 100%);
}
.chef-photo-banner.no-photo .chef-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(42,21,7,0.6));
}
.chef-banner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.chef-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(42,21,7,0.72));
  color: #FDF8F2;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-style: italic;
}
.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.catering-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.catering-item:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-5px);
}
.catering-emoji { font-size: 3rem; margin-bottom: 1rem; }
.catering-item h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.catering-item p { color: var(--gray); font-size: 0.875rem; }
.catering-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(139,26,26,0.08));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}
.catering-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.catering-cta p { color: var(--gray-light); margin-bottom: 2rem; }

/* ========== VIDEOS ========== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.3);
}
.video-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--brown));
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.video-play-btn:hover { background: rgba(0,0,0,0.1); }
.play-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.play-icon::after {
  content: '';
  border-left: 18px solid var(--dark);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-icon {
  transform: scale(1.1);
  background: var(--gold);
}
.video-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  font-weight: 700;
}
.badge-free { background: var(--teal); color: white; }
.badge-premium { background: linear-gradient(135deg, var(--gold), var(--red)); color: var(--dark); }
.video-duration {
  position: absolute;
  bottom: 0.5rem; right: 0.75rem;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.video-info { padding: 1.5rem; }
.video-cat {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.video-info h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.video-info p { color: var(--gray); font-size: 0.85rem; }
.video-skeleton {
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ========== ABOUT ========== */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-col { position: relative; }
.about-ring-outer {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: spin-slow 25s linear infinite reverse;
}
.about-img-wrap {
  position: relative;
  width: 380px; height: 460px;
  margin: 30px auto;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 1;
}
.about-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--brown));
  border-radius: var(--radius-lg);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  z-index: 1;
}
.about-badge-float {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.about-text-col h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0 0.25rem;
}
.about-text-col h3 {
  font-family: var(--font-display);
  color: var(--red-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.about-text-col p { color: var(--gray-light); margin-bottom: 1rem; }
.about-contacts { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.about-contact-item:hover { color: var(--gold); }
.contact-icon { font-size: 1.1rem; }
.about-verse {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  color: var(--gray);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  transform: translateY(-3px);
}
.contact-card-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.contact-card h4 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-card a { color: var(--gray-light); font-size: 0.85rem; word-break: break-word; }
.contact-card a:hover { color: var(--gold); }
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* ========== FOOTER ========== */
#footer {
  position: relative;
  z-index: 1;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  background: transparent;
}
.footer-logo {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--gray); font-size: 0.85rem; margin-bottom: 0.3rem; }
.footer-brand .footer-verse { color: var(--gold); font-size: 0.75rem; font-style: italic; }
.footer-brand span { font-size: 0.65rem; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; }
.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { color: var(--gray); font-size: 0.85rem; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--cream); }
.footer-newsletter h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-newsletter p { color: var(--gray); font-size: 0.8rem; margin-bottom: 1rem; }
.footer-form {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  overflow: hidden;
}
.footer-form input {
  flex: 1;
  background: none;
  color: var(--cream);
  font-size: 0.85rem;
  min-width: 0;
}
.footer-form input::placeholder { color: var(--gray); }
.footer-form button {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
  font-weight: 700;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.admin-link {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}
.admin-link:hover { color: var(--gold); }

/* ========== CHATBOT ========== */
.site-chatbot {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.site-chatbot-panel {
  width: min(360px, calc(100vw - 2rem));
  max-height: min(72vh, 620px);
  background: linear-gradient(180deg, rgba(14,14,16,0.98), rgba(10,10,10,0.98));
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.site-chatbot.open .site-chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.site-chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(138,24,28,0.22));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-chatbot-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0.3rem;
}
.site-chatbot-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
}
.site-chatbot-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.site-chatbot-close:hover {
  background: rgba(138,24,28,0.85);
  transform: rotate(90deg);
}
.site-chatbot-body {
  padding: 1rem 1rem 0.5rem;
  overflow-y: auto;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.site-chatbot-msg {
  max-width: 88%;
  border-radius: 18px;
  padding: 0.85rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.site-chatbot-msg p + p { margin-top: 0.45rem; }
.site-chatbot-msg a {
  color: var(--gold);
  text-decoration: underline;
}
.site-chatbot-msg--bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-light);
}
.site-chatbot-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(201,168,76,0.95), rgba(138,24,28,0.92));
  color: white;
}
.site-chatbot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.9rem;
}
.site-chatbot-prompt {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.26);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  font-size: 0.74rem;
  transition: all 0.25s ease;
}
.site-chatbot-prompt:hover {
  border-color: rgba(201,168,76,0.72);
  background: rgba(201,168,76,0.12);
}
.site-chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  padding: 0 1rem 1rem;
}
.site-chatbot-form input {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}
.site-chatbot-form input::placeholder { color: rgba(255,255,255,0.4); }
.site-chatbot-form button {
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--dark);
}
.site-chatbot-launcher {
  min-width: 124px;
  border-radius: 999px;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 16px 42px rgba(0,0,0,0.32);
  background: linear-gradient(135deg, rgba(201,168,76,0.96), rgba(138,24,28,0.98));
  color: white;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.site-chatbot-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.36);
}
.site-chatbot-launcher-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11,11,12,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
}
.site-chatbot-launcher-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ========== MODALS ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.08);
  color: var(--gray-light);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.modal-close:hover { background: var(--red); color: white; }
.modal-note { color: var(--gray); font-size: 0.8rem; text-align: center; margin-top: 0.75rem; }
.modal-video { max-width: 800px; background: black; padding: 0.5rem; }
.modal-video iframe, .modal-video video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: none;
}
#modalEbookDetails { margin-bottom: 1.5rem; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: 8px; }
#modalEbookDetails h3 { color: var(--cream); font-family: var(--font-display); margin-bottom: 0.3rem; }
#modalEbookDetails .modal-price { color: var(--gold); font-size: 1.5rem; font-weight: 700; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  padding: 0.875rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  backdrop-filter: blur(10px);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: #4ecdc4; }
.toast.error { border-color: var(--red-light); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== KEYFRAMES ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.45); }
.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }

/* Gallery lightbox modal */
.modal-gallery {
  max-width: 900px;
  padding: 0.75rem;
  background: #000;
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.modal-gallery img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.gallery-prev:hover,
.gallery-next:hover { background: var(--gold); color: var(--dark); }
.gallery-prev { left: -54px; }
.gallery-next { right: -54px; }
@media (max-width: 900px) {
  .gallery-prev { left: 4px; }
  .gallery-next { right: 4px; }
}

/* ========== BIO VIDEO ========== */
.about-video-wrap {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.2);
}
.about-video-wrap video {
  width: 100%;
  display: block;
  max-height: 280px;
  background: #000;
}

/* ========== NAV LIVE LINK ========== */
.nav-links a.nav-live {
  color: #ff4444;
  font-weight: 700;
  animation: pulse-live 2s ease-in-out infinite;
}
.nav-links a.nav-live:hover { color: #ff6666; }
@keyframes pulse-live {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

/* ========== CATERING CTA H2 ========== */
.catering-cta h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .section-hero { flex-direction: column; text-align: center; padding: 7rem 2rem 3rem; }
  .hero-image-wrap { width: 320px; height: 380px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .section-about { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .about-image-col { display: none; }
  .classes-container { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-chatbot {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    align-items: stretch;
  }

  .site-chatbot-panel {
    width: 100%;
  }

  .site-chatbot-launcher {
    align-self: flex-end;
  }
}
@media (max-width: 768px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-dark, .section-ebooks, .section-classes, .section-videos, .section-about { padding: 4rem 1.5rem; }
  .section-hero { padding: 6rem 1.5rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-image-wrap { width: 260px; height: 300px; }
}
@media (max-width: 480px) {
  body { font-size: 14px; }
  #navbar { padding: 0.8rem 1rem; }
  .nav-logo { gap: 0.5rem; }
  .logo-af-img { height: 40px; }
  .logo-text { font-size: 0.9rem; }
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  
  .section-hero { padding: 4rem 1rem 2rem; flex-direction: column; text-align: center; }
  .hero-title { font-size: 1.8rem; }
  .hero-title .line1 { font-size: 1.8rem; }
  .hero-title .line2 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-buttons { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-image-wrap { width: 200px; height: 240px; margin: 1.5rem auto 0; }
  
  .section-dark, .section-ebooks, .section-classes, .section-videos, .section-about, .section-catering, .section-gallery, .section-contact { 
    padding: 2.5rem 1rem; 
  }
  
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.9rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card { padding: 1.5rem; }
  .service-icon { font-size: 2rem; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.85rem; }
  
  .catering-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .form-row input, .form-row select { padding: 0.75rem; font-size: 1rem; }
  
  .contact-info { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom p { font-size: 0.75rem; }
  
  .gallery-item { height: 250px; }
  .gallery-prev, .gallery-next { width: 30px; height: 30px; font-size: 1.2rem; }
  
  .classes-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .class-card { padding: 1.5rem; }
  
  .site-chatbot { right: 0.5rem; left: 0.5rem; bottom: 1rem; }
  .site-chatbot-panel { width: 100%; max-height: 70vh; }
  .site-chatbot-launcher { width: 50px; height: 50px; }
  
  .btn-primary, .btn-secondary { min-height: 44px; }
}

