/* ═══════════════════════════════════════════════
   PENSIUNEA DOINA — EȘELNIȚA
   Mobile-first responsive design
   ═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --river: #2d5f7a;
  --river-deep: #1a3d52;
  --river-light: #5b9ab5;
  --sand: #e8dcc8;
  --sand-light: #f5efe3;
  --earth: #8b6b47;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --fog: #d0dde5;
  --text-dark: #1c2b35;
  --text-mid: #4a6070;
  --white: #fdfaf6;
  --pure-white: #ffffff;
  --shadow-soft: 0 4px 24px rgba(26,61,82,0.08);
  --shadow-medium: 0 8px 40px rgba(26,61,82,0.12);
  --shadow-strong: 0 20px 60px rgba(26,61,82,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-glass-nav: rgba(253, 250, 246, 0.97);
  --bg-glass: rgba(253, 250, 246, 0.98);
}

[data-theme="dark"] {
  --river: #5b9ab5; 
  --river-deep: #7bc4e6;
  --river-light: #2d5f7a;
  --sand: #2a343b;
  --sand-light: #162026;
  --earth: #cfa87f;
  --gold: #ebd188;
  --gold-light: #f3e5b3;
  --gold-glow: rgba(235, 209, 136, 0.1);
  --fog: #2c3a45;
  --text-dark: #f0f4f8;
  --text-mid: #9baec1;
  --white: #12181d;
  --pure-white: #1a2228;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.8);
  --bg-glass-nav: rgba(18, 24, 29, 0.97);
  --bg-glass: rgba(18, 24, 29, 0.98);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 246, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: var(--bg-glass-nav);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  line-height: 1;
  transition: color var(--transition);
  z-index: 1001;
}
.nav-logo em { font-style: italic; color: var(--gold-light); }
.navbar.scrolled .nav-logo { color: var(--river-deep); }
.navbar.scrolled .nav-logo em { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }

.btn-nav-book {
  background: var(--gold) !important;
  color: var(--river-deep) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  border: none;
}
.btn-nav-book::after { display: none !important; }
.btn-nav-book:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-hamburger span,
.nav-hamburger.active span { background: var(--text-dark); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Floating Controls (Theme & Lang) */
#floating-controls {
  position: fixed;
  top: 76px; right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 1000;
}

#theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition);
}
#theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--white);
}

#lang-bar {
  display: flex;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255,255,255,0.2);
}
#lang-bar button {
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}
#lang-bar button.active {
  background: var(--river);
  color: white;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(26,61,82,0.45) 0%, rgba(26,61,82,0.15) 40%, rgba(26,61,82,0.75) 100%),
    url('Poze/pensiunea.jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease both;
}

.hero-stars {
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 300;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--river-deep);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 0.8s ease both;
  z-index: 2;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 1.8s 1.2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   BOOKING SECTION
   ══════════════════════════════════════════════ */
.booking-section {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding: 0 20px 60px;
}

.booking-card {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  padding: 36px 24px;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.booking-header {
  text-align: center;
  margin-bottom: 28px;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--river-deep);
}
.booking-title em { color: var(--gold); font-style: italic; }

.booking-subtitle {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
}

/* MotoPress placeholder form */
.mphb-placeholder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mphb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mphb-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  font-weight: 600;
}
.mphb-field input,
.mphb-field select {
  padding: 14px 16px;
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.mphb-field input:focus,
.mphb-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.mphb-submit {
  background: var(--river-deep);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mphb-submit:hover {
  background: var(--river);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 61, 82, 0.25);
}

/* ══════════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════════ */
section { padding: 64px 20px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--river-light);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--river); }

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 640px;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  gap: 32px;
  margin-top: 36px;
}

.about-img-stack {
  position: relative;
  height: 300px;
}
.about-img-stack img {
  position: absolute;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.about-img-stack .img-main {
  width: 78%;
  height: 260px;
  left: 0; top: 0;
  box-shadow: var(--shadow-strong);
}
.about-img-stack .img-accent {
  width: 55%;
  height: 180px;
  right: 0; bottom: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-medium);
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats-strip {
  background: var(--river-deep);
  padding: 48px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

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

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

/* ══════════════════════════════════════════════
   ROOMS — Card Design
   ══════════════════════════════════════════════ */
.rooms {
  background: var(--river-deep);
  padding-bottom: 80px;
}
.rooms .section-label { color: var(--gold-light); opacity: 0.7; }
.rooms .section-title { color: var(--white); }
.rooms .section-title em { color: var(--gold-light); }
.rooms .section-body { color: rgba(255,255,255,0.6); }

.rooms-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.room-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.room-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card-body {
  padding: 20px;
}

.room-card-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
}

.room-card-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.price-currency {
  font-size: 14px;
  color: var(--gold-light);
  opacity: 0.7;
}
.price-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.room-card-cta {
  background: var(--gold);
  color: var(--river-deep);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
}
.room-card-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery {
  background: var(--sand-light);
  overflow: hidden;
  padding-bottom: 0;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 24px;
  color: var(--river-deep);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition);
  display: none; /* Hidden on mobile by default */
  align-items: center;
  justify-content: center;
}
.gallery-nav:hover {
  background: var(--pure-white);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 32px 20px 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-img {
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  border-radius: var(--radius-md);
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-medium);
}

