/* ============================================================
   Hotel Požega – Main Stylesheet
   ============================================================ */

/* ── Google Reviews badge ── */
.gr-badge-wrap { text-align:center; margin-bottom:2rem; }
.gr-badge {
  display:inline-flex; align-items:center; gap:1rem;
  background:var(--white); border-radius:12px; padding:1.25rem 2rem;
  box-shadow:var(--shadow-h); border:1px solid var(--gray-light);
}
.gr-score { font-family:var(--font-h); font-size:3.5rem; font-weight:700; color:var(--navy); line-height:1; }
.gr-right { text-align:left; }
.gr-stars { color:#FBBC04; font-size:1.35rem; letter-spacing:2px; line-height:1; }
.gr-count { font-size:.82rem; color:var(--gray); margin-top:.2rem; }
.gr-label { font-size:.72rem; color:var(--gray-dark); display:flex; align-items:center; gap:.3rem; margin-top:.35rem; }
.gr-label svg { width:14px; height:14px; }

/* ── Variables ── */
:root {
  --navy:        #1B2D4F;
  --navy-light:  #2E4A7A;
  --gold:        #C9A96E;
  --gold-dark:   #A67C3A;
  --white:       #FFFFFF;
  --off-white:   #F8F5F0;
  --gray-light:  #E8E3D9;
  --gray:        #9E9E9E;
  --gray-dark:   #555555;
  --text:        #1A1A1A;
  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:   1200px;
  --r:           4px;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-h:    0 8px 32px rgba(0,0,0,.16);
  --trans:       .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p { color: var(--gray-dark); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: .85rem auto; }
.eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .75rem; display: block; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: .75rem 1.75rem; border-radius: var(--r);
  font-weight: 600; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase; transition: var(--trans);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-h); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--white); }

