/* ===================================
   KYZO - Party at the Zoo
   WOW African Artistic Design
   Inspired by Authentic African Art
   =================================== */

:root {
  --gold: #FFD700;
  --gold-dark: #B8860B;
  --orange: #FF8C00;
  --deep-orange: #FF6B00;
  --jungle-green: #228B22;
  --deep-green: #0d4d0d;
  --midnight: #0a0a1a;
  --night-purple: #1a0a2e;
  --royal-purple: #4a0080;
  --cream: #FFF8DC;
  --safari-brown: #8B4513;
  --flame: #FF4500;
  --fire-red: #FF2D00;
  --ocean-teal: #00CED1;
  --tribal-red: #DC143C;
  --sunset-orange: #FF7E47;
  --sunset-pink: #FF4D6D;
  --kente-gold: #DAA520;
  --kente-red: #8B0000;
  --kente-green: #006400;
  --kente-blue: #00008B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
  background: var(--midnight);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* ========== KENTE CLOTH BACKGROUND ========== */
.kente-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
  display: flex;
  animation: kente-flow 20s linear infinite;
}

@keyframes kente-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

.kente-stripe {
  width: 40px;
  flex-shrink: 0;
}

.kente-stripe:nth-child(1) { background: var(--kente-gold); height: 100%; }
.kente-stripe:nth-child(2) { background: var(--kente-red); height: 100%; }
.kente-stripe:nth-child(3) { background: var(--kente-green); height: 100%; }
.kente-stripe:nth-child(4) { background: var(--kente-blue); height: 100%; }
.kente-stripe:nth-child(5) { background: var(--kente-gold); height: 100%; }
.kente-stripe:nth-child(6) { background: var(--kente-red); height: 100%; }

/* ========== ADINKRA FLOATING SYMBOLS ========== */
.adinkra-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.adinkra {
  position: absolute;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.15;
  animation: adinkra-float 15s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes adinkra-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
  25% { transform: translateY(-30px) rotate(10deg); opacity: 0.25; }
  50% { transform: translateY(-15px) rotate(-5deg); opacity: 0.15; }
  75% { transform: translateY(-40px) rotate(15deg); opacity: 0.2; }
}

/* ========== FIREFLIES ========== */
.fireflies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.firefly {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold), 0 0 50px rgba(255, 215, 0, 0.7);
  animation: firefly-glow 6s ease-in-out infinite;
}

@keyframes firefly-glow {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  20% { opacity: 1; transform: scale(1.3); }
  40% { opacity: 0.4; transform: scale(0.9); }
  60% { opacity: 0.9; transform: scale(1.2); }
  80% { opacity: 0.3; transform: scale(0.85); }
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  background: linear-gradient(180deg, rgba(10,10,26,0.98) 0%, rgba(10,10,26,0.85) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--kente-gold), var(--kente-red), var(--kente-green), var(--kente-gold)) 1;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  animation: lion-breathe 3s ease-in-out infinite;
}

@keyframes lion-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

@keyframes gold-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.tagline {
  font-size: 0.65rem;
  color: var(--ocean-teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: none;
}

@media (min-width: 768px) {
  .tagline { display: block; }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 25px;
}

.nav-link:hover::before,
.nav-link:focus::before {
  opacity: 1;
}

.nav-link span, .nav-link {
  position: relative;
  z-index: 1;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--midnight);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--midnight) 0%, #1a0533 30%, #2d1b4e 50%, #1a0a2e 70%, var(--midnight) 100%);
}

/* African Sunset */
.sunset-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sun {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--sunset-orange) 0%, var(--sunset-pink) 40%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: sun-pulse 4s ease-in-out infinite;
  box-shadow: 0 0 100px var(--sunset-orange), 0 0 200px var(--sunset-pink);
}

@keyframes sun-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.sun-rays {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: conic-gradient(from 0deg, transparent, rgba(255,126,71,0.3), transparent, rgba(255,77,109,0.3), transparent, rgba(255,126,71,0.3), transparent);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: rays-spin 30s linear infinite;
}

@keyframes rays-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Animal Silhouettes */
.animal-silhouettes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lion-silhouette {
  position: absolute;
  font-size: 8rem;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  animation: lion-roar-hero 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.5));
}

@keyframes lion-roar-hero {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
  25% { transform: translateX(-50%) scale(1.1) rotate(-5deg); }
  75% { transform: translateX(-50%) scale(1.1) rotate(5deg); }
}

