/* 
   SPOOWA Landing Page Stylesheet
   Theme: Premium White & Organic Honey-Gold
   Typography: Outfit (Headers), Inter (Body)
*/

:root {
  /* Color System */
  --bg-primary: #ffffff;
  --bg-secondary: #fbfbfa; /* Warm alabaster white */
  --bg-tertiary: #f5f4ef;  /* Light cream-grey for card backings */
  
  --color-gold: #d4af37;        /* Metallic gold */
  --color-gold-dark: #b8931d;   /* Deeper gold for readable text */
  --color-gold-light: rgba(212, 175, 55, 0.06);
  --color-gold-glow: rgba(212, 175, 55, 0.15);
  
  --text-dark: #1e2022;         /* Premium deep charcoal */
  --text-muted: #64748b;        /* Slate grey for readability */
  --border-light: rgba(30, 32, 34, 0.06);
  --border-gold: rgba(212, 175, 55, 0.2);

  /* Typography */
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(197, 160, 89, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.06);

  /* Animation */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Sections */
section {
  padding: 120px 5% 100px;
  position: relative;
  overflow: hidden;
}

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

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

.text-gold {
  color: var(--color-gold-dark);
}

/* Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tertiary);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.badge-tag.gold-badge {
  background: var(--color-gold-light);
  color: var(--color-gold-dark);
  border-color: var(--border-gold);
}

.badge-tag i {
  font-size: 0.9rem;
}

/* Header Navigation (Frosted glass effect) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 5%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 5%;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.logo:hover {
  background-color: transparent;
  transform: scale(1.02);
}

.logo-img {
  height: 42px; /* Sleek, cropped logo height */
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: radial-gradient(circle at 85% 15%, var(--color-gold-glow) 0%, transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(245, 244, 239, 0.4) 0%, transparent 60%);
}

.hero-bg-accent {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.second-desc {
  margin-bottom: 36px;
  border-left: 2px solid var(--color-gold);
  padding-left: 16px;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
  background-color: var(--text-dark);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 30px;
  border: 1px solid var(--text-dark);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 32, 34, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  box-shadow: 0 6px 20px rgba(184, 147, 29, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-dark);
}

.hero-features {
  display: flex;
  gap: 24px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.feature-tag i {
  color: var(--color-gold-dark);
}

/* Interactive Brand Card (Replaced can model) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-brand-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
  max-width: 440px;
  width: 100%;
}

.hero-brand-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(197, 160, 89, 0.12);
  border-color: var(--color-gold);
}

.brand-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-gold-light);
  color: var(--color-gold-dark);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  margin-bottom: 24px;
}

.hero-brand-card h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.15;
}

.brand-fun-tagline {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.brand-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  font-size: 1.1rem;
}

.bullet-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.bullet-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.brand-card-footer {
  border-top: 1px dashed var(--border-light);
  padding-top: 20px;
  text-align: center;
}

.brand-card-footer span {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  letter-spacing: 0.02em;
}

/* Animations */
@keyframes honeyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); color: var(--color-gold); }
}

.animate-honey {
  animation: honeyPulse 3s infinite ease-in-out;
}

/* Product Section & Teaser Card */
.products-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.products-teaser-card {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  padding: 60px 40px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
}

.teaser-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, var(--color-gold-light) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.teaser-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.launch-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-gold-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.launch-icon {
  font-size: 2.2rem;
  color: var(--color-gold-dark);
}

.products-teaser-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.products-teaser-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.teaser-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.teaser-feat {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.teaser-feat:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.teaser-feat i {
  font-size: 1.8rem;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.teaser-feat h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.teaser-feat p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.teaser-newsletter {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}

.teaser-newsletter input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.teaser-newsletter input:focus {
  border-color: var(--color-gold-dark);
  background-color: #ffffff;
  box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Board Members Section */
.board-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.board-card {
  display: flex;
  align-items: flex-start; /* CRITICAL FIX: Aligns to top so left image side doesn't stretch when bio expands */
  background: var(--bg-secondary);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.board-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.board-img-wrapper {
  position: relative;
  width: 320px;
  min-width: 320px;
  height: 380px; /* CRITICAL FIX: Explicit fixed height so proportion remains perfectly constant on expand */
  overflow: hidden;
  background-color: var(--bg-tertiary);
  transition: var(--transition-smooth);
}

.board-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-spring);
  display: block;
}

.board-card:hover .board-img {
  transform: scale(1.04);
}

.board-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 60%, rgba(251, 251, 250, 0.15));
  pointer-events: none;
}

.board-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.board-header {
  margin-bottom: 20px;
}

.board-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.board-role {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
}

.board-sub-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.board-bio-summary {
  display: block;
  transition: var(--transition-smooth);
}

.board-bio-summary p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-read-more {
  background: none;
  border: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  padding: 4px 0;
}

.btn-read-more i {
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.btn-read-more:hover {
  color: var(--color-gold-dark);
}

.btn-read-more[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Expandable Full Bio */
.board-bio-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.board-bio-full.show {
  max-height: 1200px;
  opacity: 1;
  margin-top: 15px;
  border-top: 1px dashed var(--border-gold);
  padding-top: 20px;
}

.board-bio-full p {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.board-bio-full p:last-child {
  margin-bottom: 0;
}

.achievements-list {
  list-style: none;
  padding: 0;
}

.achievements-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.achievements-list li::before {
  content: '\f058'; /* FontAwesome Check Circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-gold-dark);
}

.sub-achieve-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 1px dashed var(--border-gold);
  padding-bottom: 4px;
}

/* Footer Section */
footer {
  background: radial-gradient(circle at 50% 100%, var(--color-gold-light) 0%, var(--bg-secondary) 85%);
  border-top: 1px solid var(--border-light);
  padding: 80px 5% 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  display: inline-flex;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.footer-brand .logo:hover {
  background-color: transparent;
  transform: scale(1.02);
}

.footer-brand .logo-img {
  height: 42px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-gold-dark);
  letter-spacing: 0.04em;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--color-gold-dark);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--color-gold-dark);
  color: #ffffff;
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
}

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

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-dark);
}

/* Animations for Scroll Reveal */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
  section {
    padding: 80px 5% 70px;
  }
  
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-desc {
    max-width: 600px;
  }
  
  .second-desc {
    border-left: none;
    border-top: 2px solid var(--color-gold);
    padding-left: 0;
    padding-top: 16px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }

  .hero-brand-card {
    max-width: 100%;
  }
  
  .board-card {
    flex-direction: column;
    align-items: center;
  }
  
  .board-img-wrapper {
    width: 100%;
    height: 380px;
  }
  
  .board-img-wrapper img {
    object-position: center 20%;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links-group {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 24px 5%;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    gap: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .burger {
    display: flex;
  }
  
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .teaser-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .teaser-newsletter {
    flex-direction: column;
  }
  
  .footer-links-group {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
