/* ============================================================
   PENSIUNEA GAROFIȚA — IAȘI
   Redesign stylesheet — warm rustic-authentic, refined green + gold
   ============================================================
   PALETTE
   Ink          : #29241A
   Cream BG     : #F4EEE1
   Paper        : #FBF8F1
   Forest Green : #33502F   (dark: #263D24, deep band: #2A4227)
   Gold         : #B8893B   (soft: #D9C08F)
   Walnut       : #241F16   (footer)
   TYPE
   Display : 'Marcellus', serif
   Body    : 'Karla', sans-serif
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Karla', sans-serif;
  color: #29241A;
  background: #F4EEE1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: #33502F; }
a:hover { color: #B8893B; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Marcellus', serif; font-weight: 400; line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { text-wrap: pretty; }

/* ---- ICONS ---- */
.ic {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #B8893B;
  margin-bottom: 18px;
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(184,137,59,0.5);
}
.section-title {
  text-align: center;
  color: #29241A;
  margin-bottom: 14px;
}
.section-subtitle {
  text-align: center;
  color: #6E6754;
  font-size: 1.02rem;
  margin-bottom: 64px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.divider {
  width: 8px;
  height: 8px;
  background: #B8893B;
  margin: 0 auto 22px;
  transform: rotate(45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 2px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: #33502F;
  color: #F4EEE1;
}
.btn-primary:hover { background: #263D24; color: #fff; }
.btn-gold {
  background: #B8893B;
  color: #FDFAF2;
}
.btn-gold:hover { background: #9C7128; color: #fff; }
.btn-outline {
  background: transparent;
  color: #33502F;
  border: 1px solid rgba(51,80,47,0.55);
  padding: 15px 33px;
}
.btn-outline:hover { border-color: #33502F; background: #33502F; color: #F4EEE1; }

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(249,245,236,0.97);
  border-bottom-color: rgba(60,50,30,0.12);
  backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 36px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  color: #E6C98C;
  flex-shrink: 0;
  transition: all 0.4s;
  padding-bottom: 2px;
}
#header.scrolled .logo-icon {
  border-color: rgba(51,80,47,0.5);
  color: #B8893B;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: 'Marcellus', serif;
  font-size: 1.12rem;
  color: #fff;
  transition: color 0.4s;
  letter-spacing: 0.02em;
}
.logo-location {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.4s;
  font-weight: 600;
}
#header.scrolled .logo-name { color: #29241A; }
#header.scrolled .logo-location { color: #B8893B; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: #D9C08F;
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
#header.scrolled .nav-links a { color: #3B3527; text-shadow: none; }
#header.scrolled .nav-links a:hover { color: #33502F; }
#header.scrolled .nav-links a::after { background: #B8893B; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-left: 16px;
}
#header.scrolled .lang-toggle { border-color: rgba(60,50,30,0.25); }
.lang-btn {
  padding: 7px 12px;
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
#header.scrolled .lang-btn { color: #6E6754; }
.lang-btn.active,
#header.scrolled .lang-btn.active {
  background: #B8893B;
  color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
#header.scrolled .menu-toggle span { background: #29241A; box-shadow: none; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #241F16;
}
.slides-container { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.06);
}
.slide.active {
  opacity: 1;
  animation: zoomIn 9s ease forwards;
}
@keyframes zoomIn {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(20,16,8,0.42), rgba(20,16,8,0) 75%),
    linear-gradient(
      to bottom,
      rgba(20,16,8,0.38) 0%,
      rgba(20,16,8,0.24) 35%,
      rgba(20,16,8,0.42) 68%,
      rgba(20,16,8,0.74) 100%
    );
}
.slide:nth-child(1) { background-image: url('../images/hero/hero-1.webp'); }
.slide:nth-child(2) { background-image: url('../images/hero/hero-2.webp'); }
.slide:nth-child(3) { background-image: url('../images/hero/hero-3.webp'); }

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FDFAF2;
  padding: 0 24px;
  z-index: 10;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E6C98C;
  margin-bottom: 28px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-badge::before, .hero-badge::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(230,201,140,0.6);
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: #FFFDF7;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55), 0 8px 44px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  max-width: 900px;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero-title span { color: #EFB95C; }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  opacity: 0.93;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 20px rgba(0,0,0,0.65);
  font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.65) !important;
  color: #fff !important;
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}

