/* ============================================================
   Gaia's Green Girls — Main Stylesheet
   Color palette: deep forest green, sage, cream, gold accent
   Fonts: Cinzel Decorative (display) + Lato (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --green-dark:    #1a3d1f;
  --green-mid:     #2d6a35;
  --green-bright:  #3d8b47;
  --green-sage:    #6aaa74;
  --green-light:   #b5d9ba;
  --green-pale:    #e8f5ea;
  --gold:          #c9a84c;
  --gold-light:    #e8cc7a;
  --cream:         #faf8f2;
  --text-dark:     #1c2e1e;
  --text-mid:      #3a4f3d;
  --text-light:    #f0f7f0;
  --nav-height:    70px;
  --border-radius: 8px;
  --shadow:        0 4px 20px rgba(26,61,31,0.15);
  --shadow-hover:  0 8px 32px rgba(26,61,31,0.25);
  --transition:    all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cinzel Decorative', serif;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--green-mid);
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 2rem;
  border-radius: 2px;
}

/* ── Layout Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(26,61,31,0.97);
  backdrop-filter: blur(8px);
}

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

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-main {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.nav-logo-text .brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  color: var(--green-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 0.5rem 0.9rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

/* Social icons in nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--green-light);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

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

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--green-dark);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}

.mobile-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--green-light);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.mobile-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ── PAGE OFFSET (for fixed nav) ── */
.page-content { padding-top: var(--nav-height); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,139,71,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(106,170,116,0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--green-dark) 0%, #0d2611 60%, #1a3520 100%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.12;
}

.hero-leaves::before,
.hero-leaves::after {
  content: '🍃';
  position: absolute;
  font-size: 8rem;
  animation: floatLeaf 12s ease-in-out infinite;
}

.hero-leaves::before { top: 15%; left: 5%; animation-delay: 0s; }
.hero-leaves::after  { bottom: 20%; right: 8%; animation-delay: -6s; font-size: 6rem; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-20px) rotate(8deg); }
  66%  { transform: translateY(10px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
 // box-shadow: 0 0 40px rgba(201,168,76,0.3);
  object-fit: contain;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--green-light);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-light);
  border-color: var(--green-sage);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── ABOUT ── */
.about-section {
  background: var(--cream);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-img-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

.about-text h2 {
  margin-bottom: 0.5rem;
}

.about-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-card {
  background: var(--green-pale);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
}

.about-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── VIDEOS ── */
.videos-section {
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: var(--green-dark);
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-info {
  padding: 1rem 1.25rem 1.25rem;
}

.video-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.video-info p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  background: var(--green-pale);
  border-radius: 12px;
  border: 2px dashed var(--green-sage);
  color: var(--green-mid);
  text-align: center;
  grid-column: 1 / -1;
}

.video-placeholder .icon {
  font-size: 3rem;
  opacity: 0.5;
}

/* ── PHOTOS ── */
.photos-section {
  background: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  background: var(--green-light);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,61,31,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--cream);
  letter-spacing: 0.08em;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem;
  background: var(--green-pale);
  border-radius: 12px;
  border: 2px dashed var(--green-sage);
  color: var(--green-mid);
  text-align: center;
  grid-column: 1 / -1;
  aspect-ratio: auto;
}

.photo-placeholder .icon { font-size: 3rem; opacity: 0.5; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ── CONTACT ── */
.contact-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2413 100%);
  color: var(--text-light);
}

.contact-section .section-title { color: var(--cream); }
.contact-section .section-subtitle { color: var(--green-light); }
.contact-section .section-divider { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

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

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--green-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-light);
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-link:hover { color: var(--gold-light); }

.contact-link .icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-link:hover .icon {
  background: var(--gold);
  color: var(--green-dark);
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(61,139,71,0.2);
  border: 1px solid var(--green-sage);
  border-radius: var(--border-radius);
  color: var(--green-light);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
footer {
  background: #0a1f0d;
  color: var(--green-light);
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 2px solid var(--gold);
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--green-sage);
  margin-bottom: 1.25rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--green-light);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ── PAGE HERO BANNER (interior pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2413 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 { color: var(--cream); }
.page-hero p {
  color: var(--green-light);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links,
  .nav-social { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logo-img { width: 160px; height: 160px; }
}