.bird-silhouette {
  position: absolute;
  font-size: 2rem;
  animation: birds-fly 8s ease-in-out infinite;
  opacity: 0.3;
  filter: grayscale(100%);
}

@keyframes birds-fly {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(20px); }
  50% { transform: translateY(-15px) translateX(40px); }
  75% { transform: translateY(-40px) translateX(20px); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-emblem {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 50%;
  animation: ring-pulse 2s ease-out infinite;
}

.emblem-ring:nth-child(1) { animation-delay: 0s; }
.emblem-ring:nth-child(2) { animation-delay: 0.5s; transform: scale(1.15); }
.emblem-ring:nth-child(3) { animation-delay: 1s; transform: scale(1.3); }

@keyframes ring-pulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

.emblem-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.8));
}

.hero-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sunset-orange) 25%, var(--gold) 50%, var(--orange) 75%, var(--gold) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: kente-title 5s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(255,215,0,0.4));
  letter-spacing: 0.05em;
}

@keyframes kente-title {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  color: var(--ocean-teal);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(0,206,209,0.5);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  line-height: 2;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-gold {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.highlight-fire {
  color: var(--flame);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,69,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 16px 36px;
  min-height: 52px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 2px;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--midnight);
  box-shadow: 0 4px 25px rgba(255,215,0,0.5), 0 0 60px rgba(255,215,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 40px rgba(255,215,0,0.7), 0 0 80px rgba(255,215,0,0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--tribal-red) 0%, var(--flame) 100%);
  color: #fff;
  box-shadow: 0 4px 25px rgba(220,20,60,0.5), 0 0 60px rgba(220,20,60,0.2);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 40px rgba(220,20,60,0.7), 0 0 80px rgba(220,20,60,0.3);
}

/* African Proverb */
.african-proverb {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.african-proverb p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.proverb-source {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-7px); }
}

/* ========== SECTIONS ========== */
section {
  position: relative;
  padding: 100px 20px;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.section-icon {
  font-size: 2rem;
  animation: icon-dance 2s ease-in-out infinite;
}

.section-icon:nth-child(1) { animation-delay: 0s; }
.section-icon:nth-child(3) { animation-delay: 0.3s; }

@keyframes icon-dance {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-5deg); }
  75% { transform: scale(1.2) rotate(5deg); }
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.3));
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--ocean-teal);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* ========== TRIBAL BORDERS ========== */
.tribal-border {
  position: relative;
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
}

.tribal-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
}

.tribal-corner.top-left {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
  border-radius: 15px 0 0 0;
}

.tribal-corner.top-right {
  top: -2px;
  right: -2px;
  border-width: 3px 3px 0 0;
  border-radius: 0 15px 0 0;
}

.tribal-corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 15px;
}

.tribal-corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 15px 0;
}

/* ========== DAY SECTION ========== */
.day-section {
  background: linear-gradient(180deg, var(--midnight) 0%, #0d1f0d 40%, #1a2f1a 60%, var(--midnight) 100%);
}

.day-section .section-title {
  background: linear-gradient(135deg, var(--jungle-green) 0%, var(--gold) 50%, var(--jungle-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Mask Cards */
.mask-card {
  background: linear-gradient(145deg, rgba(13,77,13,0.6) 0%, rgba(0,0,0,0.4) 100%);
  border: 2px solid rgba(255,215,0,0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mask-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--jungle-green), var(--gold));
}

.mask-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,0,0.15);
}

.mask-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.mask-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(255,215,0,0.2);
  border-radius: 50%;
  animation: mask-pulse 2s ease-in-out infinite;
}

@keyframes mask-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.feature-icon {
  font-size: 3.5rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
}

.mask-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.mask-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  animation: shimmer-sweep 3s infinite;
}

@keyframes shimmer-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Menu Preview */
.menu-preview {
  margin-top: 2rem;
}