/* Hero phone badge */
.hero-trust {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.hero-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  padding: 13px 26px;
  color: #fff;
  background: rgba(20,16,8,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-phone-badge:hover {
  background: rgba(20,16,8,0.45);
  border-color: rgba(230,201,140,0.7);
  color: #fff;
}
.hero-phone-icon { display: flex; color: #E6C98C; }
.hero-phone-icon .ic { width: 24px; height: 24px; }
.hero-phone-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.hero-phone-label {
  font-size: 0.62rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
}
.hero-phone-number {
  font-family: 'Marcellus', serif;
  font-size: 1.35rem;
  letter-spacing: 1px;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 20;
}
.dot {
  width: 26px; height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.dot.active { background: #E6C98C; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover { border-color: #E6C98C; color: #E6C98C; background: rgba(20,16,8,0.3); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

/* Scroll Down Indicator */
.scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 20;
  animation: drift 2.4s infinite ease-in-out;
}
.scroll-hint svg { width: 16px; height: 16px; }
@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ================================================================
   ABOUT — deep green band
   ================================================================ */
#about {
  background: #2A4227;
  color: #EFE9DA;
  padding: 110px 24px;
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,192,143,0.4), transparent);
}
.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 88px;
  align-items: center;
}
.about-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #D9C08F;
  margin-bottom: 18px;
}
.about-kicker::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(217,192,143,0.45);
}
.about-text h2 { color: #FDFAF2; margin-bottom: 26px; }
.about-text p { line-height: 1.85; opacity: 0.88; margin-bottom: 18px; font-size: 1.02rem; max-width: 56ch; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid rgba(239,233,218,0.16);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
  display: flex;
  color: #D9C08F;
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 0.95rem; margin-bottom: 3px; font-weight: 700; color: #FDFAF2; }
.feature-text span { font-size: 0.85rem; opacity: 0.68; line-height: 1.5; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(239,233,218,0.18);
}
.stat-card {
  padding: 40px 28px;
  text-align: center;
}
.stat-card:nth-child(1) { border-right: 1px solid rgba(239,233,218,0.18); border-bottom: 1px solid rgba(239,233,218,0.18); }
.stat-card:nth-child(2) { border-bottom: 1px solid rgba(239,233,218,0.18); }
.stat-card:nth-child(3) { border-right: 1px solid rgba(239,233,218,0.18); }
.stat-number {
  font-family: 'Marcellus', serif;
  font-size: 2.7rem;
  color: #D9C08F;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.62;
  margin-top: 12px;
  line-height: 1.5;
}

/* ================================================================
   GALLERY
   ================================================================ */
#galerie {
  padding: 110px 0 120px;
  background: #FBF8F1;
}
#galerie .section-kicker,
#galerie .section-title,
#galerie .divider,
#galerie .section-subtitle { padding: 0 24px; }
.gallery-strip-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-grid {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.gallery-item {
  flex-shrink: 0;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-item-clone { pointer-events: none; cursor: default; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,16,8,0);
  transition: background 0.3s ease;
}
.gallery-item:not(.gallery-item-clone):hover::after {
  background: rgba(20,16,8,0.28);
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(18,15,9,0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
#lightbox.open { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 88vh;
}
#lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lbImgIn 0.2s ease;
  display: block;
}
@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-close {
  position: fixed;
  top: 22px; right: 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 9010;
}
.lb-close:hover { border-color: #D9C08F; color: #D9C08F; }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 1.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 9010;
}
.lb-arrow:hover { border-color: #D9C08F; color: #D9C08F; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-counter {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 3px;
  z-index: 9010;
}

/* ================================================================
   ROOMS & PRICES
   ================================================================ */
#camere {
  padding: 110px 24px 120px;
  background: #F4EEE1;
}
.rooms-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.room-card {
  background: #FBF8F1;
  border: 1px solid rgba(60,50,30,0.14);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(41,36,26,0.28);
  border-color: rgba(184,137,59,0.45);
  color: inherit;
}

/* ---- Room card carousel ---- */
.room-carousel {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.rc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s ease;
}
.rc-slide.active { opacity: 1; }
.room-card:hover .rc-slide.active { transform: scale(1.04); }
.rc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,16,8,0.45);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.room-carousel:hover .rc-btn { opacity: 1; }
.rc-btn:hover { background: rgba(20,16,8,0.75); }
.rc-prev { left: 10px; }
.rc-next { right: 10px; }
.rc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.rc-dot {
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.rc-dot.active { background: #fff; }

.room-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(251,248,241,0.94);
  color: #33502F;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.room-body {
  padding: 30px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-body h3 { margin-bottom: 12px; color: #29241A; font-size: 1.45rem; }
.room-body > p { font-size: 0.94rem; color: #6E6754; line-height: 1.7; flex: 1; margin-bottom: 22px; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.amenity-tag {
  border: 1px solid rgba(51,80,47,0.3);
  color: #33502F;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  background: transparent;
}

/* ---- Room card perks strip ---- */
.room-perks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  margin: 0 0 22px;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(184,137,59,0.45);
}
.room-perks-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8893B;
}
.perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #55503F;
}
.perk-tag .ic { width: 16px; height: 16px; color: #B8893B; }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(60,50,30,0.14);
  padding-top: 22px;
  margin-top: auto;
}
.price-label {
  font-size: 0.6rem;
  color: #9A9280;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 4px;
}
.price-value {
  font-family: 'Marcellus', serif;
  font-size: 2.4rem;
  color: #33502F;
  line-height: 1;
  white-space: nowrap;
}
.price-value span {
  font-size: 0.9rem;
  font-family: 'Karla', sans-serif;
  color: #6E6754;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.room-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B8893B;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid rgba(184,137,59,0.5);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.room-card:hover .room-cta { color: #9C7128; border-bottom-color: #9C7128; gap: 12px; }
.room-cta svg { width: 15px; height: 15px; }

.rooms-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.86rem;
  color: #9A9280;
}

