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

:root {
  --night:    #09090B;
  --deep:     #111318;
  --sky:      #0F6BAD;
  --teal:     #0B7B6D;
  --forest-dk:#111318;
  --forest:   #1E2025;
  --forest-lt:#3FA060;
  --meadow:   #3FA060;
  --red:      #2E86AB;
  --orange:   #2E86AB;
  --gold:     #5FB0CE;
  --cream:    #F5EFE6;
  --text:     #1A1814;
}

html { scroll-behavior: smooth; }

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

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(6,14,26,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63,160,96,0.25);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--meadow);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { font-size: 1.8rem; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: #ddeedd; text-decoration: none; font-size: .9rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--meadow);
  transition: width .3s;
}
.nav-links a:hover { color: var(--meadow); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--meadow); }
.nav-links a.active::after { width: 100%; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      rgba(6,12,20,0.70) 0%,
      rgba(6,12,20,0.48) 38%,
      rgba(6,12,20,0.45) 62%,
      rgba(6,12,20,0.82) 100%),
    url('../images/hero/rozaje-landscape.webp') center 60% / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
}

/* stars layer */
.stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 34% 9%,  rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 14%, rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 71% 7%,  rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 22%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 28%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 12%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 32%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  45%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 19% 52%, rgba(255,255,255,.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 38%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 39% 48%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 76% 44%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 15% 8%,  rgba(200,230,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 5%,  rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 55%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 62%, rgba(255,255,255,.2) 0%, transparent 100%);
}

/* glow blob */
.moon-glow {
  position: absolute; top: 8%; right: 15%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(144,210,255,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { transform: scale(1); opacity: .8; }
  to   { transform: scale(1.2); opacity: 1; }
}

.mountains-wrap { display: none; }

/* floating food particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; opacity: .13;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: .15; }
  90%  { opacity: .1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; margin-bottom: 140px;
}
.hero-badge {
  display: inline-block;
  background: rgba(9,9,11,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(63,160,96,.55);
  color: #7de0a8; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 24px; border-radius: 50px; margin-bottom: 32px;
  animation: fadeDown .8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  animation: fadeDown .9s .1s ease both;
  text-shadow: 0 2px 6px rgba(0,0,0,.9), 0 6px 28px rgba(0,0,0,.7);
}
.hero-title .accent {
  color: #3FA060;
  -webkit-text-fill-color: #3FA060;
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,.95), 0 0 32px rgba(0,0,0,.8);
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 26px auto 0; max-width: 200px;
  animation: fadeDown 1s .18s ease both;
}
.hero-divider::before,
.hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,160,96,.6), transparent);
}
.hero-divider span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3FA060;
  box-shadow: 0 0 8px rgba(63,160,96,.7);
}
.hero-sub {
  font-size: clamp(.95rem, 1.7vw, 1.12rem);
  color: #ffffff;
  max-width: 500px;
  margin: 18px auto 0;
  line-height: 2;
  font-weight: 300;
  letter-spacing: .04em;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(6,12,20,0.58) 0%, transparent 100%);
  padding: 20px 30px;
  text-shadow: 0 1px 4px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
  animation: fadeDown 1s .25s ease both;
}
.hero-sub .hero-highlight {
  color: #ffffff;
  font-weight: 400;
}
.hero-cta {
  margin-top: 40px; display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeDown 1s .35s ease both;
}
.btn {
  padding: 15px 36px; border-radius: 50px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.btn-primary { background: linear-gradient(135deg,var(--forest-lt),var(--teal)); color: #fff; }
.btn-outline  { background: rgba(9,9,11,0.50); backdrop-filter: blur(12px); border: 2px solid rgba(63,160,96,.70); color: #c8f0d8; letter-spacing: .04em; }
.btn-food     { background: linear-gradient(135deg,var(--red),var(--orange)); color: #fff; }

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); color: rgba(200,240,220,.4);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; font-size: .72rem; letter-spacing: .12em;
  animation: fadeDown 1.2s .6s ease both; z-index: 3;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(63,160,96,.4);
  border-bottom: 2px solid rgba(63,160,96,.4);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform:rotate(45deg) translateY(0); } 50% { transform:rotate(45deg) translateY(6px); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:translateY(0); } }

/* ─── FEATURES ─── */
#features {
  background: linear-gradient(180deg,var(--forest-dk) 0%, #0D2232 100%);
  padding: 0 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feat {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 56px 40px;
  position: relative; cursor: pointer;
  transition: background .3s;
}
.feat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(63,160,96,.12);
}
.feat:hover { background: rgba(255,255,255,.03); }
.feat-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform .3s, box-shadow .3s;
}
.feat:hover .feat-icon { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.feat-icon.res  { background: rgba(63,160,96,.12);  border: 1.5px solid rgba(63,160,96,.35); }
.feat-icon.food { background: rgba(46,134,171,.12);  border: 1.5px solid rgba(46,134,171,.35); }
.feat-icon.city { background: rgba(95,176,206,.12); border: 1.5px solid rgba(95,176,206,.35); }
.feat h3 { font-size: 1.05rem; font-weight: 700; color: #e8f5ee; margin-bottom: 10px; letter-spacing: -.01em; }
.feat p  { font-size: .86rem; color: rgba(200,240,220,.45); line-height: 1.7; max-width: 220px; }
.feat-btn {
  margin-top: 20px; padding: 9px 22px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; text-decoration: none;
  transition: opacity .2s, transform .2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.feat-btn:hover { opacity: .85; transform: translateY(-1px); }
.feat-btn.res  { background: rgba(63,160,96,.12);  border: 1px solid rgba(63,160,96,.4);  color: var(--meadow); }
.feat-btn.food { background: rgba(46,134,171,.12);  border: 1px solid rgba(46,134,171,.4);  color: var(--orange); }
.feat-btn.city { background: rgba(95,176,206,.12); border: 1px solid rgba(95,176,206,.4); color: var(--gold); }
.feat-btn::after { content: '→'; font-size: .85rem; }

/* ─── SECTION DIVIDER ─── */
.section-divider { height: 3px; background: var(--forest-lt); }

/* ─── SECTION MOUNTAIN WATERMARKS ─── */
#restaurants, #smjestaji { position: relative; }
.section-mountain-bg {
  position: absolute; top: 0; left: 0; right: 0;
  pointer-events: none; z-index: 0;
}
.section-mountain-bg svg { display: block; width: 100%; }
#restaurants > *:not(.section-mountain-bg),
#smjestaji > *:not(.section-mountain-bg) { position: relative; z-index: 1; }

/* ─── RESTAURANTS ─── */
#restaurants { background: var(--cream); padding: 90px 60px 100px; }
.restaurants-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--forest-lt);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text); line-height: 1.15;
}
.section-title .line2 { color: var(--meadow); }

