/* ==========================================================================
   APARTMAN ŠUMSKA TAJNA - MOKRA GORA
   Luxury Warm Beige & Brown Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Beige, Warm Brown, Cream, White */
  --bg-primary: #FAF7F2;
  --bg-secondary: #F3ECE2;
  --bg-card: #FFFFFF;
  --bg-dark: #2A1D15;
  --bg-overlay: rgba(42, 29, 21, 0.65);

  --text-main: #33261D;
  --text-muted: #6E5F54;
  --text-light: #9B8C80;
  --text-on-dark: #F7F3EE;

  --accent-gold: #C89D66;
  --accent-gold-hover: #B28650;
  --accent-warm-brown: #5C4033;
  --accent-deep-brown: #3E2723;
  --accent-cream: #EDE5D8;
  --booking-blue: #003580;
  --booking-blue-hover: #00224f;

  --border-light: rgba(200, 157, 102, 0.2);
  --border-subtle: #E6DFD5;

  --shadow-sm: 0 4px 12px rgba(62, 39, 35, 0.04);
  --shadow-md: 0 10px 30px rgba(62, 39, 35, 0.08);
  --shadow-lg: 0 20px 40px rgba(42, 29, 21, 0.12);
  --shadow-glow: 0 8px 25px rgba(200, 157, 102, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-deep-brown);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

p,
span,
a,
li,
button {
  overflow-wrap: break-word;
}

.subtitle {
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 0.9rem 0;
  background: #FAF7F2;
  box-shadow: none;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 2px 16px rgba(42, 29, 21, 0.10);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-deep-brown);
  letter-spacing: 0.5px;
}

.brand-text span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  justify-content: center;
}

.nav-mobile-actions {
  display: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: flex;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid var(--border-subtle);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-deep-brown) !important;
  color: #FFFFFF !important;
  box-shadow: var(--shadow-sm);
}

.btn-booking-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--booking-blue);
  color: #FFF;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-booking-nav:hover {
  background: var(--booking-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 53, 128, 0.3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-deep-brown);
  color: #FFF;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--accent-deep-brown);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--accent-deep-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-deep-brown);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--accent-deep-brown);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--accent-deep-brown);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-booking-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #003580;
  color: #FFF;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.4);
}

.btn-booking-hero:hover {
  background: #00224f;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 53, 128, 0.6);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  font-size: 1.2rem;
  color: var(--accent-deep-brown);
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-shrink: 0;
  order: 3;
}

.mobile-toggle:hover {
  background: var(--bg-secondary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 92vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 29, 21, 0.4) 0%, rgba(42, 29, 21, 0.65) 60%, rgba(42, 29, 21, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #FFF;
  text-align: center;
  max-width: 920px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 157, 102, 0.25);
  border: 1px solid rgba(200, 157, 102, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #F7E7CE;
}

.badge-separator {
  color: var(--accent-gold);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: #FAF7F2;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #E2D9CE;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Booking Banner Bar */
.booking-banner-bar {
  background: var(--accent-deep-brown);
  color: #FAF7F2;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.booking-banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.92rem;
}

.bb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gold-star {
  color: #E6A100;
}

.btn-sm-booking {
  background: var(--booking-blue);
  color: #FFF;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-sm-booking:hover {
  background: var(--booking-blue-hover);
}

/* Feature Badges Grid */
.specs-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.spec-icon-box {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm-brown);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.spec-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.spec-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* O Apartmanu Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 8px solid var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--accent-deep-brown);
  color: #FFF;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--accent-deep-brown);
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--accent-gold);
}

.about-cta-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Sobe & Prostorije Interactive Section */
.rooms-section {
  background: var(--bg-secondary);
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3.5rem 0;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-deep-brown);
  color: #FFF;
  border-color: var(--accent-deep-brown);
  box-shadow: var(--shadow-md);
}

.room-pane {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.room-pane.active {
  display: grid;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
}

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

.room-gallery-main:hover img {
  transform: scale(1.04);
}

.room-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: var(--accent-gold);
}