/* ================================================================
   GOOGLE MAPS / LOCATION
   ================================================================ */
#locatie {
  padding: 110px 24px;
  background: #FBF8F1;
  border-top: 1px solid rgba(60,50,30,0.1);
}
.map-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.map-container {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(60,50,30,0.16);
  height: 480px;
  filter: saturate(0.85);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-info .about-kicker { color: #B8893B; }
.map-info .about-kicker::after { background: rgba(184,137,59,0.45); }
.map-info h2 { color: #29241A; margin-bottom: 22px; }
.map-info > p { color: #6E6754; line-height: 1.75; margin-bottom: 34px; font-size: 0.98rem; }
.map-details { display: flex; flex-direction: column; margin-bottom: 36px; }
.map-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(60,50,30,0.12);
}
.map-detail-item:first-child { border-top: 1px solid rgba(60,50,30,0.12); }
.map-detail-icon {
  display: flex;
  color: #B8893B;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-detail-text strong {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9A9280;
  margin-bottom: 4px;
  font-weight: 700;
}
.map-detail-text span { font-size: 0.96rem; color: #29241A; font-weight: 500; }

/* ================================================================
   ATTRACTIONS
   ================================================================ */
#atractii {
  padding: 110px 24px 120px;
  background: #F4EEE1;
}
.attractions-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.attraction-card {
  background: #FBF8F1;
  border: 1px solid rgba(60,50,30,0.14);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -18px rgba(41,36,26,0.25);
  border-color: rgba(184,137,59,0.4);
}
.attraction-img {
  height: 215px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.attraction-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,8,0.25) 0%, transparent 45%);
  transition: opacity 0.3s;
}
.attraction-category {
  position: absolute;
  bottom: 14px; left: 18px;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.attraction-category::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #E6C98C;
}
.attraction-body { padding: 26px 26px 30px; }
.attraction-body h3 { color: #29241A; margin-bottom: 12px; font-size: 1.22rem; }
.attraction-body p { font-size: 0.9rem; color: #6E6754; line-height: 1.7; }

/* Attraction image backgrounds */
.att-palat        { background-image: url('../images/atractii/palatulculturii.jpg'); }
.att-catedrala    { background-image: url('../images/atractii/catedrala.jpg'); }
.att-botanica     { background-image: url('../images/atractii/gradinabotanica.jpg'); }
.att-teatru       { background-image: url('../images/atractii/teatrul%20national.webp'); }
.att-copou        { background-image: url('../images/atractii/parculcopou.jpg'); }
.att-unirii       { background-image: url('../images/atractii/piataunirii.jpg'); }
.att-treiiierarhi { background-image: url('../images/atractii/manastireatreiierarhi.jpg'); }
.att-cetatuia     { background-image: url('../images/atractii/manastireacetatuia.jpg'); }
.att-dosoftei     { background-image: url('../images/atractii/casadosoftei.jpg'); }

/* ================================================================
   BOOKING BADGE
   ================================================================ */
.booking-badge {
  display: inline-flex;
  align-items: stretch;
  background: #003580;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.booking-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.bb-text {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.bb-brand { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.3px; }
.bb-award { color: rgba(255,255,255,0.72); font-size: 0.66rem; }
.bb-score {
  background: #1a56c4;
  color: #fff;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 58px;
}
.bb-score #booking-score-val {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.bb-score span:last-child {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}
.booking-badge--sm .bb-text { padding: 8px 13px; }
.booking-badge--sm .bb-brand { font-size: 0.72rem; }
.booking-badge--sm .bb-award { font-size: 0.58rem; }
.booking-badge--sm .bb-score { padding: 8px 13px; min-width: 50px; }
.booking-badge--sm .bb-score #booking-score-val { font-size: 1.25rem; }

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: #241F16;
  color: rgba(244,238,225,0.82);
  padding: 76px 24px 36px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-stars { color: #D9C08F; font-size: 0.82rem; letter-spacing: 6px; margin-bottom: 10px; }
.footer-brand .logo-name-footer {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  color: #FDFAF2;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; opacity: 0.6; max-width: 300px; }
.footer-col h4 {
  color: #D9C08F;
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(244,238,225,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: #D9C08F; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(244,238,225,0.72);
  line-height: 1.5;
}
.footer-contact-item > span:first-child,
.footer-contact-item .ic { color: #D9C08F; flex-shrink: 0; }
.footer-contact-item .ic { width: 17px; height: 17px; margin-top: 2px; }
.footer-brand .booking-badge--sm { margin-top: 24px; display: inline-flex; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,225,0.12);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(244,238,225,0.45);
}

/* ================================================================
   ROOM DETAIL PAGES
   ================================================================ */
.room-hero {
  height: 62vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #241F16;
  touch-action: pan-y;
}
.rhc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.rhc-slide.active { opacity: 1; }
.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,8,0.3), rgba(20,16,8,0.14) 40%, rgba(20,16,8,0.72));
}
.room-hero-content {
  position: relative;
  z-index: 2;
  color: #FDFAF2;
  padding: 56px;
  max-width: 860px;
}
.room-hero-content .hero-badge { margin-bottom: 16px; justify-content: flex-start; }
.room-hero-content .hero-badge::after { display: none; }
.room-hero-content h1 { margin-bottom: 12px; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.room-hero-content > p { opacity: 0.88; font-size: 1.05rem; line-height: 1.6; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

.rhc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s;
}
.rhc-btn:hover { border-color: #E6C98C; color: #E6C98C; }
.rhc-prev { left: 24px; }
.rhc-next { right: 24px; }
.rhc-dots {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.rhc-dot {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.rhc-dot.active { background: #E6C98C; }

.room-detail-section {
  padding: 90px 24px;
  background: #F4EEE1;
}
.room-detail-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 64px;
  align-items: start;
}
.room-detail-info h2 { color: #29241A; margin-bottom: 24px; }
.room-detail-info > p { color: #55503F; line-height: 1.85; margin-bottom: 18px; font-size: 1rem; }
.detail-amenities { margin-top: 40px; padding-top: 34px; border-top: 1px solid rgba(60,50,30,0.14); }
.detail-amenities h3 { color: #29241A; margin-bottom: 20px; font-size: 1.2rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.amenity-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.93rem;
  color: #55503F;
}
.amenity-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #B8893B;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Contact CTA Card */
.contact-cta-card {
  background: #FBF8F1;
  border: 1px solid rgba(60,50,30,0.16);
  border-top: 3px solid #B8893B;
  border-radius: 2px;
  padding: 36px 30px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.cta-price-display {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(60,50,30,0.13);
}
.cta-price-display .price-label { margin-bottom: 8px; }
.cta-price-display .big-price {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  color: #33502F;
  line-height: 1;
}
.cta-price-display .big-price span:last-child {
  font-size: 1.3rem;
  color: #6E6754;
}
.cta-perks {
  margin-bottom: 22px;
  padding-bottom: 6px;
}
.cta-perks-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8893B;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-perk-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #55503F;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(184,137,59,0.35);
}
.cta-perk-item:last-child { border-bottom: none; }
.cta-perk-item .ic { width: 17px; height: 17px; color: #B8893B; }

.cta-message {
  background: transparent;
  border: 1px solid rgba(60,50,30,0.13);
  border-radius: 2px;
  padding: 22px 20px;
  margin-bottom: 24px;
}
.cta-message p {
  font-size: 0.88rem;
  color: #55503F;
  line-height: 1.65;
  margin-bottom: 12px;
}
.cta-call-box {
  background: #FDFBF5;
  border: 1px solid rgba(51,80,47,0.4);
  border-radius: 2px;
  padding: 16px 20px;
}
.cta-call-label {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9A9280;
  margin-bottom: 8px;
  font-weight: 700;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Marcellus', serif;
  font-size: 1.55rem;
  color: #33502F;
}
.cta-phone a { color: inherit; }
.cta-phone a:hover { color: #B8893B; }
.cta-phone-icon { display: flex; color: #B8893B; }
.cta-phone-icon .ic { width: 21px; height: 21px; }
.cta-note { font-size: 0.78rem; color: #9A9280; margin-top: 18px; line-height: 1.55; }
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #33502F;
  color: #F4EEE1;
  padding: 17px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-call:hover { background: #263D24; color: #fff; }
.btn-call svg { width: 18px; height: 18px; }

.back-strip {
  text-align: center;
  padding: 0 24px 80px;
  background: #F4EEE1;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .map-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .map-container { height: 380px; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .rooms-grid { grid-template-columns: 1fr 1fr; max-width: 760px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 18px; }
  .logo-name { font-size: 1rem; }
  .lang-toggle { margin-left: 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(249,245,236,0.98);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid rgba(60,50,30,0.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #29241A !important; font-size: 0.86rem; text-shadow: none !important; }
  .menu-toggle { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 460px; }
  .about-features { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .slider-arrow { display: none; }
  .room-detail-inner { grid-template-columns: 1fr; }
  .contact-cta-card { position: static; }
  .room-hero-content { padding: 32px 24px; }
  .gallery-item { height: 220px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); max-width: 100%; }
  .hero-badge { flex-wrap: wrap; justify-content: center; letter-spacing: 3px; font-size: 0.66rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .gallery-item { height: 180px; }
}

/* ================================================================
   MOBILE HORIZONTAL-OVERFLOW GUARD
   Prevents any element from forcing the page wider than the screen
   (which was clipping the hero text on phones). Desktop is untouched.
   ================================================================ */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100%; }

  /* No top-level section may exceed the viewport width */
  #hero, #about, #galerie, #camere, #locatie, #atractii, #contact, #footer,
  .nav-inner, .hero-content, .about-inner, .map-wrapper, .map-info,
  .footer-inner, .footer-grid, .rooms-grid, .attractions-grid,
  .gallery-strip-wrap { max-width: 100%; }

  /* Let flex / grid children shrink below their intrinsic content width
     (flex default min-width:auto is the most common overflow cause) */
  .nav-inner > *, .hero-content > *, .about-inner > *, .about-features > *,
  .map-wrapper > *, .footer-grid > *, .footer-contact-item,
  .room-card, .attraction-card, .booking-badge { min-width: 0; }

  /* Media never wider than its container */
  img, iframe, video { max-width: 100%; }

  /* Long words / labels wrap instead of pushing width out */
  .hero-title, .hero-subtitle, .section-title, .footer-contact-item span,
  .bb-award, .room-card * { overflow-wrap: break-word; }
}

