/*
 * THEME: Vital Hemp Gummies
 * Source: https://tryvitalhemp.com/offer/vital_gummies/au-v1-short/index.html
 * DNA: research/au-vitalhempgummies-dna.md
 * Type: Light theme — white body, hemp green (#2D6B45) accents, dark green nav/footer
 * Fonts: Nunito (headings) + Open Sans (body)
 * Colors: primary #2D6B45, CTA #2D6B45 / white text
 */

@import url('theme.css');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  --primary:       #2D6B45;
  --primary-dark:  #1F4E31;
  --primary-light: #E8F4ED;
  --secondary:     #E8F4ED;

  --bg:            #ffffff;
  --bg-alt:        #F2FAF5;
  --dark:          #0E2D1A;
  --alert-bg:      #1A4D2E;
  --trust-bg:      #F2FAF5;

  --text:          #1a1a1a;
  --text-muted:    #4a6a55;

  --cta-bg:        #2D6B45;
  --cta-text:      #f5fff7;

  --border:        #C5E0CF;
  --star:          #f59e0b;

  --font-heading:  'Nunito', sans-serif;
  --font-body:     'Open Sans', Arial, sans-serif;

  --radius-card:   14px;
  --radius-btn:    50px;
}

/* ============================================
   ALERT BAR
   ============================================ */

#announcement-bar {
  background: #1A4D2E;
  color: #ffffff;
}

#announcement-bar .alert-badge i {
  color: #6FCF97;
  opacity: 0.95;
}

.inline-img-mobile {
  display: none;
}

@media (max-width: 768px) {
  .inline-img-mobile {
    display: block;
    width: 80%;
    margin: 16px auto;
  }
  .inline-img-mobile img {
    width: 100%;
    height: auto;
    border-radius: 14px;
  }
  .hero-img-col {
    display: none !important;
  }
}

/* ============================================
   NAVBAR
   ============================================ */

#header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.nav-logo-text {
  color: #0E2D1A;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-logo-img,
.footer-logo-img {
  width: 110px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-img,
  .footer-logo-img {
    width: 88px !important;
  }
}

.nav-links a {
  color: #1F4E31;
}

.nav-links a:hover {
  color: #2D6B45;
}

/* ============================================
   MOBILE NAVBAR CTA — mandatory per CLAUDE-core.md
   ============================================ */

@media (max-width: 600px) {
  .nav-cta {
    display: flex !important;
  }

  .nav-cta .btn-primary {
    padding: 9px 16px !important;
    font-size: 0.78rem !important;
    width: auto !important;
    max-width: none !important;
    white-space: nowrap;
    border-radius: 50px !important;
    background: #2D6B45 !important;
    color: #ffffff !important;
    font-weight: 700;
  }
}

/* ============================================
   IMAGE BORDER-RADIUS — mandatory per CLAUDE-core.md
   ============================================ */

.hero-product-img {
  border-radius: 20px;
  width: 70% !important;
  max-width: 70% !important;
  margin: 0 auto;
  display: block;
}

.benefits-img img,
#science .benefits-img img {
  border-radius: 16px;
}

.feature-card {
  border-radius: var(--radius-card);
}

@media (max-width: 900px) {
  .hero-product-img { border-radius: 16px; }
  .benefits-img img, #science .benefits-img img { border-radius: 14px; }
}

@media (max-width: 600px) {
  .hero-product-img { border-radius: 14px; }
  .benefits-img img, #science .benefits-img img { border-radius: 12px; }
}

/* ============================================
   HERO — dark green gradient
   ============================================ */

#hero {
  background: linear-gradient(135deg, #0E2D1A 0%, #1A4D2E 50%, #2D6B45 100%);
  min-height: 88vh;
}

#hero::after {
  background: none;
  pointer-events: none;
}

.hero-badge {
  background: rgba(45, 107, 69, 0.25);
  border-color: rgba(111, 207, 151, 0.50);
  color: #A8E6C0;
}

.hero-text h1 .highlight {
  color: #6FCF97;
  text-shadow: 0 0 28px rgba(111, 207, 151, 0.35);
}

.hero-tags .tag-item i {
  color: #6FCF97;
}

.hero-guarantee {
  color: rgba(255,255,255,0.95);
}

.hero-sub,
.hero-text p {
  color: rgba(255,255,255,0.88);
}

@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
    text-align: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
  }
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */

#trust {
  background: #F2FAF5;
  border-top: 1px solid #C5E0CF;
  border-bottom: 1px solid #C5E0CF;
}