.room-details h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.room-tag {
  display: inline-block;
  background: var(--accent-cream);
  color: var(--accent-warm-brown);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.room-details p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.room-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
  background: var(--bg-primary);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.rf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.rf-item i {
  color: var(--accent-gold);
}

/* Lightbox Filterable Gallery */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-gold);
  color: var(--accent-deep-brown);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 29, 21, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-title {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.gallery-card-cat {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1rem;
}

/* Detailed Amenities / Sadržaj */
.amenities-section {
  background: var(--bg-secondary);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.amenity-box {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.amenity-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.amenity-box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.amenity-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Mokra Gora Local Sights */
.sights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sight-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sight-img {
  height: 200px;
  overflow: hidden;
}

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

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

.sight-content {
  padding: 1.5rem;
}

.sight-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.sight-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sight-dist {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-warm-brown);
  background: var(--bg-secondary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* Booking CTA Center (replaces calculator) */
.booking-cta-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.booking-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.booking-perks-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.booking-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-perk i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

/* Booking Calculator Section */
.booking-section {
  background: linear-gradient(135deg, #2A1D15 0%, #3E2723 100%);
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 157, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-info h2 {
  color: #FAF7F2;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.booking-info p {
  color: #D4C7BC;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 157, 102, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.perk-text h5 {
  color: #FFF;
  font-size: 1rem;
  font-family: var(--font-body);
}

.perk-text p {
  color: #A89A8E;
  font-size: 0.82rem;
  margin-bottom: 0;
}

.booking-card {
  background: #FFF;
  color: var(--text-main);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(200, 157, 102, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.price-summary {
  background: var(--bg-secondary);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border: 1px solid var(--border-subtle);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-deep-brown);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* Guest Reviews / Utisci */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #E6A100;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cream);
  color: var(--accent-warm-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-details h5 {
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.reviewer-details span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-deep-brown);
  font-size: 1.05rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-body {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

/* Contact & Map Section */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-boxes {
  display: grid;
  gap: 1.2rem;
}

.contact-box {
  background: var(--bg-card);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm-brown);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.contact-text p,
.contact-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-wrapper {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: #A89A8E;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-text {
  color: #FAF7F2;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FAF7F2;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #A89A8E;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.8rem;
  font-size: 0.85rem;
}

/* Floating WhatsApp / Phone / Booking Bar */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-booking {
  background: var(--booking-blue);
}

.float-wa {
  background: #25D366;
}

.float-phone {
  background: var(--accent-deep-brown);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 7, 5, 0.97);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 78vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.25s ease;
  object-fit: contain;
}

.lightbox-img.fading {
  opacity: 0;
  transform: scale(0.97);
}

.lightbox-caption {
  color: rgba(250, 247, 242, 0.85);
  margin-top: 1.1rem;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

/* Counter (e.g. "3 / 34") */
.lightbox-counter {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 29, 21, 0.7);
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  z-index: 10002;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 157, 102, 0.25);
}

/* Spinner */
.lightbox-spinner {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.lightbox-spinner.visible {
  display: flex;
}

.lb-spin {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(200, 157, 102, 0.25);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: lbSpin 0.75s linear infinite;
}

@keyframes lbSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(42, 29, 21, 0.65);
  color: #FFF;
  border: 1px solid rgba(200, 157, 102, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
  z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-gold);
  color: var(--accent-deep-brown);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-next {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-deep-brown);
  color: #FFF;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--accent-gold);
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Room Gallery Wrapper */
.room-gallery {
  display: flex;
  flex-direction: column;
}

/* Booking Options Buttons */
.booking-options-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

/* House Rules Section */
.rules-section {
  background: var(--bg-secondary);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.rule-card {
  background: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.rule-card-negative {
  border-color: rgba(180, 40, 40, 0.15);
}

.rule-card-negative:hover {
  border-color: rgba(180, 40, 40, 0.35);
}

.rule-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm-brown);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rule-card-negative .rule-icon {
  background: rgba(180, 40, 40, 0.08);
  color: #B42828;
}

.rule-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  color: var(--accent-deep-brown);
}

.rule-highlight {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.3rem !important;
  font-family: var(--font-body);
}

.rule-no {
  color: #B42828 !important;
}

.rule-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Responsive Media Queries */

/* Responsive Media Queries */

@media (max-width: 1200px) {

  .about-grid,
  .room-pane,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, box-shadow 0.3s ease;
    flex: none;
    justify-content: flex-start;
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 600px;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
  }

  .nav-menu .nav-link {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .nav-mobile-actions .btn-booking-nav {
    width: 100%;
    justify-content: center;
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* Scrollable tabs header on tablet & mobile */
  .tabs-header {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs-header::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  /* Room thumbnails horizontal touch scroll */
  .room-thumbnails {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .thumb {
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
    min-height: 560px;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    margin-bottom: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-glass-light,
  .hero-cta .btn-booking-hero {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }

  .about-img-main {
    width: 100%;
    height: 320px;
  }

  .about-img-sub {
    width: 60%;
    height: 180px;
    bottom: -20px;
  }

  .experience-badge {
    top: -15px;
    left: -10px;
    padding: 0.8rem 1.2rem;
  }

  .experience-badge .num {
    font-size: 1.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  /* Room pane small screen ("Otkrijte svaki kutak Šumska Tajna") */
  .rooms-section .section-title {
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  }

  .tabs-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin: 1.2rem 0 1.8rem 0;
  }

  .tab-btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .room-pane {
    padding: 1.25rem 0.9rem;
    border-radius: var(--radius-md);
    gap: 1.5rem;
  }

  .room-gallery-main {
    height: 220px;
    border-radius: var(--radius-sm);
  }

  .room-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
  }

  .room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .room-features-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.9rem;
    margin-bottom: 1rem;
  }

  .rf-item {
    font-size: 0.85rem;
  }

  /* Gallery: 2 col on small phones */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-card {
    height: 160px;
  }

  /* Always show card titles on touch screens */
  .gallery-card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(42, 29, 21, 0.9) 100%);
    padding: 1rem 0.8rem;
  }

  .gallery-card-title {
    font-size: 0.95rem;
  }

  .gallery-card-cat {
    font-size: 0.7rem;
  }

  .view-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    top: 0.5rem;
    right: 0.5rem;
  }

  /* Lightbox arrows - bigger tap area on mobile */
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-prev {
    left: 0.4rem;
    transform: translateY(-50%);
  }

  .lightbox-prev:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .lightbox-next {
    right: 0.4rem;
    transform: translateY(-50%);
  }

  .lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .lightbox-modal {
    padding: 1rem 0.5rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .spec-card {
    padding: 0.9rem 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Floating quick buttons repositioning for mobile */
  .floating-actions {
    bottom: 1.2rem;
    right: 1.2rem;
    gap: 0.6rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}