/* ─────────────────────────────────────────
   Camping Zeleni Gaj — Glavni stylesheet
   ───────────────────────────────────────── */

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

:root {
  --green:       #1e4d0e;
  --green-mid:   #2d6a18;
  --green-light: #3d8520;
  --amber:       #b87420;
  --cream:       #f5f0e8;
  --cream-dark:  #ece5d8;
  --stone:       #8a7a68;
  --text:        #1a1a18;
  --text-muted:  #6b6050;
  --white:       #ffffff;
  --serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --radius:      3px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }


/* ── NAVIGACIJA ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}
#nav.solid {
  background: rgba(245,240,232,.97);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}

.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: #fff; line-height: 1; transition: color .3s;
}
.logo-sub {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .3s;
}
#nav.solid .logo-name { color: var(--green); }
#nav.solid .logo-sub  { color: var(--stone); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: .85rem; letter-spacing: .04em;
  color: rgba(255,255,255,.88); transition: color .2s;
}
.nav-links a:hover { color: #fff; }
#nav.solid .nav-links a       { color: var(--text-muted); }
#nav.solid .nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: .55rem 1.4rem; border-radius: var(--radius);
  font-weight: 500; letter-spacing: .06em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: #fff !important; }

/* Jezički prekidač */
.lang-switcher {
  display: flex; align-items: center; gap: .15rem;
}
.lang-btn {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: none; border: none; border-bottom: 1px solid transparent;
  padding: .25rem .3rem; cursor: pointer;
  transition: color .2s, border-color .2s;
  line-height: 1;
}
.lang-btn:hover       { color: rgba(255,255,255,.9); }
.lang-btn.active      { color: #fff; border-bottom-color: rgba(255,255,255,.7); }
#nav.solid .lang-btn         { color: var(--stone); }
#nav.solid .lang-btn:hover   { color: var(--text); }
#nav.solid .lang-btn.active  { color: var(--green); border-bottom-color: var(--green); }

.drawer-lang {
  display: flex; gap: .5rem; padding: .5rem 0 .75rem;
  border-bottom: 1px solid var(--cream-dark); margin-bottom: .25rem;
}
.drawer-lang .lang-btn {
  color: var(--stone); font-size: .75rem;
  border: 1px solid var(--cream-dark); border-radius: var(--radius);
  padding: .3rem .55rem;
}
.drawer-lang .lang-btn:hover  { color: var(--green); border-color: var(--green); }
.drawer-lang .lang-btn.active { color: var(--green); border-color: var(--green); background: rgba(30,77,14,.06); }

/* Hamburger dugme */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: background .3s;
}
#nav.solid .burger span { background: var(--text); }

/* Mobilni drawer */
#drawer {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 199;
  background: var(--white); flex-direction: column;
  padding: 1.25rem 2rem 1.75rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
#drawer.open { display: flex; }
#drawer a {
  padding: .7rem 0; font-size: .95rem; color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
}
#drawer a:last-child { border: none; color: var(--green); font-weight: 600; }


/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../Slike/hero.jpg') center 40% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,18,5,.55) 0%,
    rgba(5,18,5,.28) 45%,
    rgba(5,18,5,.72) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-block; margin-bottom: 1.5rem;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.3); padding: .3rem 1rem; border-radius: 2px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  color: #fff; line-height: 1.08; margin-bottom: 1.25rem; font-weight: 600;
}
.hero-title em { font-style: italic; display: block; color: rgba(255,255,255,.82); }
.hero-desc {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Dugmad */
.btn {
  display: inline-block; padding: .8rem 1.9rem;
  border-radius: var(--radius); font-size: .88rem;
  font-weight: 500; letter-spacing: .05em;
  transition: transform .18s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; border: 1px solid var(--green); }
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }

.hero-meta {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0; z-index: 2;
  white-space: nowrap;
}
.hero-meta span {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-meta span + span::before {
  content: ' · ';
  color: rgba(255,255,255,.3);
  margin: 0 .9rem;
  letter-spacing: 0;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; right: 2.5rem; z-index: 2;
  writing-mode: vertical-rl; display: flex; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-scroll-hint::before {
  content: ''; display: block; width: 1px; height: 38px;
  background: rgba(255,255,255,.35);
}


/* ── HIGHLIGHTS STRIP ── */
.highlights {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--green);
}
.highlight {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.highlight:last-child { border-right: none; }
.hl-icon  { font-size: 1.85rem; margin-bottom: .7rem; }
.hl-title { font-size: .95rem; font-weight: 500; color: #fff; margin-bottom: .35rem; }
.hl-desc  { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.5; }


/* ── ZAJEDNIČKI STILOVI SEKCIJA ── */
.section       { padding: 6rem 2.5rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.tag {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: .65rem; display: block;
}
.heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.12; color: var(--text); margin-bottom: 1rem;
}
.heading em { font-style: italic; color: var(--green); display: block; }
.lead {
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.7; max-width: 54ch;
}


/* ── SMJEŠTAJ ── */
.accom-section  { background: var(--cream); }
.accom-header   { margin-bottom: 3.5rem; }
.accom-grid     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.accom-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 18px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.accom-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,.13); }

.card-img { height: 235px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.accom-card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--green); color: #fff;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 2px;
}

.card-body  { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag   { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .45rem; }
.card-title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .6rem; color: var(--text); }
.card-desc  { font-size: .87rem; color: var(--text-muted); line-height: 1.62; flex: 1; margin-bottom: 1.25rem; }
.card-link {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .2s;
}
.card-link:hover { gap: .7rem; }
.card-link::after { content: '→'; }

.card-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.card-gallery-btn {
  font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); background: none; border: 1px solid var(--border);
  border-radius: 3px; padding: .45rem .8rem; cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s;
}
.card-gallery-btn:hover { border-color: var(--green); color: var(--green); }


/* ── ISKUSTVO ── */
.exp-section { background: var(--white); }
.exp-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.exp-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 320px 210px; gap: .875rem; }
.exp-main    { grid-column: 1 / -1; border-radius: 4px; overflow: hidden; }
.exp-main img  { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.exp-thumb     { border-radius: 4px; overflow: hidden; }
.exp-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.exp-quote {
  margin: 1.75rem 0;
  border-left: 3px solid var(--amber); padding: .75rem 1.2rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--stone); line-height: 1.55;
}
.exp-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1.75rem; }
.amenity       { display: flex; gap: .7rem; align-items: flex-start; }
.amenity-icon  { font-size: 1.15rem; margin-top: 1px; flex-shrink: 0; }
.amenity-text strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: .1rem; }
.amenity-text span   { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }


/* ── GALERIJA ── */
.gallery-section { background: var(--cream); }
.gallery-header  {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.25rem;
}

/* Teaser: tri preview slike */
.gallery-teaser {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
  margin-bottom: 2rem;
}
.gallery-teaser img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: var(--radius); display: block;
  filter: brightness(.92);
  transition: filter .3s;
}
.gallery-teaser img:hover { filter: brightness(1); }

/* Dugme za otvaranje galerije */
.gallery-open-btn {
  display: block; margin: 0 auto;
  padding: .85rem 2.75rem;
  background: var(--green); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--sans); font-size: .88rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .18s;
}
.gallery-open-btn:hover { background: var(--green-mid); transform: translateY(-2px); }

/* Skriveni podaci za lightbox */
.gallery-data { display: none; }

/* ── APP CHOOSER ── */
#app-chooser {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.6);
  padding: 1rem;
}
#app-chooser.open {
  display: flex; align-items: center; justify-content: center;
}
.app-chooser-box {
  background: #fff; border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0,0,0,.3);
  width: min(300px, 100%);
}
.app-chooser-title {
  font-family: var(--sans); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.25rem;
}
.app-chooser-btns {
  display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem;
}
.app-chooser-btns button {
  display: flex; align-items: center; justify-content: center;
  gap: .65rem; padding: .85rem 1rem; width: 100%;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  transition: transform .15s, filter .15s;
}
.app-chooser-btns button:hover { transform: translateY(-2px); filter: brightness(1.08); }
#btn-whatsapp { background: #25D366; color: #fff; }
#btn-viber    { background: #7360F2; color: #fff; }
#btn-sms      { background: #f07c30; color: #fff; }
#btn-chooser-cancel {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: #bbb; transition: color .2s; padding: .3rem;
}
#btn-chooser-cancel:hover { color: var(--text); }