/* ── Scroll animations ── */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: var(--trans);
  background: var(--navy);
}
.navbar.scrolled {
  background: var(--navy); padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar-logo { display: flex; align-items: center; }
/* Always use the text logo — reliable on all backgrounds */
.navbar-logo .logo-img { display: none; }
.navbar-logo .logo-text { display: flex !important; flex-direction: column; line-height: 1; }
.navbar-logo .logo-name { font-family: var(--font-h); font-size: 1.45rem; color: var(--white); font-weight: 700; }
.navbar-logo .logo-sub { font-size: .58rem; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; transition: var(--trans);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  padding: .28rem .55rem; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.55);
  border-radius: 3px; text-transform: uppercase; letter-spacing: .05em; transition: var(--trans);
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); background: rgba(201,169,110,.15); }
.nav-book-btn {
  background: var(--gold); color: var(--white); padding: .48rem 1.1rem;
  border-radius: var(--r); font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; transition: var(--trans);
}
.nav-book-btn:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform .85s cubic-bezier(.77,0,.175,1); }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%); }
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: var(--white); padding: 0 1.5rem;
}
.slide-badge { font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.slide-content h1 { color: var(--white); font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: 1.25rem; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.slide-content p { font-size: clamp(.95rem, 2vw, 1.2rem); max-width: 640px; margin: 0 auto 2rem; opacity: .9; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--trans);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-prev:hover, .slider-next:hover { background: var(--gold); border-color: var(--gold); }
.slider-prev svg, .slider-next svg { width: 20px; height: 20px; }
.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: var(--trans); cursor: pointer; }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   QUICK BOOK BAR
   ============================================================ */
.quick-book { background: var(--navy); padding: 1.5rem 0; }
.qb-form { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.qb-field { display: flex; flex-direction: column; gap: .3rem; flex: 1; min-width: 140px; }
.qb-field label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.qb-field select, .qb-field input[type="date"], .qb-field input[type="number"] {
  padding: .58rem .75rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r); color: var(--white); font-size: .9rem; width: 100%;
  height: 2.6rem; box-sizing: border-box;
  transition: var(--trans);
}
.qb-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.55)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.qb-field select:focus, .qb-field input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.14); }
.qb-field select option { background: var(--navy); }
.qb-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.6); }
.qb-btn {
  padding: .58rem 2rem; background: var(--gold); color: var(--white);
  border-radius: var(--r); font-weight: 600; font-size: .88rem; letter-spacing: .05em;
  text-transform: uppercase; transition: var(--trans); white-space: nowrap; flex-shrink: 0;
}
.qb-btn:hover { background: var(--gold-dark); }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip { padding: 4rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.feature-item {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow); transition: var(--trans);
  border-bottom: 3px solid transparent;
}
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-bottom-color: var(--gold); }
.feature-icon { width: 54px; height: 54px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.8; }
.feature-item h4 { color: var(--navy); margin-bottom: .4rem; font-size: 1rem; }
.feature-item p { font-size: .825rem; color: var(--gray-dark); line-height: 1.5; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--r); width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--gold); color: var(--white); padding: 1.5rem 1.75rem;
  text-align: center; border-radius: var(--r); box-shadow: var(--shadow-h);
}
.about-badge .num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray-dark); margin-bottom: 1rem; line-height: 1.8; }
.about-stats { display: flex; gap: 2.5rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.stat .num { font-family: var(--font-h); font-size: 2.2rem; color: var(--navy); font-weight: 700; line-height: 1; }
.stat .unit { color: var(--gold); }
.stat .lbl { font-size: .75rem; color: var(--gray-dark); text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.room-card { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--trans); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); }
.room-card-img { position: relative; overflow: hidden; height: 220px; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-price-badge { position: absolute; top: 1rem; right: 1rem; background: var(--navy); color: var(--white); padding: .38rem .75rem; border-radius: var(--r); font-size: .78rem; font-weight: 600; }
.room-price-badge span { color: var(--gold); font-size: 1.05rem; font-family: var(--font-h); }
.room-card-body { padding: 1.5rem; }
.room-card-body h3 { margin-bottom: .45rem; font-size: 1.2rem; }
.room-card-body p { font-size: .85rem; color: var(--gray-dark); margin-bottom: 1rem; line-height: 1.6; }
.room-amenities { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.room-amenity { font-size: .75rem; color: var(--gray-dark); display: flex; align-items: center; gap: .3rem; }
.room-amenity::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.room-card-actions { display: flex; gap: .75rem; }
.room-card-actions .btn { flex: 1; text-align: center; padding: .6rem .5rem; font-size: .8rem; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.amenity-card { text-align: center; padding: 1.75rem 1rem; border: 1px solid var(--gray-light); border-radius: var(--r); transition: var(--trans); }
.amenity-card:hover { border-color: var(--gold); background: var(--off-white); transform: translateY(-3px); }
.amenity-icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--gold); }
.amenity-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.amenity-card h4 { font-size: .9rem; color: var(--navy); }

/* ============================================================
   RESTAURANT
   ============================================================ */
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.restaurant-image img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--r); }
.restaurant-info h2 { margin-bottom: 1.25rem; }
.restaurant-info p { color: var(--gray-dark); line-height: 1.8; margin-bottom: 1rem; }
.restaurant-hours {
  background: var(--off-white); padding: 1.25rem 1.5rem; border-radius: var(--r);
  margin: 1.5rem 0; border-left: 3px solid var(--gold);
}
.restaurant-hours h4 { margin-bottom: .75rem; font-size: .95rem; }
.hour-row { display: flex; justify-content: space-between; font-size: .875rem; padding: .28rem 0; color: var(--gray-dark); }
.hour-row span:last-child { font-weight: 600; color: var(--text); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); color: var(--white); }
.testimonials-section .section-heading h2 { color: var(--white); }
.testimonials-section .section-heading p { color: rgba(255,255,255,.65); }
.testimonials-slider { overflow: hidden; }
.testimonials-track { display: flex; transition: transform .5s ease; }
.testimonial-card { min-width: 100%; padding: 1.5rem 2rem 2rem; text-align: center; }
.testimonial-card blockquote {
  font-family: var(--font-h); font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--white); font-style: italic; line-height: 1.85;
  max-width: 720px; margin: 0 auto 1.5rem;
}
.testimonial-card blockquote::before { content: '\201C'; color: var(--gold); font-size: 3.5rem; line-height: 0; vertical-align: -.65em; margin-right: .15em; }
.testimonial-author { color: var(--gold); font-weight: 600; font-size: .95rem; }
.testimonial-room { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .25rem; }
.testimonial-stars { color: #FFD700; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.test-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; }
.test-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: var(--trans); }
.test-dot.active { background: var(--gold); }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { background: var(--off-white); }
.google-rating { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 2rem; }
.rating-big { font-family: var(--font-h); font-size: 4.5rem; color: var(--navy); line-height: 1; font-weight: 700; }
.rating-info { text-align: left; }
.rating-stars { color: #FBBC04; font-size: 1.4rem; letter-spacing: 2px; }
.rating-count { font-size: .85rem; color: var(--gray-dark); }
.google-logo { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: .3rem; margin-top: .3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card { background: var(--white); padding: 1.5rem; border-radius: var(--r); box-shadow: var(--shadow); }
.review-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .73rem; color: var(--gray); }
.review-stars { color: #FBBC04; font-size: .9rem; margin-bottom: .5rem; letter-spacing: 2px; }
.review-text { font-size: .865rem; color: var(--gray-dark); line-height: 1.65; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }
.reviews-cta a { font-size: .85rem; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.reviews-cta a:hover { color: var(--gold); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: center; }
.location-info h2 { margin-bottom: 1.25rem; }
.contact-list { margin: 1.5rem 0; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--gray-light); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-item-text strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: .15rem; }
.contact-item-text a { color: var(--text); transition: var(--trans); }
.contact-item-text a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   SPECIAL OFFER BANNER
   ============================================================ */
.offer-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2zm0-30V0h-2v4h-4v2h4v4h2V6h4V4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.offer-banner .eyebrow { color: var(--gold); margin-bottom: .75rem; }
.offer-banner h2 { color: var(--white); margin-bottom: 1rem; }
.offer-banner p { max-width: 550px; margin: 0 auto 2rem; color: rgba(255,255,255,.8); }
.offer-price { font-family: var(--font-h); color: var(--gold); margin-bottom: 1.5rem; }
.offer-price strong { font-size: 2.8rem; }
.offer-price span { font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0D1C30; color: rgba(255,255,255,.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-name { font-family: var(--font-h); font-size: 1.5rem; color: var(--white); }
.footer-brand .logo-sub { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: .65rem; margin-top: 1.25rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.social-link:hover { background: var(--gold); color: var(--white); }
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-b); }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; transition: var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item { display: flex; gap: .65rem; font-size: .875rem; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; stroke: var(--gold); fill: none; stroke-width: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: .75rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 2000; align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 8px; width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--gray-light); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-header h3 { font-size: 1.3rem; }
.modal-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gray-light); font-size: 1.3rem; line-height: 1; transition: var(--trans); }
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-body { padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .85rem; }
.form-group label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: .68rem .9rem; border: 1px solid var(--gray-light); border-radius: var(--r);
  font-size: .95rem; transition: var(--trans); background: var(--white); color: var(--text);
  height: 2.9rem; box-sizing: border-box;
}
.form-group select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9E9E' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.4rem; cursor: pointer;
}
.form-group textarea { height: auto; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: .9rem; background: var(--navy); color: var(--white);
  border-radius: var(--r); font-size: .95rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; transition: var(--trans);
}
.form-submit:hover { background: var(--gold); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
.form-success svg { width: 52px; height: 52px; margin: 0 auto 1rem; stroke: #27ae60; fill: none; stroke-width: 2; }
.form-success h4 { color: #27ae60; margin-bottom: .5rem; }
.form-success p { color: var(--gray-dark); font-size: .9rem; }
.success-msg { color: #27ae60; text-align: center; padding: 1rem; font-weight: 600; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy);
  padding: 1.25rem 0; z-index: 9999; transform: translateY(110%);
  transition: transform .4s ease; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-accept { padding: .5rem 1.35rem; background: var(--gold); color: var(--white); border-radius: var(--r); font-size: .85rem; font-weight: 600; transition: var(--trans); }
.cookie-accept:hover { background: var(--gold-dark); }
.cookie-decline { padding: .5rem 1.1rem; background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r); font-size: .85rem; font-weight: 600; transition: var(--trans); }
.cookie-decline:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px; position: relative; display: flex; align-items: flex-end;
  padding-bottom: 3rem; overflow: hidden; background: var(--navy);
  margin-top: 0; /* no top offset since padding-top added to body */
}
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .38; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,45,79,.9) 0%, rgba(27,45,79,.3) 100%); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 .4rem; }
.page-hero-content h1 { color: var(--white); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gallery-filter-btn { padding: .45rem 1.1rem; border: 1px solid var(--gray-light); border-radius: 50px; font-size: .82rem; color: var(--gray-dark); transition: var(--trans); background: var(--white); }
.gallery-filter-btn.active, .gallery-filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { overflow: hidden; border-radius: var(--r); cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(27,45,79,.45); opacity: 0; transition: var(--trans); display: flex; align-items: center; justify-content: center; color: var(--white); }
.gallery-item-overlay svg { width: 36px; height: 36px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 3000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--white); background: rgba(255,255,255,.1); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: var(--trans); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); background: rgba(255,255,255,.1); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2.5; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.event-card { padding: 2rem; border: 1px solid var(--gray-light); border-radius: var(--r); transition: var(--trans); }
.event-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.event-card-icon { width: 54px; height: 54px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.event-card-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.event-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.event-card p { color: var(--gray-dark); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-block h2 { margin-bottom: 1rem; }
.contact-info-block p { color: var(--gray-dark); margin-bottom: 1.5rem; line-height: 1.8; }
.contact-form-block h3 { margin-bottom: 1.5rem; }

/* ============================================================
   ACCOMMODATION PAGE
   ============================================================ */
.room-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--gray-light); }
.room-detail:last-child { border-bottom: none; }
.room-detail:nth-child(even) .room-detail-img { order: 2; }
.room-detail:nth-child(even) .room-detail-info { order: 1; }
.room-detail-img { border-radius: var(--r); overflow: hidden; }
.room-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.room-detail-info .eyebrow { margin-bottom: .5rem; }
.room-detail-info h2 { margin-bottom: 1rem; }
.room-detail-info p { color: var(--gray-dark); line-height: 1.8; margin-bottom: 1.25rem; }
.room-detail-price { font-family: var(--font-h); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.room-detail-price .price-val { font-size: 2.5rem; color: var(--gold); }
.room-detail-price .price-night { font-size: 1rem; color: var(--gray); font-style: italic; }
.amenities-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.am-tag { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 50px; padding: .3rem .8rem; font-size: .78rem; color: var(--gray-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid, .restaurant-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-menu { gap: 1.25rem; }
  .nav-link { font-size: .78rem; }
}

@media (max-width: 960px) {
  /* Switch to hamburger earlier to prevent nav overflow */
  .nav-menu {
    display: none; position: fixed; inset: 0; background: var(--navy);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; z-index: 1000;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .nav-right .nav-book-btn { display: none; }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero-slider { height: 70vh; min-height: 500px; }
  .about-grid, .restaurant-grid, .location-grid, .contact-layout, .room-detail { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 300px; }
  .about-badge { bottom: 0; right: 0; }
  .about-stats { gap: 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .qb-form { flex-direction: column; }
  .qb-field { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail:nth-child(even) .room-detail-img,
  .room-detail:nth-child(even) .room-detail-info { order: unset; }
  .room-detail { gap: 2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .features-grid, .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .slider-prev, .slider-next { display: none; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 1rem; }
}

.price-note { font-size: .72rem; color: var(--gray); font-style: italic; display: block; margin-top: .3rem; margin-bottom: 1rem; }
.price-note:empty { display: none; margin: 0; }
.room-detail-price { margin-bottom: .4rem !important; }
.room-detail-price + .price-note { margin-bottom: 1.25rem; }

/* ── Video Tour section ── */
.video-tour-section { background: var(--off-white); }
.video-tour-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-tour-text h2 { margin-top: .75rem; }
.video-tour-text p { color: var(--gray); margin-top: 1rem; }
.video-tour-wrap {
  display: flex;
  justify-content: center;
}
.video-tour-wrap video {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: var(--shadow-h);
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #000;
}
@media (max-width: 768px) {
  .video-tour-inner { grid-template-columns: 1fr; gap: 2rem; }
  .video-tour-wrap video { max-width: 300px; }
}

/* inner-page body offset for fixed nav */
.inner-page { padding-top: 80px; }

/* ── Language-section visibility ── */
html[lang="en"] .lang-sr { display: none; }
html[lang="sr"] .lang-en { display: none; }