.rest-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 26px;
}
.rest-row2 {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 26px; margin-top: 26px;
  max-width: calc(66.66% + 13px); margin-left: auto; margin-right: auto;
}

.card {
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 4px 28px rgba(20,18,14,.09);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(20,18,14,.18);
}
.card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.card:hover .card-img-wrap img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(63,160,96,.85); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 50px; text-transform: uppercase;
}
.card-badge.red { background: var(--red); }
.card-rating {
  position: absolute; top: 14px; right: 14px;
  background: rgba(6,14,26,.75); backdrop-filter: blur(6px);
  color: var(--gold); font-size: .8rem; font-weight: 700;
  padding: 5px 11px; border-radius: 50px;
  display: flex; align-items: center; gap: 4px;
}
.card-body { padding: 22px 24px 26px; }
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 5px;
}
.card-type {
  font-size: .78rem; color: var(--forest-lt); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.card-desc { font-size: .85rem; color: #4A6A55; line-height: 1.58; margin-bottom: 16px; }
.card-meta {
  display: flex; gap: 16px; font-size: .78rem; color: #6A8A70;
  border-top: 1px solid #D8EFDF; padding-top: 14px; flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ─── MOUNTAINS NATURE STRIP ─── */
#nature-strip {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0D0E12 0%, #111318 50%, #1A1814 100%);
  padding: 80px 60px;
  display: flex; align-items: center; gap: 70px;
}
.nature-text { flex: 1; position: relative; z-index: 2; }
.nature-text .section-label { color: var(--meadow); }
.nature-text .section-title { color: #fff; }
.nature-text p {
  margin-top: 20px; color: rgba(200,240,210,.6);
  line-height: 1.8; max-width: 480px; font-size: .95rem;
}
.nature-stats { display: flex; gap: 40px; margin-top: 42px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--meadow); display: block;
}
.stat-lab { font-size: .75rem; color: rgba(200,240,210,.5); text-transform: uppercase; letter-spacing: .1em; }
.nature-imgs { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 2; }
.nature-imgs img {
  width: 100%; border-radius: 16px; object-fit: cover;
  transition: transform .4s; cursor: pointer;
}
.nature-imgs img:hover { transform: scale(1.04); }
.nature-imgs img:first-child { grid-row: span 2; height: 310px; }
.nature-imgs img:not(:first-child) { height: 148px; }
.nature-bg-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; opacity: .15;
}

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,14,26,.8); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.modal {
  background: #fff; border-radius: 24px; max-width: 520px; width: 100%;
  padding: 48px; position: relative;
  animation: slideUp .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes slideUp { from { transform:translateY(40px);opacity:0; } to { transform:translateY(0);opacity:1; } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #E8F5EE; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text); transition: background .2s;
}
.modal-close:hover { background: #C8E6D0; }
.modal-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.modal-icon.res   { background: linear-gradient(135deg,var(--forest-lt),var(--teal)); }
.modal-icon.menu  { background: linear-gradient(135deg,var(--sky),#0D4C8A); }
.modal h2 {
  font-family:'Playfair Display',serif; font-size:1.7rem;
  letter-spacing:-0.02em;
  color:var(--text); margin-bottom:8px;
}
.modal p { color:#4A6A55; line-height:1.65; margin-bottom:26px; font-size:.9rem; }
.modal-form { display:flex; flex-direction:column; gap:13px; }
.modal-form input, .modal-form select, .modal-form textarea {
  padding:13px 16px; border:2px solid #D0E8D8; border-radius:12px;
  font-size:.9rem; font-family: 'Inter', sans-serif; color:var(--text);
  background:#F5FBF7; transition:border .2s;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus { outline:none; border-color:var(--forest-lt); }
.modal-form textarea { resize:vertical; min-height:90px; }
.modal-submit {
  padding:14px; border-radius:12px; border:none; cursor:pointer;
  font-size:1rem; font-weight:700; transition:transform .2s,box-shadow .2s;
}
.modal-submit.res   { background:linear-gradient(135deg,var(--forest-lt),var(--teal)); color:#fff; }
.modal-submit.menu  { background:linear-gradient(135deg,var(--sky),#0D4C8A); color:#fff; }
.modal-submit:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.2); }
.coming-soon-tag {
  display:inline-block; background:#E8F5EE; border:1px dashed var(--forest-lt);
  color:var(--forest); font-size:.75rem; font-weight:700;
  padding:4px 12px; border-radius:50px; margin-bottom:14px;
}

/* ─── SMJEŠTAJI ─── */
#smjestaji { background: #f0faf5; padding: 50px 60px 70px; border-top: 1px solid #C8E6D0; }
@media(max-width:900px){ #smjestaji { padding:40px 22px 60px; } }
.smjestaj-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; padding: 10px 22px; border-radius: 50px;
  background: linear-gradient(135deg,var(--forest-lt),var(--teal));
  color: #fff; font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.smjestaj-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
/* ─── FOOTER ─── */
footer {
  background: var(--night);
  padding: 60px 60px 28px;
  color: rgba(200,240,220,.4);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px; gap: 40px; flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.75; }
.footer-links { flex: 1; display: flex; justify-content: center; }
.footer-links h4 { display: none; }
.footer-links ul {
  list-style: none; display: flex; flex-direction: row;
  gap: 32px; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  color: rgba(200,240,220,.5); font-size: .9rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.footer-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--meadow);
  transition: width .3s;
}
.footer-links a:hover { color: var(--meadow); }
.footer-links a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid rgba(63,160,96,.08);
  padding-top: 26px; text-align: center; font-size: .78rem;
}

/* ─── LANG TOGGLE ─── */
html.en .t-bs { display: none !important; }
html.bs .t-en { display: none !important; }

/* ─── NAV EXTRAS ─── */
.nav-right { display:flex; align-items:center; gap:14px; }
.nav-social { color:rgba(200,240,220,.5); font-size:1.1rem; transition:color .2s; }
.nav-social:hover { color:var(--meadow); }
.lang-toggle {
  background:rgba(63,160,96,.15); border:1px solid rgba(63,160,96,.4);
  color:var(--meadow); font-size:.75rem; font-weight:700; letter-spacing:.1em;
  padding:5px 13px; border-radius:50px; cursor:pointer; transition:background .2s;
}
.lang-toggle:hover { background:rgba(63,160,96,.3); }

/* ─── TO INFO BLOK ─── */
.to-info { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.to-item { display: flex; align-items: flex-start; gap: 16px; }
.to-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(63,160,96,.12); border: 1px solid rgba(63,160,96,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--meadow); font-size: 1rem;
}
.to-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(200,240,220,.4); margin-bottom: 4px; }
.to-value { font-size: .95rem; color: rgba(200,240,220,.85); }
.to-value a { color: var(--meadow); text-decoration: none; transition: color .2s; }
.to-value a:hover { color: #fff; }

/* ─── KONTAKT + MAPA ─── */
#kontakt {
  background: linear-gradient(180deg,var(--forest-dk) 0%,#0D2232 100%);
  padding: 90px 60px 100px;
}
.kontakt-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.kontakt-form-wrap .section-label { color:var(--meadow); }
.kontakt-form-wrap .section-title { color:#fff; }
.kontakt-form-wrap .section-title span { color:var(--meadow); }
.kontakt-form { margin-top:28px; display:flex; flex-direction:column; gap:13px; }
.kontakt-form input, .kontakt-form textarea {
  padding:13px 16px; border:2px solid rgba(63,160,96,.2); border-radius:12px;
  font-size:.9rem; font-family: 'Inter', sans-serif; color:#e8f5ee;
  background:rgba(255,255,255,.06); transition:border .2s;
}
.kontakt-form input::placeholder, .kontakt-form textarea::placeholder { color:rgba(200,240,220,.35); }
.kontakt-form input:focus, .kontakt-form textarea:focus { outline:none; border-color:var(--meadow); }
.kontakt-form textarea { resize:vertical; min-height:110px; }
.kontakt-submit {
  padding:14px; border-radius:12px; border:none; cursor:pointer;
  font-size:1rem; font-weight:700;
  background:linear-gradient(135deg,var(--forest-lt),var(--teal)); color:#fff;
  transition:transform .2s,box-shadow .2s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.kontakt-submit:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.3); }
.kontakt-success {
  display:none; margin-top:10px; padding:12px 16px; border-radius:10px;
  background:rgba(63,160,96,.12); border:1px solid rgba(63,160,96,.4);
  color:var(--meadow); font-size:.88rem; text-align:center;
}
.map-wrap { border-radius:20px; overflow:hidden; box-shadow:0 8px 40px rgba(0,0,0,.4); border:1px solid rgba(63,160,96,.12); }
.map-wrap iframe { display:block; width:100%; height:380px; border:0; filter:grayscale(20%) contrast(1.05); }
.map-info { background:rgba(255,255,255,.04); padding:16px 20px; display:flex; flex-wrap:wrap; gap:14px; }
.map-info-item { display:flex; align-items:center; gap:8px; font-size:.82rem; color:rgba(200,240,220,.6); }
.map-info-item i { color:var(--meadow); }

/* ─── FOOTER SOCIAL ─── */
.footer-social { display:flex; gap:12px; margin-top:16px; }
.footer-social a {
  width:36px; height:36px; border-radius:50%;
  background:rgba(63,160,96,.08); border:1px solid rgba(63,160,96,.18);
  display:flex; align-items:center; justify-content:center;
  color:rgba(200,240,220,.45); font-size:.95rem;
  transition:background .2s,color .2s; text-decoration:none;
}
.footer-social a:hover { background:rgba(63,160,96,.22); color:var(--meadow); }

/* ─── SMJEŠTAJ MODAL ─── */
.smodal {
  background: #fff; border-radius: 24px; max-width: 620px; width: 100%;
  max-height: 88vh; overflow-y: auto; position: relative;
  animation: slideUp .35s cubic-bezier(.34,1.56,.64,1) both;
}
.smodal-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 24px 24px 0 0; display: block;
}
.smodal-body { padding: 28px 32px 32px; }
.smodal-type {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--forest-lt); margin-bottom: 6px;
}
.smodal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 10px;
}
.smodal-rating {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0faf5; border: 1px solid #C8E6D0;
  padding: 4px 12px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; color: var(--forest-lt);
  margin-bottom: 14px;
}
.smodal-desc {
  font-size: .9rem; color: #4A6A55; line-height: 1.68;
  margin-bottom: 22px; border-bottom: 1px solid #E8F5EE; padding-bottom: 20px;
}
.smodal-amenities {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px;
}
.smodal-amenity {
  display: flex; align-items: center; gap: 10px;
  background: #f5fbf7; border: 1px solid #D8EFDF;
  border-radius: 10px; padding: 10px 14px;
  font-size: .83rem; color: var(--text); font-weight: 500;
}
.smodal-amenity i { color: var(--forest-lt); width: 16px; text-align: center; }
.smodal-location {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; color: #6A8A70; margin-bottom: 22px;
}
.smodal-location i { color: var(--forest-lt); }
.smodal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(9,9,11,0.45); backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; transition: background .2s; z-index: 2;
}
.smodal-close:hover { background: rgba(9,9,11,0.7); }

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  nav { padding:16px 22px; }
  .nav-links { gap:18px; }
  #kontakt { padding:70px 22px; }
  .kontakt-grid { grid-template-columns:1fr; }
  #features { grid-template-columns: repeat(2,1fr); padding:0 22px; }
  .feat:not(:last-child)::after { display:none; }
  .feat { padding: 36px 24px; }
  #restaurants { padding:70px 22px; }
  .rest-grid { grid-template-columns:1fr 1fr; }
  .rest-row2 { max-width:100%; }
  #nature-strip { flex-direction:column; padding:70px 22px; }
  .nature-imgs { display:none; }
  footer { padding:40px 22px 24px; }
}
@media(max-width:600px){
  #features { grid-template-columns:1fr; }
  .feat { padding: 28px 20px; }
  .rest-grid { grid-template-columns:1fr; }
  .rest-row2 { grid-template-columns:1fr; }
  .hero-cta { flex-direction:column; align-items:center; }
  .hero-content { margin-bottom: 180px; }
}