#viber-note {
  display: none;
  background: #f0edff; border-radius: 10px;
  padding: 1.25rem 1rem; margin-bottom: 1.25rem; text-align: center;
}
#viber-note.show { display: block; }
.viber-note-title { font-size: 1rem; font-weight: 700; color: #5a45cc; margin-bottom: .4rem; }
.viber-note-sub   { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }


/* ── GALLERY MODAL ── */
#gallery-modal {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.82); overflow-y: auto; padding: 2rem 1rem;
}
#gallery-modal.open { display: block; }
.gm-inner {
  max-width: 960px; margin: 0 auto;
  background: var(--cream); border-radius: 6px; overflow: hidden;
}
.gm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--cream-dark);
  position: sticky; top: 0; background: var(--cream); z-index: 1;
}
.gm-title { font-family: var(--serif); font-size: 1.2rem; color: var(--text); }
#gm-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--stone); line-height: 1; padding: .2rem .5rem;
  transition: color .2s;
}
#gm-close:hover { color: var(--text); }
.gm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .5rem; padding: 1rem;
}
.gm-grid img,
.gm-grid video {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 3px; cursor: zoom-in; display: block;
  filter: brightness(.92); transition: transform .25s, filter .25s;
}
.gm-grid img:hover,
.gm-grid video:hover { transform: scale(1.03); filter: brightness(1.05); }


/* Lightbox */
#lb {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.95);
  align-items: center; justify-content: center;
}
#lb.open { display: flex; }
#lb-img,
#lb-video {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
}
#lb-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; opacity: .7; line-height: 1;
  transition: opacity .2s;
}
#lb-close:hover { opacity: 1; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 2rem; width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
#lb-prev    { left: 1.5rem; }
#lb-next    { right: 1.5rem; }
#lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: .08em;
}


/* ── REZERVACIJA (3 koraka) ── */
.booking-section { background: var(--green); padding: 5.5rem 2.5rem; }
.booking-inner   { max-width: 900px; margin: 0 auto; text-align: center; }

.booking-section .tag     { color: rgba(255,255,255,.55); }
.booking-section .heading { color: #fff; margin-bottom: .75rem; }
.booking-section .heading em { color: rgba(255,255,255,.72); }
.booking-section .lead    { color: rgba(255,255,255,.65); margin: 0 auto 3.5rem; }

.steps   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
  font-family: var(--serif); font-size: 1.1rem; color: #fff;
}
.step h3 { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: .45rem; }
.step p  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.6; }


/* ── MINI RESTORAN ── */
.restoran-section { background: var(--cream-dark); }
.restoran-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.restoran-imgs    { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.restoran-imgs img { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; }


/* ── LOKACIJA ── */
.location-section { background: var(--cream-dark); }
.location-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.dist-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }

.dist-card   { background: var(--white); border-radius: var(--radius); padding: 1.25rem; }
.dist-label  { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: .3rem; }
.dist-value  { font-family: var(--serif); font-size: 1.35rem; color: var(--green); }
.dist-note   { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

.map-wrap         { border-radius: 4px; overflow: hidden; height: 380px; background: var(--cream); }
.map-wrap iframe  { width: 100%; height: 100%; border: none; display: block; }

.map-link {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem; font-size: .83rem; font-weight: 500;
  color: var(--green); letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 1px solid var(--green); padding-bottom: 2px;
  transition: opacity .2s;
}
.map-link:hover { opacity: .7; }


/* ── KORACI (light varijanta, unutar forme) ── */
.steps-light {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0 0;
}
.step-light {
  display: flex; gap: .85rem; align-items: flex-start;
  text-align: left;
}
.step-light-num {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--green); color: var(--green);
  font-family: var(--serif); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.step-light strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: .2rem; }
.step-light span   { font-size: .8rem; color: var(--text-muted); line-height: 1.45; }

.form-divider {
  border: none; border-top: 1px solid var(--cream-dark);
  margin: 2.5rem 0;
}


