/* Green Thumb Academy — Lush Botanical Garden Theme */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fffde7;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: #1b4332;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: #52b788; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffb7c5; }

/* ===== NAV ===== */
nav {
  background: #fffde7;
  border-bottom: 2px solid #52b788;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: bold;
  color: #1b4332;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: #52b788; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #52b788;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: #ffb7c5;
  border-bottom-color: #ffb7c5;
}

/* ===== HERO ===== */
.hero {
  background: #1b4332;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6rem 2rem 8rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.78);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: #fffde7;
  margin-bottom: 1.5rem;
}

.hero-text h1 .accent {
  color: #ffb7c5;
  position: relative;
  display: inline-block;
}

.hero-text h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffb7c5;
  border-radius: 2px;
}

.hero-text p {
  color: rgba(255, 253, 231, 0.9);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: #52b788;
  color: #fffde7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* ===== ENROLLMENT FORM (Hero) ===== */
.enroll-card {
  background: #fffde7;
  border: 2px solid #52b788;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.enroll-card h3 {
  color: #1b4332;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.enroll-card p.sub {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #52b788;
  border-radius: 6px;
  background: #fff;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1b4332;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-block;
  background: #1b4332;
  color: #fffde7;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #143228;
  color: #fffde7;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1b4332;
  border: 2px solid #52b788;
  font-family: Georgia, serif;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #52b788;
  color: #fffde7;
}

.form-success {
  display: none;
  background: #d8f3dc;
  border: 1.5px solid #52b788;
  color: #1b4332;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== WAVY DIVIDER ===== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 5rem 2rem;
}

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

.section-label {
  display: inline-block;
  color: #52b788;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  color: #1b4332;
  margin-bottom: 1rem;
}

.section-sub {
  color: #444;
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== STATS ===== */
.stats-section {
  background: #fffde7;
  padding: 3.5rem 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: #fff;
  border: 1.5px solid #52b788;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(82,183,136,0.08);
}

.stat-number {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  color: #1b4332;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #52b788;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== MODULE CARDS ===== */
.modules-section {
  background: #f0faf4;
  padding: 5rem 2rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.module-card {
  background: #fffde7;
  border-left: 4px solid #52b788;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 16px rgba(27,67,50,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.13);
}

.module-number {
  display: inline-block;
  background: #52b788;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.module-card h3 {
  color: #1b4332;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.module-card p {
  color: #444;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== PHOTO GALLERY ===== */
.gallery-section {
  background: #fffde7;
  padding: 5rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(82, 183, 136, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(82, 183, 136, 0.4);
}

/* ===== PRICING ===== */
.pricing-section {
  background: #f0faf4;
  padding: 5rem 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fffde7;
  border: 2px solid #52b788;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(27,67,50,0.12);
}

.pricing-card.featured {
  border-color: #1b4332;
  border-width: 3px;
  background: #fff;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb7c5;
  color: #1b4332;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #52b788;
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  color: #1b4332;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.pricing-price {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: bold;
  color: #1b4332;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.pricing-free {
  color: #52b788;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(82,183,136,0.15);
}

.pricing-features li::before {
  content: '✓';
  color: #52b788;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #52b788;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  color: #fffde7;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,253,231,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: #1b4332;
  color: #fffde7;
  font-size: 1.1rem;
  padding: 1rem 3rem;
  display: inline-block;
  width: auto;
}

/* ===== FOOTER ===== */
footer {
  background: #1b4332;
  color: rgba(255,253,231,0.85);
  padding: 3.5rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(82,183,136,0.3);
}

.footer-brand .logo {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fffde7;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: rgba(255,253,231,0.75);
}

.footer-col h4 {
  font-family: Georgia, serif;
  color: #52b788;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,253,231,0.75);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffb7c5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,253,231,0.55);
}

.footer-disclaimer {
  max-width: 700px;
  font-size: 0.75rem;
  color: rgba(255,253,231,0.5);
  line-height: 1.6;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffde7;
  border-top: 2px solid #52b788;
  padding: 1rem 2rem;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

#cookie-banner p {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

#cookie-banner p a {
  color: #1b4332;
  text-decoration: underline;
}

.cookie-btn {
  background: #1b4332;
  color: #fffde7;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-btn:hover { background: #143228; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: #1b4332;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-hero h1 {
  color: #fffde7;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: rgba(255,253,231,0.85);
  font-size: 1.05rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.company-card {
  background: #fffde7;
  border: 2px solid #52b788;
  border-radius: 12px;
  padding: 2rem;
}

.company-card h3 {
  color: #1b4332;
  margin-bottom: 1rem;
}

.company-card p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.company-card strong {
  color: #1b4332;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}

.wa-link:hover { background: #1ebe5d; color: #fff; }

.contact-form-card {
  background: #fff;
  border: 1.5px solid #52b788;
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form-card h3 {
  color: #1b4332;
  margin-bottom: 1.5rem;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: #1b4332;
  padding: 3.5rem 2rem;
  text-align: center;
}

.legal-hero h1 { color: #fffde7; }

.legal-hero p {
  color: rgba(255,253,231,0.8);
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-body h2 {
  color: #1b4332;
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #d8f3dc;
}

.legal-body h2:first-child { margin-top: 0; border-top: none; }

.legal-body p, .legal-body li {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li, .legal-body ol li { margin-bottom: 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  body { font-size: 15px; }
}
