/* ═══════════════════════════════════════════════
   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: transparent;
  
  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; }
}

/* ══ MOTOPRESS REAL CLASSES OVERRIDE ══ */
.mphb_sc_search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.mphb_sc_search-form .mphb-datepick-wrap,
.mphb_sc_search-form .mphb-adults-wrap,
.mphb_sc_search-form .mphb-children-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mphb_sc_search-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.mphb_sc_search-form input,
.mphb_sc_search-form 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_sc_search-form input:focus,
.mphb_sc_search-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.mphb_sc_search-form .mphb-search-button {
  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%;
}
.mphb_sc_search-form .mphb-search-button:hover {
  background: var(--river);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 61, 82, 0.25);
}

/* ══ MOTOPRESS SEARCH RESULTS PAGE ══ */
.mphb-search-results-section,
.mphb_sc_search_results {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
}

/* Titlu rezultate */
.mphb-search-results-section > p:first-child {
  color: var(--text-mid);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

/* Card recomandat */
.mphb-recommended-section {
  background: var(--white);
  border: 1.5px solid var(--fog);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.mphb-recommended-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Card cameră */
.mphb-room-type-wrap {
  background: var(--white);
  border: 1.5px solid var(--fog);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.mphb-room-type-wrap h3,
.mphb-room-type-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mphb-room-type-wrap h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.mphb-room-type-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.mphb-room-type-wrap ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 4px 0;
}

.mphb-room-type-wrap strong {
  color: var(--text-dark);
}

/* Pret */
.mphb-price-rates,
.mphb-room-type-wrap .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  margin: 12px 0;
}

/* Buton Rezervă */
.mphb-room-type-wrap .button,
.mphb-room-type-wrap input[type="submit"],
.mphb-room-type-wrap button[type="submit"] {
  background: var(--river-deep) !important;
  color: white !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.mphb-room-type-wrap .button:hover,
.mphb-room-type-wrap input[type="submit"]:hover {
  background: var(--river) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26,61,82,0.25) !important;
}

/* Select număr camere */
.mphb-room-type-wrap select {
  padding: 8px 12px;
  border: 1.5px solid var(--fog);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  margin-right: 8px;
}

/* Total */
.mphb-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  text-align: right;
  margin: 16px 0;
}

/* ══ MOTOPRESS SEARCH RESULTS PAGE ══ */
.mphb-search-results-section,
.mphb_sc_search_results {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
}
test
/* MOTOPRESS RESULTS */
.mphb-room-type-wrap {
  background: white;
  border: 1.5px solid #e8e0d0;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  font-family: DM Sans, sans-serif;
}
.mphb-room-type-wrap h2, .mphb-room-type-wrap h3 {
  font-family: Cormorant Garamond, serif;
  font-size: 26px;
  margin-bottom: 12px;
}
.mphb-room-type-wrap .button, .mphb-room-type-wrap input[type=submit] {
  background: #1a3d52 !important;
  color: white !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: inline-block !important;
  text-decoration: none !important;
}
.mphb-room-type-wrap select {
  padding: 8px 12px;
  border: 1.5px solid #e8e0d0;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 8px;
}
/* MOTOPRESS RESULTS */
.mphb-room-type-wrap {
  background: white;
  border: 1.5px solid #e8e0d0;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.mphb-room-type-wrap h2, .mphb-room-type-wrap h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.mphb-room-type-wrap .button, .mphb-room-type-wrap input[type=submit] {
  background: #1a3d52 !important;
  color: white !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: inline-block !important;
  text-decoration: none !important;
}
.mphb-room-type-wrap select {
  padding: 8px 12px;
  border: 1.5px solid #e8e0d0;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 8px;
}
.mphb_sc_search_results-wrapper { max-width: 900px; margin: 60px auto; padding: 0 24px; font-family: DM Sans, sans-serif; }

.mphb_sc_search_results-wrapper { max-width: 900px; margin: 60px auto; padding: 0 24px; font-family: DM Sans, sans-serif; }
.mphb_sc_search_results-info { color: #4a6070; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.mphb-recommendation-title { font-size: 22px; margin-bottom: 16px; color: #1c2b35; }
.mphb-room-type-title { font-size: 26px; color: #1c2b35; margin-bottom: 12px; }
.mphb-room-type-wrap { background: white; border: 1.5px solid #e8e0d0; border-radius: 12px; padding: 28px; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.mphb-recommended-section { background: #fdfaf6; border: 1.5px solid #e8e0d0; border-radius: 12px; padding: 28px; margin-bottom: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }


.page-template-default .entry-content,
.page-template-default > div,
.mphb-booking-form-wrap,
.mphb_sc_checkout-wrapper {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  color: #1c2b35;
}


.mphb_sc_checkout-wrapper { max-width: 700px; margin: 40px auto; padding: 0 24px; }
.mphb_sc_checkout-wrapper h2 { font-size: 20px; font-weight: 600; color: #1a3d52; margin: 0 0 12px 0; }
.mphb_sc_checkout-wrapper h3 { font-size: 16px; font-weight: 600; color: #1a3d52; margin: 0 0 8px 0; }
.mphb-checkout-section, .mphb-booking-details, .mphb-services-section, .mphb-price-breakdown, .mphb-customer-info, .mphb-payment-section { background: white; border: 1.5px solid #e8e0d0; border-radius: 12px; padding: 24px; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.mphb_sc_checkout-wrapper input[type=text], .mphb_sc_checkout-wrapper input[type=email], .mphb_sc_checkout-wrapper input[type=tel], .mphb_sc_checkout-wrapper select, .mphb_sc_checkout-wrapper textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #d0dde5; border-radius: 6px; font-size: 14px; margin-top: 4px; margin-bottom: 12px; font-family: DM Sans, sans-serif; }
.mphb_sc_checkout-wrapper input[type=submit], .mphb_sc_checkout-wrapper button[type=submit] { background: #1a3d52 !important; color: white !important; border: none !important; padding: 14px 32px !important; border-radius: 6px !important; font-size: 14px !important; font-weight: 600 !important; text-transform: uppercase !important; cursor: pointer !important; width: 100% !important; margin-top: 8px !important; }