/* ── KONTAKT FORMA ── */
.form-section { background: var(--white); }
.form-wrap    { max-width: 760px; margin: 0 auto; text-align: center; }
.form-wrap .lead { margin: 0 auto 2.75rem; }

form    { text-align: left; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.f-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.f-group label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--stone); }

.f-group input,
.f-group select,
.f-group textarea {
  background: var(--cream); border: 1px solid #d6cfc5;
  border-radius: var(--radius); padding: .72rem 1rem;
  font-family: var(--sans); font-size: .94rem; color: var(--text);
  transition: border-color .2s; outline: none;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--green); background: #fff; }
.f-group textarea { min-height: 115px; resize: vertical; }
.f-full { grid-column: 1 / -1; }


.f-note {
  font-size: .75rem; color: var(--stone); margin-bottom: 1.5rem;
}

.form-error {
  display: none;
  background: #fff4f4; border: 1px solid #f5c6c6; color: #b03030;
  border-radius: 6px; padding: .75rem 1rem;
  font-size: .88rem; margin-bottom: 1.25rem;
  animation: slideDown .2s ease;
}
.form-error.show { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.f-submit {
  width: 100%; padding: .95rem; border: none; border-radius: var(--radius);
  background: var(--green); color: #fff;
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.f-submit:hover { background: var(--green-mid); }


/* ── KONTAKT STRIP ── */
.cstrip {
  background: var(--cream); padding: 2.25rem 2.5rem;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.cstrip-item   { text-align: center; }
.cstrip-label  { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-bottom: .3rem; }
.cstrip-val    { font-size: .97rem; color: var(--text); }
.cstrip-val a  { color: var(--green); font-weight: 500; }


/* ── FOOTER ── */
footer { background: #141810; padding: 3.5rem 2.5rem 2rem; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem;
}
.footer-logo        { font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: .7rem; }
.footer-logo em     { font-style: italic; color: rgba(255,255,255,.5); }
.footer-about       { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-col h4      { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col ul      { list-style: none; }
.footer-col li      { margin-bottom: .5rem; font-size: .87rem; color: rgba(255,255,255,.55); }
.footer-col a       { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1160px; margin: 2.25rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.25);
}


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .highlights           { grid-template-columns: 1fr 1fr; }
  .accom-grid           { grid-template-columns: 1fr 1fr; }
  .exp-inner            { grid-template-columns: 1fr; gap: 3rem; }
  .photo-grid           { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .photo-item.tall      { grid-row: span 1; }
  .location-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .restoran-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps                { grid-template-columns: 1fr; gap: 2.25rem; }
  .nav-links            { display: none; }
  .lang-switcher        { display: none; }
  .burger               { display: flex; }
}

@media (max-width: 620px) {
  .gm-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-grid img, .gm-grid video { height: 140px; }
  #lb-img, #lb-video { max-width: 100vw; max-height: 80vh; width: 100%; }

  #nav                  { padding: 0 1.25rem; }
  .section              { padding: 4rem 1.25rem; }
  .booking-section      { padding: 4rem 1.25rem; }
  .accom-grid           { grid-template-columns: 1fr; }
  .f-grid               { grid-template-columns: 1fr; }
  .photo-grid           { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-item           { height: 220px; }
  .gallery-row2         { grid-template-columns: 1fr 1fr; }
  .gallery-row2 .photo-item { height: 170px; }
  .footer-inner         { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom        { flex-direction: column; gap: .5rem; text-align: center; }
  .cstrip               { gap: 1.75rem; }
  .hero-meta            { display: none; }
  .hero-scroll-hint     { display: none; }
  .hero-desc            { font-weight: 400; }
  .gallery-header       { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .gallery-teaser       { grid-template-columns: 1fr; }
  .gallery-teaser img   { height: 210px; }
  .dist-grid            { grid-template-columns: 1fr 1fr; }
  .exp-amenities        { grid-template-columns: 1fr; }
  .restoran-imgs        { grid-template-columns: 1fr; }
  .steps-light          { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 420px) {
  .highlights           { grid-template-columns: 1fr; }
  .highlight            { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .highlight:last-child { border-bottom: none; }
}