.menu-preview h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.menu-list li {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-list li:hover {
  background: rgba(255,215,0,0.08);
  border-color: var(--gold);
  transform: translateX(10px);
}

.menu-list li strong {
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 180px;
}

.dish-desc {
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.adinkra-decor {
  font-size: 1.5rem;
  opacity: 0.3;
  transition: all 0.3s;
}

.menu-list li:hover .adinkra-decor {
  opacity: 1;
  transform: scale(1.2);
}

/* ========== NIGHT SECTION ========== */
.night-section {
  background: linear-gradient(180deg, var(--night-purple) 0%, var(--midnight) 30%, #1a0533 60%, var(--night-purple) 100%);
  position: relative;
}

.night-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255,215,0,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(220,20,60,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.night-section .section-title {
  background: linear-gradient(135deg, var(--gold) 0%, var(--tribal-red) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.night-section .section-icon {
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
}

.club-card {
  background: linear-gradient(145deg, rgba(26,10,46,0.8) 0%, rgba(0,0,0,0.4) 100%);
  border: 2px solid rgba(220,20,60,0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.club-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tribal-red), var(--flame), var(--tribal-red));
}

.club-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--tribal-red);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 50px rgba(220,20,60,0.2);
}

.club-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.sound-wave {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  height: 20px;
  align-items: flex-end;
}

.sound-wave span {
  width: 4px;
  background: var(--flame);
  border-radius: 2px;
  animation: wave 0.5s ease-in-out infinite alternate;
}

.sound-wave span:nth-child(1) { animation-delay: 0s; height: 8px; }
.sound-wave span:nth-child(2) { animation-delay: 0.1s; height: 15px; }
.sound-wave span:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.sound-wave span:nth-child(4) { animation-delay: 0.3s; height: 12px; }
.sound-wave span:nth-child(5) { animation-delay: 0.4s; height: 6px; }

@keyframes wave {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1); }
}

.club-card h3 {
  color: var(--flame);
  font-size: 1.3rem;
}

.club-card p {
  color: rgba(255,255,255,0.8);
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--flame);
  border-radius: 20px;
  opacity: 0;
  animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* Event Preview */
.event-preview h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.event-item:hover {
  background: rgba(220,20,60,0.08);
  border-color: var(--tribal-red);
  transform: scale(1.02);
}

.event-day {
  min-width: 70px;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--midnight);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 12px;
  text-align: center;
}

.event-details h4 {
  color: var(--flame);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.event-details p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.event-adinkra {
  font-size: 1.8rem;
  opacity: 0.2;
  margin-left: auto;
  transition: all 0.3s;
}

.event-item:hover .event-adinkra {
  opacity: 0.6;
  transform: rotate(15deg);
}

/* ========== HIVE SECTION ========== */
.hive-section {
  background: linear-gradient(180deg, #0d1f0d 0%, #1a2f1a 30%, #0d1f0d 60%, #1a0a2e 100%);
  position: relative;
}

.hive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(255,215,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(34,139,34,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hive-section .section-title {
  background: linear-gradient(135deg, var(--gold) 0%, var(--jungle-green) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.art-card {
  background: linear-gradient(145deg, rgba(26,46,26,0.8) 0%, rgba(0,0,0,0.4) 100%);
  border: 2px solid rgba(34,139,34,0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.art-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jungle-green), var(--gold), var(--jungle-green));
}

.art-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--jungle-green);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(34,139,34,0.2);
}

.art-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.art-burst {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
  animation: art-glow 2s ease-in-out infinite;
}

@keyframes art-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.mic-waves {
  position: absolute;
  inset: -15px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: mic-pulse 1s ease-out infinite;
}

@keyframes mic-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.screen-glow {
  position: absolute;
  inset: -10px;
  background: linear-gradient(45deg, var(--ocean-teal), var(--jungle-green));
  border-radius: 10px;
  opacity: 0.3;
  animation: screen-flicker 0.5s infinite;
}

@keyframes screen-flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.heart-pulse {
  position: absolute;
  inset: -10px;
  color: var(--tribal-red);
  font-size: 1.5rem;
  animation: heart-beat 1s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.art-card h3 {
  color: var(--gold);
}

.art-card p {
  color: rgba(255,255,255,0.8);
}

/* Art List */
.art-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.art-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34,139,34,0.2);
  border-radius: 12px;
  transition: all 0.3s;
}

.art-list li:hover {
  background: rgba(34,139,34,0.1);
  border-color: var(--jungle-green);
  transform: translateX(8px);
}

.art-icon {
  font-size: 2rem;
}

.art-list strong {
  color: var(--gold);
  flex: 1;
}

.art-origin {
  color: var(--jungle-green);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Rent CTA */
.rent-cta {
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(34,139,34,0.08) 100%);
  border: 2px solid var(--gold);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.rent-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,215,0,0.1) 0%, transparent 70%);
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bee-bounce 1s ease-in-out infinite;
  display: inline-block;
}

@keyframes bee-bounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.rent-cta h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.rent-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: linear-gradient(180deg, var(--midnight) 0%, #1a0533 50%, var(--midnight) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  line-height: 2;
  font-size: 1.05rem;
}

.wisdom-box {
  background: rgba(255,215,0,0.05);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 15px 15px 0;
}

