/* ============================================================
   PENSIUNEA GAROFITA - IASI
   Main Stylesheet
   ============================================================
   COLORS:
   Primary Green  : #2C5F2E
   Gold Accent    : #D4A853
   Cream BG       : #F8F5F0
   Dark Text      : #1A1A1A
   Sage           : #6B8E7F
   ============================================================ */

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

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #F8F5F0;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: #2C5F2E;
}
.section-subtitle {
  text-align: center;
  color: #6B8E7F;
  font-size: 1rem;
  margin-bottom: 56px;
  font-style: italic;
}
.divider {
  width: 64px;
  height: 3px;
  background: #D4A853;
  margin: 16px auto 0;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #2C5F2E;
  color: #fff;
}
.btn-primary:hover { background: #1e4220; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,95,46,0.3); }
.btn-gold {
  background: #D4A853;
  color: #fff;
}
.btn-gold:hover { background: #b88c3a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,83,0.35); }
.btn-outline {
  background: transparent;
  color: #2C5F2E;
  border: 2px solid #2C5F2E;
}
.btn-outline:hover { background: #2C5F2E; color: #fff; transform: translateY(-2px); }

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: #2C5F2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #D4A853;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s;
}
.logo-location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s;
}
#header.scrolled .logo-name { color: #2C5F2E; }
#header.scrolled .logo-location { color: #6B8E7F; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #D4A853;
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#header.scrolled .nav-links a { color: #1A1A1A; text-shadow: none; }
#header.scrolled .nav-links a:hover { color: #2C5F2E; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 16px;
}
#header.scrolled .lang-toggle {
  background: rgba(44,95,46,0.08);
  border-color: rgba(44,95,46,0.2);
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1A1A1A;
  transition: all 0.3s;
  cursor: pointer;
}
.lang-btn.active {
  background: #D4A853;
  color: #fff;
}
#header.scrolled .lang-btn { color: #6B8E7F; }
#header.scrolled .lang-btn.active { background: #D4A853; 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;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
#header.scrolled .menu-toggle span { background: #1A1A1A; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slides-container {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}
.slide.active {
  opacity: 1;
  animation: zoomIn 8s ease forwards;
}
@keyframes zoomIn {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
/* Overlay aplicat direct pe fiecare slide via pseudo-element */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.30) 28%,
    rgba(0,0,0,0.58) 58%,
    rgba(0,0,0,0.78) 100%
  );
}