.trust-badge i {
  color: #2D6B45;
}

.trust-badge h4 {
  color: #0E2D1A;
}

/* ============================================
   SOCIAL PROOF BLOCK
   ============================================ */

#social-proof {
  background: #1A4D2E;
}

#social-proof .stat-value {
  color: #6FCF97;
}

#social-proof .stat-label {
  color: rgba(255,255,255,0.85);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

#benefits {
  background: #ffffff;
}

.section-label {
  background: #E8F4ED;
  color: #2D6B45;
  border: 1px solid #2D6B45;
}

.section-h2,
.benefits-headline {
  color: #0E2D1A;
}

.benefit-card,
.benefit-item {
  border-left: 4px solid #2D6B45 !important;
  box-shadow: 0 8px 24px rgba(45, 107, 69, 0.09);
}

.urgency-bar {
  background: #2D6B45;
  color: #ffffff;
}

/* ============================================
   FEATURES (INGREDIENTS) SECTION
   ============================================ */

#features {
  background: #0E2D1A;
}

#features .section-label {
  background: rgba(45, 107, 69, 0.25);
  color: #6FCF97;
  border-color: rgba(111, 207, 151, 0.50);
}

#features .section-h2,
#features h2 {
  color: #ffffff;
}

#features .section-body,
#features p:not(.feature-card p) {
  color: rgba(255,255,255,0.80);
}

.feature-card {
  border-left: 5px solid #2D6B45 !important;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(45, 107, 69, 0.12);
  border-radius: 14px;
}

.feature-card h3,
.feature-card .feature-title {
  color: #0E2D1A;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.feature-card p,
.feature-card .feature-desc {
  color: #4a6a55;
}

.feature-icon-wrap i,
.feature-card i {
  color: #2D6B45;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */

#science {
  background: #1A4D2E;
  color: #ffffff;
}

#science .section-label {
  background: rgba(45, 107, 69, 0.25);
  color: #A8E6C0;
  border-color: rgba(111, 207, 151, 0.50);
}

#science .section-h2,
#science h2 {
  color: #ffffff;
}

#science .section-body,
#science p {
  color: rgba(255,255,255,0.95);
  background: transparent !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.science-step-title {
  color: #ffffff;
  font-weight: 700;
}

.science-result {
  color: #ffffff;
  font-weight: 700;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

#reviews {
  background: #F2FAF5;
}

.review-card {
  background: #ffffff;
  border: 0.5px solid #C5E0CF;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(45, 107, 69, 0.07);
}

.review-stars i {
  color: #f59e0b;
}

.review-name {
  color: #2D6B45;
  font-weight: 600;
}

/* Reviews stats bar */
.reviews-stats,
.review-stats {
  background: #1A4D2E;
  border-radius: 12px;
}

.reviews-stats .number,
.review-stats .number {
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.reviews-stats .label,
.review-stats .label {
  color: rgba(255,255,255,0.82);
}

/* ============================================
   FAQ SECTION
   ============================================ */

#faq {
  background: #ffffff;
}

.faq-item {
  border: 1px solid #C5E0CF;
  border-radius: 10px;
}

.faq-question,
.accordion-button {
  color: #0E2D1A;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #2D6B45;
  background: #F2FAF5;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

#final-cta {
  background: linear-gradient(135deg, #0E2D1A 0%, #2D6B45 100%);
  color: #ffffff;
}

#final-cta h2,
#final-cta .section-h2 {
  color: #ffffff;
}

#final-cta .section-body,
#final-cta p {
  color: rgba(255,255,255,0.85);
}

#final-cta .btn-primary:hover,
#hero .btn-primary:hover {
  background: #1F4E31;
  box-shadow: 0 12px 32px rgba(45, 107, 69, 0.45);
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
  background: #0E2D1A;
  color: rgba(255,255,255,0.92);
}

#footer h4,
.footer-logo-text {
  color: #ffffff;
}

#footer a {
  color: rgba(255,255,255,0.90);
}

#footer a:hover {
  color: #6FCF97;
}

.footer-divider,
#footer hr {
  border-color: rgba(45, 107, 69, 0.30);
}

.copyright-text {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   GUARANTEE BADGE
   ============================================ */

.guarantee-badge {
  border: 2px solid #2D6B45;
  border-radius: 50%;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-header {
  background: #2D6B45;
  color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
  .reviews-stats,
  .review-stats {
    flex-direction: column;
    gap: 12px;
  }
}
