/* ============================================================
   DIVOKÉ SLOVENSKO – Hlavný stylesheet
   divokeslovensko.sk
   ============================================================ */

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

/* ── CSS PREMENNÉ ── */
:root {
  --forest:       #1a3a2a;
  --forest-mid:   #2d5a40;
  --forest-light: #4a8c5c;
  --moss:         #7ab87a;
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d4;
  --stone:        #8a7e6e;
  --stone-dark:   #5a5040;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --ink:          #1c1a16;
  --text-muted:   #6b6258;
  --white:        #fdfaf5;
  --nav-h:        72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAVIGÁCIA ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(26, 58, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold-light);
}

/* ── SPOLOČNÉ SEKCIE ── */
section {
  padding: 96px 48px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 44px);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--forest-light);
}

.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── TLAČIDLÁ ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ── KARTY (destinations) ── */
.card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 58, 42, 0.14);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.06);
}

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: 56px 48px 36px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

/* ── RESPONZIVITA ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  nav ul {
    gap: 16px;
  }

  .nav-logo img {
    height: 36px;
  }

  section {
    padding: 64px 24px;
  }
}

@media (max-width: 600px) {
  nav ul {
    display: none;
  }
}
