/* Wildnis Guide – Editorial CSS */
/* Warm editorial palette: cream, deep brown, warm gold accent */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary:       #1a0a00;
  --primary-dark:  #0d0500;
  --accent:        #e8a317;
  --accent-light:  #f5c842;
  --red:           #c0392b;
  --bg:            #faf8f4;
  --bg-alt:        #f2ede3;
  --text:          #1a1208;
  --text-light:    #5a4a30;
  --border:        #ddd5c0;
  --white:         #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius:       8px;
  --shadow-sm:    0 2px 8px rgba(26,10,0,0.08);
  --shadow-md:    0 4px 24px rgba(26,10,0,0.12);
  --shadow-lg:    0 8px 48px rgba(26,10,0,0.18);
  --transition:   all 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-light); }

/* ── Utility ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.accent { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--primary-dark); }

/* ── Header / Nav ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,10,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,163,23,0.2);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.brand-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.nav-desktop { display: flex; align-items: center; gap: 0.25rem; }
.nav-desktop a {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-desktop a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* Lang toggle */
.lang-toggle { display: flex; gap: 0.25rem; margin-left: 1rem; }
.lang-toggle button {
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: var(--transition);
}
.lang-toggle button.active, .lang-toggle button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,5,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,5,0,0.82) 0%, rgba(26,10,0,0.55) 50%, rgba(13,5,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,163,23,0.15);
  border: 1px solid rgba(232,163,23,0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-pill span { font-size: 0.8rem; font-weight: 600; color: var(--accent-light); letter-spacing: 0.05em; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.hero h1 .accent { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.hero-meta-item strong { color: var(--accent-light); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── Intro Section ────────────────────────────── */
.intro-section { padding: 6rem 2rem; background: var(--bg); }
.intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text .label-tag { margin-bottom: 1rem; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1.2rem; font-size: 1.05rem; }
.intro-text .btn { margin-top: 1.5rem; }
.intro-image { position: relative; }
.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.intro-image:hover img { transform: scale(1.02); }

/* ── Article Grid ─────────────────────────────── */
.articles-section { padding: 6rem 2rem; background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.articles-grid { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.article-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.article-card:nth-child(even) { direction: rtl; }
.article-card:nth-child(even) > * { direction: ltr; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.article-image { position: relative; overflow: hidden; }
.article-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-image img { transform: scale(1.05); }
.article-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.article-body { padding: 2rem 2.5rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.article-date { font-size: 0.8rem; color: var(--text-light); }
.article-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; line-height: 1.3; }
.article-excerpt { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.article-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  background: none;
  border: none;
}
.article-toggle:hover { color: var(--primary); }
.article-toggle svg { transition: transform 0.3s ease; }
.article-toggle.open svg { transform: rotate(180deg); }
.article-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 0.9rem;
  line-height: 1.8;
}
.article-expand.open { max-height: 600px; }
.article-expand p { margin-bottom: 0.75rem; }
.article-expand strong { color: var(--primary); display: block; margin-bottom: 0.5rem; margin-top: 1rem; }
.article-expand strong:first-child { margin-top: 0; }

/* ── Visitor Tips ─────────────────────────────── */
.tips-section { padding: 6rem 2rem; background: var(--bg); }
.tips-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tip-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tip-icon {
  width: 48px; height: 48px;
  background: rgba(232,163,23,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.tip-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tip-card h4 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.tip-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── Seasonal Guide ───────────────────────────── */
.seasonal-section { padding: 6rem 2rem; background: var(--primary); }
.seasonal-section .section-header h2 { color: var(--white); }
.seasonal-section .section-header p { color: rgba(255,255,255,0.6); }
.season-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.season-card { background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.season-header { padding: 1.5rem; }
.season-card:nth-child(1) .season-header { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.season-card:nth-child(2) .season-header { background: linear-gradient(135deg, #7f4f24, #b5651d); }
.season-card:nth-child(3) .season-header { background: linear-gradient(135deg, #1d3557, #457b9d); }
.season-card:nth-child(4) .season-header { background: linear-gradient(135deg, #6a040f, #9d0208); }
.season-icon { margin-bottom: 0.75rem; }
.season-icon svg { width: 32px; height: 32px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.5; }
.season-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.season-period { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.season-body { padding: 1.5rem; background: rgba(255,255,255,0.03); }
.season-body p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

/* ── Newsletter ───────────────────────────────── */
.newsletter-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1a00 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/intro.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.newsletter-text h2 { color: var(--white); margin-bottom: 1rem; }
.newsletter-text > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.newsletter-perks { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.perk-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-check svg { width: 12px; height: 12px; stroke: var(--primary-dark); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.newsletter-form { background: rgba(255,255,255,0.07); border-radius: 16px; padding: 2.5rem; border: 1px solid rgba(255,255,255,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.15); }
.checkbox-field { display: flex; align-items: flex-start; gap: 0.75rem; margin: 1.5rem 0; }
.checkbox-field input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; }
.checkbox-field label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.newsletter-form .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success svg { margin: 0 auto 1rem; }
.form-success h3 { color: var(--white); margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.6); }

/* ── FAQ ──────────────────────────────────────── */
.faq-section { padding: 6rem 2rem; background: var(--bg); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question h4 { font-size: 1.05rem; font-weight: 600; color: var(--primary); transition: color 0.2s; }
.faq-question:hover h4 { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(232,163,23,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-icon { background: var(--accent); transform: rotate(180deg); }
.faq-item.open .faq-icon svg { stroke: var(--primary-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 0 1.5rem; font-size: 0.95rem; line-height: 1.8; }

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(232,163,23,0.15);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 700px; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Cookie Banner ────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  border-top: 1px solid rgba(232,163,23,0.3);
  padding: 1.25rem 2rem;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-actions .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image img { height: 300px; }
  .article-card { grid-template-columns: 1fr; }
  .article-card:nth-child(even) { direction: ltr; }
  .article-image img { height: 260px; }
  .tips-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .cookie-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .season-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .article-body { padding: 1.5rem; }
}

/* ── Reveal animation (progressive enhancement) ─ */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}