/* palette: teal-gold */
:root {
  --primary-color: #004D40;
  --secondary-color: #006B5C;
  --accent-color: #C9A227;
  --background-color: #F0FAFE;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px; 
  --radius-md: 12px; 
  --radius-lg: 20px; 
  --radius-xl: 32px;
  --main-font: 'Merriweather', Georgia, serif;
  --alt-font: 'Source Sans 3', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  color: var(--primary-color);
}

/* Typography scale mobile first */
h1 {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.15;
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  line-height: 1.3;
}
p {
  font-size: clamp(14px, 1.6vw, 17px);
}

/* SOFT-ORGANIC PRESET - LITERALLY COPIEDSnip */
section{padding:56px 16px;margin:0} 
@media(min-width:1024px){section{padding:72px 24px}} 
body{line-height:1.85} 
.card{border-radius:24px;box-shadow:0 4px 6px rgba(0,0,0,0.05),0 10px 40px rgba(0,0,0,0.08)} 
.btn{border-radius:9999px;padding:14px 32px} 
.icon-circle{width:52px;height:52px;border-radius:50%;background:var(--accent-color);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem}

/* Custom transitions and styling for Soft-Organic */
section {
  position: relative;
  border-radius: 24px;
}
.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

/* Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #b08d1e;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header & Mobile Nav (CSS Only Burger) */
header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 16px;
  border-bottom: 3px solid var(--primary-color);
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-nav a {
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.2s;
  display: block;
}
.site-nav a:hover {
  color: var(--secondary-color);
}

/* Burger Button */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 999px;
}

/* Checked state for CSS-only burger */
#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(9px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
    border-bottom: none;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* HERO: layered-depth implementation */
.hero-section {
  min-height: 78vh;
  position: relative;
}
.hero-layer-1 {
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px) brightness(0.5);
  z-index: 1;
}
.hero-layer-2 {
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  background: var(--primary-color);
  opacity: 0.55;
  z-index: 2;
}
.hero-layer-3 {
  z-index: 3;
}
.hero-kicker {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Section transitions and style variations */
.section-expert {
  background-color: var(--background-color);
  clip-path: ellipse(120% 100% at 50% 0%);
}
.quote-icon i {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent-color);
  opacity: 0.3;
}

/* Numbered Facts */
.section-facts {
  background-color: #ffffff;
}
.fact-number {
  font-family: var(--main-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.6;
  line-height: 1;
}

/* Myth vs Fact Styles */
.section-myths {
  background-color: var(--background-color);
}
.myth-box {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
}
.fact-box {
  background: rgba(34, 197, 94, 0.08);
  border-left: 4px solid #22c55e;
}

/* Spotlight Section */
.section-spotlight {
  background-color: #ffffff;
}
.spotlight-visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Checklist Section */
.section-checklist {
  background-color: var(--background-color);
}
.checklist-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 2px;
}

/* Contact and FAQ Section */
.section-contact-faq {
  background-color: #ffffff;
}
.contact-form {
  box-shadow: var(--shadow-lg);
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

/* Footer styling */
footer {
  background-color: var(--dark-color);
  color: #F5F5F5;
  border-radius: 24px 24px 0 0;
}
footer a {
  color: #e0e0e0;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--accent-color);
}
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  max-height: 40px;
}

/* Animations */
@keyframes reveal-up { 
  from {
    opacity: 0;
    transform: translateY(32px);
  } 
  to {
    opacity: 1;
    transform: translateY(0);
  } 
}
.reveal {
  animation: reveal-up linear both;
  animation-timeline: view(); 
  animation-range: entry 0% entry 30%;
}

/* Grid & Layout Adjustments Mobile-First */
.grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-cols-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .grid-cols-1.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-1.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}