/* ══════════════════════════════════════════════
   FACILITIES
   ══════════════════════════════════════════════ */
.facilities { background: var(--white); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.facility-card {
  background: var(--sand-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-glow);
}

.facility-icon { font-size: 28px; line-height: 1; }

.facility-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   AMENITIES
   ══════════════════════════════════════════════ */
.amenities { background: var(--sand-light); }

.amenity-group { margin-bottom: 28px; }

.amenity-group-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fog);
  font-weight: 600;
}

.amenity-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-tag {
  font-size: 13px;
  color: var(--text-mid);
  background: var(--pure-white);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  border: 1px solid var(--fog);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.amenity-tag:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.amenity-tag::before {
  content: '✓';
  color: var(--river-light);
  font-size: 11px;
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   POLICIES
   ══════════════════════════════════════════════ */
.policies { background: var(--white); }

.policy-cards {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.policy-card {
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  background: var(--sand-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform var(--transition);
}
.policy-card:hover { transform: translateX(4px); }

.policy-card-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
  font-weight: 600;
}

.policy-card-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 72px 20px;
}
.contact::before {
  content: 'DOINA';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.contact .section-label { color: rgba(255,255,255,0.4); }
.contact .section-title { color: white; }

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 12px 0;
}
.contact-detail .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-light);
  margin: 8px 0;
  display: block;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-phone:hover { color: white; }

.contact-name {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.contact-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  background: var(--gold);
  color: var(--river-deep);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-call:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sms {
  background: transparent;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-sms:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ══════════════════════════════════════════════
   MAP
   ══════════════════════════════════════════════ */
.map-section { padding: 0; height: 300px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 28px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.mobile-cta .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50%     { transform: scaleY(0.3); transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≥600px)
   ══════════════════════════════════════════════ */
@media (min-width: 600px) {
  .container { padding: 0 32px; }
  section { padding: 80px 32px; }

  .mphb-placeholder {
    grid-template-columns: 1fr 1fr;
  }
  .mphb-submit {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .booking-card { padding: 40px 36px; }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-img {
    width: 320px;
    height: 260px;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥900px)
   ══════════════════════════════════════════════ */
@media (min-width: 900px) {
  .navbar { padding: 0 40px; height: 72px; }
  
  .nav-hamburger { display: none !important; }
  .nav-links { display: flex !important; }

  section { padding: 100px 40px; }

  .hero { padding: 0 40px 100px; }

  .booking-section { padding: 0 40px 80px; }
  .booking-card { padding: 48px; }
  .mphb-placeholder {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
  .mphb-submit {
    grid-column: auto;
    max-width: none;
    width: auto;
    height: auto;
    align-self: flex-end;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .about-img-stack { height: 360px; }

  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .gallery-img {
    width: 360px;
    height: 280px;
  }

  .gallery-nav {
    display: flex;
  }

  .map-section { height: 400px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE & TABLET (≤899px)
   ══════════════════════════════════════════════ */
@media (max-width: 899px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;
    gap: 24px;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    pointer-events: none;
  }
  .nav-links.open {
    max-height: 450px;
    opacity: 1;
    padding: 24px 0 32px;
    border-bottom-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    pointer-events: auto;
  }
  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 18px;
  }
  .btn-nav-book {
    font-size: 16px !important;
    padding: 14px 36px !important;
  }

  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }

  .hero { padding-bottom: 100px; }
}

@media (max-width: 380px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero h1 { font-size: 42px; }
}
.mphb-search-form,.mphb_sc_search-wrapper form{display:grid;grid-template-columns:1fr;gap:16px}
.mphb-search-form .mphb-row,.mphb_sc_search-wrapper .mphb-row,.mphb-search-form p,.mphb_sc_search-wrapper p{display:flex;flex-direction:column;gap:6px;margin:0}
.mphb-search-form label,.mphb_sc_search-wrapper label{font-family:'DM Sans',sans-serif;font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:#4a6070;font-weight:600}
.mphb-search-form input,.mphb-search-form select,.mphb_sc_search-wrapper input,.mphb_sc_search-wrapper select,.mphb-datepicker,input.mphb-datepicker{padding:14px 16px!important;border:1.5px solid #d0dde5!important;border-radius:8px!important;font-family:'DM Sans',sans-serif!important;font-size:15px!important;color:#1c2b35!important;background:#fdfaf6!important;outline:none!important;width:100%!important;-webkit-appearance:none!important;box-shadow:none!important}
.mphb-search-form input:focus,.mphb-search-form select:focus,.mphb_sc_search-wrapper input:focus,.mphb_sc_search-wrapper select:focus{border-color:#c9a84c!important;box-shadow:0 0 0 3px rgba(201,168,76,.15)!important}
.mphb-search-form input[type=submit],.mphb-search-form button[type=submit],.mphb_sc_search-wrapper input[type=submit],.mphb_sc_search-wrapper button[type=submit]{background:#1a3d52!important;color:#fff!important;border:none!important;padding:16px 32px!important;border-radius:8px!important;font-family:'DM Sans',sans-serif!important;font-size:15px!important;font-weight:600!important;text-transform:uppercase!important;letter-spacing:.06em!important;cursor:pointer!important;width:100%!important;transition:all .3s ease!important}
.mphb-search-form input[type=submit]:hover,.mphb-search-form button[type=submit]:hover,.mphb_sc_search-wrapper input[type=submit]:hover,.mphb_sc_search-wrapper button[type=submit]:hover{background:#c9a84c!important;color:#1a3d52!important;transform:translateY(-2px)!important;box-shadow:0 6px 20px rgba(201,168,76,.35)!important}
.mphb-book-button,.mphb-reserve-button{background:#c9a84c!important;color:#1a3d52!important;border:none!important;padding:12px 28px!important;border-radius:100px!important;font-family:'DM Sans',sans-serif!important;font-weight:600!important;font-size:14px!important;text-transform:uppercase!important;letter-spacing:.05em!important;cursor:pointer!important;text-decoration:none!important;display:inline-block!important}
.mphb-book-button:hover,.mphb-reserve-button:hover{background:#e8c97a!important;transform:translateY(-2px)!important;box-shadow:0 6px 20px rgba(201,168,76,.35)!important}
.ui-datepicker{background:#fff!important;border:1px solid rgba(201,168,76,.3)!important;border-radius:12px!important;box-shadow:0 8px 40px rgba(26,61,82,.12)!important;font-family:'DM Sans',sans-serif!important;padding:12px!important}
.ui-datepicker-header{background:#1a3d52!important;border-radius:8px!important;color:#fff!important;padding:8px!important;border:none!important}
.ui-datepicker-title{font-family:'Cormorant Garamond',serif!important;font-size:16px!important;color:#fff!important}
.ui-state-active,.ui-state-highlight{background:#c9a84c!important;color:#1a3d52!important;border:none!important;font-weight:600!important}
@media(min-width:600px){.mphb-search-form,.mphb_sc_search-wrapper form{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.mphb-search-form,.mphb_sc_search-wrapper form{grid-template-columns:1fr 1fr 1fr auto;align-items:end}}

/* MOTOPRESS FIX */
.mphb_sc_search-wrapper form {
}
.mphb_sc_search-wrapper input[type=submit],
.mphb_sc_search-wrapper button[type=submit] {
}
.mphb-required-fields-notice { display: none; }
.mphb_sc_search-wrapper form {
  display: grid;
  grid-template-columns: 1fr 1fr 80px 80px auto;
  align-items: end;
  gap: 16px;
}
.mphb_sc_search-wrapper .mphb-row { margin: 0; }
.mphb_sc_search-wrapper input[type=submit],
.mphb_sc_search-wrapper button[type=submit] {
  width: auto;
  white-space: nowrap;
}
.mphb-required-fields-tip { display: none; }
.mphb_sc_search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 80px 80px auto;
  align-items: end;
  gap: 16px;
}
.mphb_sc_search-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mphb_sc_search-submit-button-wrapper {
  align-self: end;
}
.mphb_sc_search-form input[type=submit] {
  width: auto;
  white-space: nowrap;
  padding: 14px 28px;
}
@media (max-width: 899px) {
  .mphb_sc_search-form {
    grid-template-columns: 1fr 1fr;
  }
  .mphb_sc_search-submit-button-wrapper {
    grid-column: 1 / -1;
  }
  .mphb_sc_search-form input[type=submit] {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .mphb_sc_search-form {
    grid-template-columns: 1fr;
  }
}
.mphb-required-fields-tip { display: none; }
.mphb_sc_search-form input[type=hidden] { display: none; }
.mphb_sc_search-submit-button-wrapper {
  grid-column: auto;
  align-self: end;
}
.mphb-required-fields-tip { display: none; }
.mphb_sc_search-form > input[type=hidden] { display: none; }
.mphb_sc_search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 80px 80px auto;
  align-items: end;
  gap: 16px;
  grid-template-areas: "checkin checkout adults children submit";
}
.mphb_sc_search-check-in-date { grid-area: checkin; }
.mphb_sc_search-check-out-date { grid-area: checkout; }
.mphb_sc_search-adults { grid-area: adults; }
.mphb_sc_search-children { grid-area: children; }
.mphb_sc_search-submit-button-wrapper { grid-area: submit; align-self: end; }
.mphb_sc_search-form p { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.mphb_sc_search-form input[type=submit] { white-space: nowrap; padding: 14px 20px; width: 100%; }
p.mphb-required-fields-tip,
p[class*="required-fields"] { display: none; }
/* Butoane MotoPress pagina rezultate */
.mphb-room-type-title a {
  font-family: 'Cormorant Garamond', serif;
  color: #1a3d52;
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
}

.mphb_sc_rooms-wrapper .mphb-reserve-room-button,
.mphb_sc_rooms-wrapper input[type=submit],
.mphb_sc_rooms-wrapper button[type=submit],
a.mphb-reserve-room-button {
  background: #c9a84c;
  color: #1a3d52;
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.mphb_sc_rooms-wrapper .mphb-reserve-room-button:hover,
a.mphb-reserve-room-button:hover {
  background: #e8c97a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* Butoane din summary (dreapta sus) */
.mphb-checkout-section input[type=submit],
.mphb-checkout-section button,
.mphb-booking-summary input[type=submit],
.mphb-booking-summary button,
.mphb_sc_checkout-wrapper input[type=submit],
.mphb_sc_checkout-wrapper button[type=submit],
input.button, button.button {
  background: #1a3d52;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 4px;
}

input.button:hover, button.button:hover {
  background: #c9a84c;
  color: #1a3d52;
}

/* Spatiu intre butoane */
.mphb-room-type-rate .mphb-reserve-room-button,
.mphb-room-summary-table { margin-top: 20px; }

/* Summary box */
.mphb-booking-summary-table,
.mphb-recommended-rooms {
  background: white;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(26,61,82,0.08);
}
/* Spatiu general */
.mphb-checkout-section {
  background: white;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(26,61,82,0.08);
}

/* Titluri sectiuni */
.mphb-checkout-section h3,
.mphb-checkout-section h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #1a3d52;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 10px;
}

/* Inputs si selects */
.mphb-customer-details input[type=text],
.mphb-customer-details input[type=email],
.mphb-customer-details select,
.mphb-customer-details textarea,
.mphb_checkout-guests-chooser {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0dde5;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1c2b35;
  background: #fdfaf6;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.mphb-customer-details input:focus,
.mphb-customer-details select:focus,
.mphb-customer-details textarea:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Labels */
.mphb-customer-details label,
.mphb-checkout-section label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a6070;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Buton submit */
input[type=submit].button,
input[type=button].button {
  background: #c9a84c;
  color: #1a3d52;
  border: none;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  display: block;
  width: 100%;
}

input[type=submit].button:hover {
  background: #e8c97a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* Admin bar ascuns pe frontend */
#wpadminbar { display: none; }
html { margin-top: 0 !important; }
.mphb-guest-name-wrapper input[type=text],
.mphb-booking-details input[type=text] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0dde5;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1c2b35;
  background: #fdfaf6;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.mphb-guest-name-wrapper input[type=text]:focus,
.mphb-booking-details input[type=text]:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.contact .section-title em {
  color: #e8c97a;
  font-style: italic;
}
#gallery-lightbox {
  z-index: 99999 !important;
}
#camera-gallery {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#camera-gallery.open { opacity: 1; pointer-events: all; }
#camera-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 95vw;
  max-height: 90vh;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
#camera-track::-webkit-scrollbar { height: 6px; }
#camera-track::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }
.gallery-lb-img {
  height: 80vh !important;
  width: auto !important;
  max-width: 85vw !important;
  object-fit: contain !important;
  border-radius: 8px;
  scroll-snap-align: center;
  flex-shrink: 0;
  cursor: default;
}
#camera-gallery {
  cursor: default;
}
#camera-track {
  cursor: grab;
  user-select: none;
}
#camera-track:active {
  cursor: grabbing;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}
.gallery-nav:hover { background: rgba(255,255,255,0.3); }
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.room-card-img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.room-card-img-wrap .room-card-img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
}
.room-card-img-wrap:hover .room-card-img {
  transform: scale(1.04);
}
.room-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,82,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.room-card-img-wrap:hover .room-card-img-overlay {
  background: rgba(26,61,82,0.5);
}
.room-card-img-overlay span {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.room-card-img-wrap:hover .room-card-img-overlay span {
  opacity: 1;
  transform: translateY(0);
}