.wisdom-box p {
  font-style: italic;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wisdom-box span {
  color: var(--gold);
  font-size: 0.9rem;
}

.tribe-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.tribe-stat:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.tribe-stat h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tribe-stat p {
  color: var(--ocean-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Section Boxes */
.origin-box {
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(220,20,60,0.05) 100%);
  border-color: rgba(255,215,0,0.3);
  margin-top: 3rem;
  text-align: center;
}

.origin-box h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.origin-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.partners-box {
  background: linear-gradient(135deg, rgba(0,206,209,0.08) 0%, rgba(255,215,0,0.05) 100%);
  border-color: rgba(0,206,209,0.3);
  margin-top: 2rem;
}

.partners-box h3 {
  color: var(--ocean-teal);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.partners-box > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.partner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0,206,209,0.08);
  border: 1px solid rgba(0,206,209,0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.partner-list li:hover {
  background: rgba(0,206,209,0.15);
  border-color: var(--ocean-teal);
  transform: translateX(10px);
}

.partner-icon {
  font-size: 2rem;
}

.partner-list li strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.partner-list li p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.95rem;
}

.partner-cta {
  margin-top: 1.5rem;
  color: var(--ocean-teal);
  font-weight: 600;
  font-style: italic;
}

.wishlist-box {
  background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(34,139,34,0.08) 100%);
  border-color: rgba(255,215,0,0.25);
  margin-top: 2rem;
}

.wishlist-box > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.wishlist-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.wishlist-item:hover {
  background: rgba(255,215,0,0.08);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.wishlist-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.wishlist-item h4 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.wishlist-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.revolution-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.rev-tag {
  background: rgba(34, 139, 34, 0.2);
  border: 1px solid var(--jungle-green);
  color: var(--jungle-green);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.revolution-tags .rev-tag:hover {
  background: rgba(34, 139, 34, 0.35);
  transform: scale(1.05);
}

.section-tagline {
  text-align: center;
  font-size: 1rem;
  color: var(--jungle-green);
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.origin-box h3 {
  color: var(--jungle-green);
}

.night-tagline {
  color: var(--sunset-orange);
}

/* ========== REVOLUTION BOX ========== */
.revolution-box {
  background: linear-gradient(135deg, rgba(34,139,34,0.08) 0%, rgba(255,215,0,0.05) 100%);
  border-color: rgba(34,139,34,0.3);
  margin-top: 2rem;
  text-align: center;
}

.revolution-box h3 {
  color: var(--jungle-green);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.revolution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.revolution-item {
  background: rgba(34,139,34,0.08);
  border: 1px solid rgba(34,139,34,0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.revolution-item:hover {
  background: rgba(34,139,34,0.15);
  border-color: var(--jungle-green);
  transform: translateY(-5px);
}

.rev-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.revolution-item h4 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.revolution-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: linear-gradient(180deg, var(--night-purple) 0%, var(--midnight) 50%, #1a0a2e 100%);
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--ocean-teal);
  margin-bottom: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: rgba(255,255,255,0.8);
}

.contact-card a {
  color: var(--ocean-teal);
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,215,0,0.05);
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, var(--midnight) 0%, #0a0a1a 100%);
  padding: 3rem 0 2rem;
  text-align: center;
  position: relative;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--kente-gold), var(--kente-red), var(--kente-green), var(--kente-blue), var(--kente-gold)) 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-lion {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--midnight);
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.footer-adinkra {
  font-size: 1.5rem;
  letter-spacing: 1rem;
  opacity: 0.4;
  color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,26,0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gold);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: clamp(3.5rem, 18vw, 8rem);
  }
  
  .hero-emblem {
    width: 140px;
    height: 140px;
  }
  
  .emblem-icon {
    font-size: 4rem;
  }
  
  .lion-silhouette {
    font-size: 5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .menu-list li {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .menu-list li strong {
    min-width: auto;
  }
  
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  
  .event-adinkra {
    margin-left: 0;
  }
  
  .art-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  section {
    padding: 60px 15px;
  }
  
  .origin-box,
  .partners-box,
  .wishlist-box {
    padding: 1.5rem;
  }
  
  .origin-box h3,
  .partners-box h3,
  .wishlist-box h3 {
    font-size: 1.4rem;
  }
  
  .partner-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .wishlist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }
  
  .section-icon {
    font-size: 1.5rem;
  }
}

/* ========== ANIMATIONS ========== */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-in.mask-card,
.animate-in.club-card,
.animate-in.art-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