/* Slide 1 */
.slide:nth-child(1) {
  background-image: url('../images/hero/hero-1.webp');
}
/* Slide 2 */
.slide:nth-child(2) {
  background-image: url('../images/hero/hero-2.webp');
}
/* Slide 3 */
.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: #fff;
  padding: 0 24px;
  z-index: 10;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,83,0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  text-shadow: 0 2px 32px rgba(0,0,0,0.75), 0 1px 6px rgba(0,0,0,0.55);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-title span { color: #D4A853; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  opacity: 0.92;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.65);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero phone badge */
.hero-trust {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.hero-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 12px 22px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-phone-badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.hero-phone-icon { font-size: 1.5rem; }
.hero-phone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-phone-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Booking.com badge */
.booking-badge {
  display: inline-flex;
  align-items: stretch;
  background: #003580;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.booking-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
}
.bb-text {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.bb-brand {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.bb-award {
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  letter-spacing: 0.2px;
}
.bb-score {
  background: #1a56c4;
  color: #fff;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 62px;
}
/* Numărul notei — Playfair Display, mai mare */
.bb-score #booking-score-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
/* "din 10" — mic, Inter */
.bb-score span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  margin-top: 3px;
  text-transform: uppercase;
}
/* Footer booking badge — variantă mai mică */
.booking-badge--sm .bb-text { padding: 7px 12px; }
.booking-badge--sm .bb-brand { font-size: 0.72rem; }
.booking-badge--sm .bb-award { font-size: 0.58rem; }
.booking-badge--sm .bb-score { padding: 7px 14px; min-width: 50px; }
.booking-badge--sm .bb-score #booking-score-val { font-size: 1.3rem; }

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: #D4A853; border-color: #D4A853; transform: scale(1.2); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.slider-arrow:hover { background: rgba(212,168,83,0.8); border-color: #D4A853; }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Scroll Down Indicator */
.scroll-hint {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 20;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   ABOUT STRIP
   ================================================================ */
#about {
  background: #2C5F2E;
  color: #fff;
  padding: 64px 24px;
}
.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { color: #D4A853; margin-bottom: 20px; }
.about-text p { line-height: 1.8; opacity: 0.9; margin-bottom: 16px; font-size: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.feature-text span { font-size: 0.82rem; opacity: 0.75; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.14); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #D4A853;
  display: block;
}
.stat-label { font-size: 0.82rem; opacity: 0.75; margin-top: 4px; line-height: 1.4; }

/* ================================================================
   ROOMS & PRICES
   ================================================================ */
#camere {
  padding: 96px 24px;
  background: #F8F5F0;
}

/* ---- EASY EDITABLE PRICES ---
   TO CHANGE PRICES: Update the values in the .price-value elements below
   Camera Simpla: currently 200 RON
   Camera Dubla:  currently 250 RON
   -------------------------------- */
.rooms-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.room-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.room-img-simpla {
  background-image: url('../images/camere/camera-simpla.webp');
}
.room-img-dubla {
  background-image: url('../images/camere/camera-dubla.webp');
}

/* ---- Room card carousel ---- */
.room-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.rc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.rc-slide.active { opacity: 1; }
.rc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,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(0,0,0,0.7); }
.rc-prev { left: 8px; }
.rc-next { right: 8px; }
.rc-dots {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}
.rc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.rc-dot.active { background: #fff; }

/* ---- Room hero carousel (pagini detaliu cameră) ---- */
.room-hero { overflow: hidden; }
.rhc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.rhc-slide.active { opacity: 1; }
.rhc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.rhc-btn:hover { background: rgba(0,0,0,0.65); }
.rhc-prev { left: 20px; }
.rhc-next { right: 20px; }
.rhc-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.rhc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.rhc-dot.active { background: #fff; }
.room-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #2C5F2E;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.room-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-body h3 { margin-bottom: 12px; color: #2C5F2E; }
.room-body p { font-size: 0.9rem; color: #555; line-height: 1.6; flex: 1; margin-bottom: 20px; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.amenity-tag {
  background: #F0F4F0;
  color: #2C5F2E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: auto;
}

.price-label { font-size: 0.68rem; color: #999; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2C5F2E;
  line-height: 1;
  white-space: nowrap;
}
.price-value span { font-size: 0.85rem; font-family: 'Playfair Display', serif; color: #2C5F2E; font-weight: 400; opacity: 0.7; }
.room-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D4A853;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.3s;
}
.room-card:hover .room-cta { background: #b88c3a; }
.room-cta svg { width: 16px; height: 16px; }

.rooms-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: #888;
  font-style: italic;
}

/* ---- Room card perks strip ---- */
.room-perks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 20px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #FFFDF5, #FFF9EC);
  border-radius: 8px;
  border: 1px solid #EDD97A;
}
.room-perks-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9A7A2A;
  width: 100%;
  margin-bottom: 2px;
}
.perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #6B4E0A;
  background: rgba(212,168,83,0.18);
  padding: 3px 10px;
  border-radius: 12px;
}

/* ---- CTA perks box (room detail pages) ---- */
.cta-perks {
  background: linear-gradient(135deg, #FFFDF5, #FFF9EC);
  border: 1px solid #EDD97A;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.cta-perks-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9A7A2A;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.cta-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #5A3E0A;
  padding: 7px 0;
  border-bottom: 1px solid rgba(237,217,122,0.5);
}
.cta-perk-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ================================================================
   GOOGLE MAPS
   ================================================================ */
#locatie {
  padding: 96px 24px;
  background: #fff;
}
.map-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  height: 460px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-info h2 { color: #2C5F2E; margin-bottom: 10px; }
.map-info .divider { margin: 0 0 28px; }
.map-info p { color: #555; line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.map-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.map-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #F8F5F0;
  border-radius: 8px;
  border-left: 3px solid #D4A853;
}
.map-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.map-detail-text strong { display: block; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: #2C5F2E; margin-bottom: 3px; }
.map-detail-text span { font-size: 0.9rem; color: #444; }

/* ================================================================
   ATTRACTIONS
   ================================================================ */
#atractii {
  padding: 96px 24px;
  background: #F8F5F0;
}
.attractions-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.attraction-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.13);
}
.attraction-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.attraction-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.attraction-card:hover .attraction-img::after { opacity: 0.7; }
.attraction-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(212,168,83,0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.attraction-body { padding: 22px 22px 26px; }
.attraction-body h3 { color: #2C5F2E; margin-bottom: 10px; font-size: 1.1rem; }
.attraction-body p { font-size: 0.875rem; color: #555; line-height: 1.65; }

/* 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'); }

/* ================================================================
   GALLERY
   ================================================================ */
#galerie {
  padding: 96px 0;
  background: #fff;
}
#galerie .section-title,
#galerie .divider,
#galerie .section-subtitle {
  padding: 0 24px;
}
.gallery-strip-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 40px auto 0;
}
.gallery-grid {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.gallery-item {
  flex-shrink: 0;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  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(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 10px;
}
.gallery-item:not(.gallery-item-clone):hover::after {
  background: rgba(0,0,0,0.22);
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.93);
  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: 6px;
  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: 20px; right: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 9010;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 9010;
}
.lb-arrow:hover { background: rgba(212,168,83,0.85); border-color: #D4A853; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 2px;
  z-index: 9010;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 768px) {
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
}
@media (max-width: 768px) {
  .gallery-item { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-item { height: 170px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.85);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #D4A853;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; max-width: 280px; }
.footer-col h4 { color: #D4A853; font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: #D4A853; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; opacity: 0.75; }
.footer-contact-item span:first-child { color: #D4A853; flex-shrink: 0; }
.footer-brand .booking-badge--sm {
  margin-top: 20px;
  display: inline-flex;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}
.footer-stars { color: #D4A853; font-size: 1rem; margin-bottom: 4px; }
.footer-rating { font-size: 0.8rem; opacity: 0.7; }

/* ================================================================
   ROOM DETAIL PAGES  (camera-simpla.html / camera-dubla.html)
   ================================================================ */
.room-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}
.room-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px;
  max-width: 800px;
}
.room-hero-content .hero-badge { margin-bottom: 12px; }
.room-hero-content h1 { margin-bottom: 8px; }
.room-hero-content p { opacity: 0.85; font-size: 1.05rem; }

.room-detail-section {
  padding: 80px 24px;
  background: #F8F5F0;
}
.room-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.room-detail-info h2 { color: #2C5F2E; margin-bottom: 20px; }
.room-detail-info p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.detail-amenities { margin-top: 28px; }
.detail-amenities h3 { color: #2C5F2E; margin-bottom: 16px; font-size: 1.05rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #444; }
.amenity-item::before { content: '✓'; color: #2C5F2E; font-weight: 700; }

/* Contact CTA Card */
.contact-cta-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 96px;
  border-top: 4px solid #D4A853;
}
.cta-price-display {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.cta-price-display .price-label { font-size: 0.72rem; color: #999; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.cta-price-display .big-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2C5F2E;
  line-height: 1;
}
.cta-price-display .big-price span { font-size: 2rem; font-family: 'Playfair Display', serif; color: #2C5F2E; font-weight: 400; opacity: 0.7; }
.cta-message {
  background: #F0F4F0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.cta-message p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C5F2E;
}
.cta-phone-icon { font-size: 1.4rem; }
.cta-note { font-size: 0.8rem; color: #999; margin-top: 16px; font-style: italic; }
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #2C5F2E;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-call:hover { background: #1e4220; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,95,46,0.35); }
.btn-call svg { width: 20px; height: 20px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-container { height: 360px; }
  .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: 720px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .logo-name { font-size: 1rem; }
  .lang-toggle { margin-left: 0; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 24px; gap: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: #1A1A1A !important; font-size: 1rem; }
  .menu-toggle { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 440px; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .attractions-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .room-detail-inner { grid-template-columns: 1fr; }
  .contact-cta-card { position: static; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
