/*
 * ══════════════════════════════════════════════════════════════════
 * THEME 1: ZIEMIA
 * Charakter: organiczna, ciepła, naturalna
 * Primary:   #3d6b35 (zieleń leśna)
 * Akcent:    #d4e8c2 (jasnozielony)
 * Tło:       #f7f4ee (kremowy)
 * Tekst:     #2c1f0e (ciemny brąz)
 * Fonty:     Playfair Display (nagłówki) + DM Sans (tekst)
 * ══════════════════════════════════════════════════════════════════
 */

/* ─── BASE ────────────────────────────────────────────────────────── */
body.theme-1 {
  background: #f7f4ee;
  color: #2c1f0e;
  font-family: 'DM Sans', sans-serif;
}

/* ─── TOP NAV ─────────────────────────────────────────────────────── */
body.theme-1 #topnav {
  background: #3d6b35;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

body.theme-1 .nav-logo {
  color: #d4e8c2;
  font-family: 'Playfair Display', serif;
}

body.theme-1 .nav-logo span {
  color: #fff;
  font-weight: 800;
}

body.theme-1 .topnav-link {
  color: rgba(255, 255, 255, 0.75);
}

body.theme-1 .topnav-link:hover,
body.theme-1 .topnav-link.active {
  color: #fff;
}

body.theme-1 .topnav-link::after {
  background: #d4e8c2;
}

body.theme-1 .topnav-cta {
  background: #d4e8c2;
  color: #2c4a20;
}

body.theme-1 .nav-toggler {
  color: rgba(255, 255, 255, 0.85);
}

body.theme-1 #mobile-menu {
  background: #2c4a20;
}

body.theme-1 .mobile-link {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-1 .mobile-link:hover {
  color: #d4e8c2;
}

/* ─── HERO ────────────────────────────────────────────────────────── */
body.theme-1 .hero {
  background: #3d6b35;
  color: white;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.theme-1 .hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

body.theme-1 .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

body.theme-1 .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  font-weight: 300;
  max-width: 520px;
}

body.theme-1 .hero-img-wrap {
  border-radius: 120px 120px 12px 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
body.theme-1 .btn-primary-t1 {
  background: #d4e8c2;
  color: #2c4a20;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

body.theme-1 .btn-primary-t1:hover {
  background: #c2dca8;
  transform: translateY(-1px);
}

body.theme-1 .btn-outline-t1 {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

body.theme-1 .btn-outline-t1:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────── */
body.theme-1 .section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b9e5e;
  font-weight: 600;
}

body.theme-1 .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #2c1f0e;
}

/* ─── SECTIONS ────────────────────────────────────────────────────── */
body.theme-1 .section-alt {
  background: #eee8dc;
}

/* ─── CONTENT BLOCKS ──────────────────────────────────────────────── */
body.theme-1 .rws-block {
  background: #fff;
}

body.theme-1 .rws-block-header {
  background: #fff;
  color: #3d6b35;
}

body.theme-1 .rws-block-body {
  background: #fff;
  color: #2c1f0e;
}

body.theme-1 .stat-number {
  color: #3d6b35;
}

/* ─── CARDS / ICONS ───────────────────────────────────────────────── */
body.theme-1 .card-feature {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

body.theme-1 .card-feature:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

body.theme-1 .icon-blob {
  width: 52px;
  height: 52px;
  background: #e8f5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d6b35;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

body.theme-1 .resource-link {
  background: #f7f4ee;
}

body.theme-1 .eul-support {
  background: #eee8dc;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
body.theme-1 .footer-section {
  background: #2c1f0e;
  color: rgba(255, 255, 255, 0.7);
}

body.theme-1 .footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

body.theme-1 .footer-section a:hover {
  color: #d4e8c2;
}

body.theme-1 .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #d4e8c2;
}

body.theme-1 .footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

body.theme-1 .designed-by {
  color: rgba(255, 255, 255, 0.55);
}
