/* ===================== CSS VARIABLES ===================== */
:root {
  --bg-primary:    #0d1117;
  --bg-secondary:  #1a1a2e;
  --bg-card:       #1e2535;
  --gold:          #c9a84c;
  --gold-light:    #e8c86a;
  --gold-dark:     #a07830;
  --text-primary:  #ffffff;
  --text-secondary:#e8d5b7;
  --text-muted:    #8892a4;
  --border:        rgba(201,168,76,0.2);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover:  0 16px 48px rgba(0,0,0,0.5);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
picture { display: contents; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { color: var(--text-primary); margin-bottom: 1rem; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d1117;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 125%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-outline {
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201,168,76,0.08);
}
.btn-phone {
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-weight: 600;
}
.btn-phone:hover {
  background: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}
.btn-booking {
  background: #003580;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,53,128,0.35);
}
.btn-booking:hover {
  background: #00204a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,53,128,0.45);
}

/* ===================== NAV ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-phone:hover { opacity: 0.8; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,0.85) 0%,
    rgba(13,17,23,0.6) 50%,
    rgba(13,17,23,0.75) 100%
  );
}
.hero-overlay-gold {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-title {
  animation: fadeSlideUp 0.8s 0.1s ease both;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  animation: fadeSlideUp 0.8s 0.25s ease both;
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.4s ease both;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeSlideUp 0.8s 0.55s ease both;
}
.hero-stat-item { text-align: left; }
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeSlideUp 0.8s 0.9s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLinePulse 1.5s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== DESPRE ===================== */
#despre {
  padding: 7rem 0;
  background: var(--bg-primary);
}
.despre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.despre-image-wrap { position: relative; }
.despre-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.despre-img img { width: 100%; height: 100%; object-fit: cover; }
.despre-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 50%; aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
  z-index: -1;
}
.despre-badge-float {
  position: absolute;
  top: 1.5rem; right: -1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.despre-badge-float .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}
.despre-badge-float .lbl { font-size: 0.75rem; color: var(--text-muted); }

.despre-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.highlight-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.highlight-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.highlight-item:hover .highlight-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.05);
}
.highlight-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.highlight-text p { font-size: 0.875rem; margin: 0; }

/* ===================== FACILITATI ===================== */
#facilitati {
  padding: 7rem 0;
  background: var(--bg-secondary);
}
.facilitati-header { text-align: center; margin-bottom: 4rem; }
.facilitati-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.facilitate-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.facilitate-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
}
.facilitate-item:hover .facilitate-icon { transform: scale(1.2); }
.facilitate-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: var(--transition);
}
.facilitate-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.facilitate-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ===================== CAMERE ===================== */
#camere {
  padding: 7rem 0;
  background: var(--bg-primary);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}
.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.room-image {
  position: relative;
  overflow: hidden;
}
.room-image {
  height: 220px;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-slide.active img {
  transform: scale(1.05);
}
.room-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: #0d1117;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.room-info {
  padding: 1.75rem;
}
.room-info h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.room-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.room-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-per {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.btn-room {
  display: block;
  text-align: center;
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--text-secondary);
  padding: 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-room:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ===================== GALERIE ===================== */
#galerie {
  padding: 7rem 0;
  background: var(--bg-secondary);
}
.galerie-header { text-align: center; margin-bottom: 3.5rem; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.galerie-cell {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.galerie-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galerie-cell:hover img { transform: scale(1.06); }
.galerie-cell:hover .galerie-overlay { opacity: 1; }
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.15);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.galerie-overlay span { font-size: 1.75rem; }
.gc-wide  { grid-column: span 2; }
.gc-tall  { grid-row: span 2; }

/* ===================== RECENZII ===================== */
#recenzii {
  padding: 7rem 0;
  background: var(--bg-primary);
}
.recenzii-header { text-align: center; margin-bottom: 1.5rem; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-big-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.rating-big-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; margin-top: 0.3rem; }
.rating-big-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.rating-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1);
}
.rating-breakdown { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.rating-bar-row .star-num { width: 20px; text-align: right; }
.rating-bar-track {
  width: 100px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}
.recenzii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.recenzie-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.recenzie-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.recenzie-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.rec-stele { font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.rec-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.rec-autor { display: flex; align-items: center; gap: 0.75rem; }
.rec-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.rec-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rec-avatar-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: #0d1117;
}
.rec-name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.rec-data { font-size: 0.75rem; color: var(--text-muted); }
.rec-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===================== CONTACT ===================== */
#contact {
  padding: 7rem 0;
  background: var(--bg-secondary);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.05);
}
.contact-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
}
.contact-value { font-size: 0.95rem; color: var(--text-secondary); }
.contact-value a { transition: var(--transition); }
.contact-value a:hover { color: var(--gold); }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.program-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.program-row .day { color: var(--text-muted); }
.program-row .ora {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 0.5rem;
}
.open-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { display: block; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--text-primary); padding-left: 4px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; color: var(--text-muted); }
.footer-attribution {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===================== MOBILE MENU ===================== */
.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,17,23,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.nav-mobile-close:hover { color: var(--gold); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .facilitati-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .despre-inner { grid-template-columns: 1fr; gap: 3rem; }
  .recenzii-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-wide { grid-column: span 2; }
  .gc-tall { grid-row: auto; }
  .rooms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .facilitati-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.5rem; }
  .galerie-grid { grid-auto-rows: 160px; }
  .rating-divider { display: none; }
  .rating-breakdown { display: none; }
  .program-grid { grid-template-columns: 1fr; }
}
/* ===================== ADAUGĂRI PENTRU 4 CAMERE ȘI TAB-URI RECENZII ===================== */

/* 1. Ajustare grilă camere (4 pe desktop, 2 pe tabletă, 1 pe mobil) */
@media (min-width: 1025px) {
  .rooms-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2. Stiluri pentru Tab-urile de la Recenzii */
.reviews-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid rgba(201,168,76,0.3);
  color: var(--text-muted);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--gold);
  color: #0d1117;
  border-color: var(--gold);
}

.review-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.review-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== MOBILE DYNAMIC BOOST ===================== */
body {
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 14px rgba(201,168,76,0.6);
}

.btn {
  min-height: 48px;
}

#hero::before {
  content: '';
  position: absolute;
  right: -8vw;
  top: 18%;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201,168,76,0.24), rgba(201,168,76,0));
  animation: floatSoft 7s ease-in-out infinite;
  pointer-events: none;
}

.room-card {
  will-change: transform;
}

.room-card.in-view {
  animation: cardPulseIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.galerie-cell.in-view img {
  animation: zoomReveal 0.9s ease both;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: #10141b;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.mobile-sticky-cta.show {
  transform: translateY(0);
}

.mobile-sticky-cta strong {
  font-size: 0.95rem;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(201,168,76,0.9);
  color: #121722;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 1050;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes cardPulseIn {
  0% { opacity: 0; transform: translateY(18px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zoomReveal {
  from { opacity: 0.6; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 7.5rem 0 5rem;
  }

  .hero-title {
    line-height: 1.08;
  }

  .hero-tagline {
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 0.2rem;
  }

  .hero-stat-item {
    background: rgba(13,17,23,0.62);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.7rem 0.5rem;
    text-align: center;
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.64rem;
  }

  .galerie-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0 0 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .galerie-cell,
  .gc-wide,
  .gc-tall {
    flex: 0 0 82vw;
    height: 220px;
    scroll-snap-align: center;
    grid-column: auto;
    grid-row: auto;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  #contact {
    padding-bottom: 8.5rem;
  }
}

@media (max-width: 480px) {
  .galerie-cell,
  .gc-wide,
  .gc-tall {
    flex-basis: 86vw;
    height: 180px;
  }

  .btn {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================== GALLERY CROPPING FIX ===================== */
@media (max-width: 768px) {
  .galerie-cell,
  .gc-wide,
  .gc-tall {
    flex-basis: 88vw;
    aspect-ratio: 4 / 3;
    height: auto;
    background: #111827;
  }

  .galerie-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111827;
  }
}

@media (max-width: 480px) {
  .galerie-cell,
  .gc-wide,
  .gc-tall {
    flex-basis: 92vw;
    aspect-ratio: 4 / 3;
  }
}

/* ===================== CONTACT SIDE-BY-SIDE ON PHONE ===================== */
@media (max-width: 768px) {
  #contact .contact-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0.85rem;
    align-items: stretch;
  }

  #contact .map-wrap {
    min-height: 430px;
    height: 100%;
  }

  #contact .map-wrap iframe {
    height: 100%;
  }

  #contact .contact-item {
    margin-bottom: 1.2rem;
  }
}

/* ===================== CONTACT MOBILE REFINEMENT ===================== */
@media (max-width: 768px) {
  #contact .contact-inner {
    grid-template-columns: 1fr 0.96fr;
    gap: 0.9rem;
    align-items: start;
  }

  #contact .contact-inner > .reveal:first-child {
    display: contents;
  }

  #contact .contact-inner > .reveal:first-child .contact-item:nth-of-type(1),
  #contact .contact-inner > .reveal:first-child .contact-item:nth-of-type(2) {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 0.55rem;
  }

  #contact .contact-inner > .reveal:first-child .contact-item:nth-of-type(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 0;
  }

  #contact .contact-inner > .reveal:first-child > div:last-child {
    grid-column: 1 / 2;
    grid-row: 5;
    margin-top: 0.55rem !important;
  }

  #contact .map-wrap {
    grid-column: 2 / 3;
    grid-row: 3 / 6;
    min-height: 360px;
    height: 100%;
  }

  #contact .map-wrap iframe {
    height: 100%;
  }

  #contact .program-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  #contact .program-row {
    font-size: 0.78rem;
  }

  #contact .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  #contact .contact-value {
    font-size: 0.86rem;
  }

  #contact .open-badge {
    font-size: 0.68rem;
  }

  #contact .btn {
    font-size: 0.8rem;
    padding: 0.75rem 0.8rem;
  }
}

/* ===================== PHONE EXPERIENCE UPGRADE ===================== */
@keyframes softShimmer {
  0%, 100% { transform: translateX(-120%) skewX(-16deg); opacity: 0; }
  50% { transform: translateX(180%) skewX(-16deg); opacity: 0.45; }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 8px 24px rgba(201,168,76,0.28); }
  50% { box-shadow: 0 14px 30px rgba(201,168,76,0.5); }
}

@keyframes tipFloat {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

@keyframes tapPop {
  0% { transform: scale(1); }
  50% { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.swipe-tip {
  display: none;
  margin-top: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: tipFloat 2.2s ease-in-out infinite;
}

.btn-primary {
  position: relative;
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%) skewX(-16deg);
  z-index: -1;
  pointer-events: none;
}

.btn-primary.is-shimmering::before {
  animation: softShimmer 0.95s ease;
}

.mobile-sticky-cta.show {
  animation: pulseGold 2.3s ease-in-out infinite;
}

.back-to-top.show {
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.back-to-top.spinning {
  animation: spinOnce 0.45s ease;
}

@media (max-width: 768px) {
  #hero {
    min-height: 92svh;
  }

  .container {
    padding: 0 1rem;
  }

  .facilitate-item,
  .room-card,
  .recenzie-card,
  .contact-item {
    transform-origin: center bottom;
  }

  .facilitati-grid {
    gap: 0.85rem;
  }

  .facilitate-item {
    padding: 1.3rem 0.75rem;
  }

  .facilitate-icon {
    margin-bottom: 0.5rem;
  }

  .room-info {
    padding: 1.2rem;
  }

  .room-info h3 {
    font-size: 1.3rem;
  }

  .room-features li {
    font-size: 0.82rem;
  }

  .recenzie-card {
    padding: 1.35rem;
  }

  .reviews-tabs {
    gap: 0.55rem;
    margin-bottom: 2rem;
  }

  .tab-btn {
    padding: 0.62rem 0.95rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .swipe-tip {
    display: inline-block;
  }

  .mobile-sticky-cta {
    backdrop-filter: blur(10px);
  }

  .mobile-sticky-cta:active {
    transform: scale(0.98);
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 12px;
  }

  .tap-pop {
    animation: tapPop 0.22s ease;
  }
}

@media (max-width: 430px) {
  .hero-stats {
    gap: 0.5rem;
  }

  .hero-stat-item {
    padding: 0.6rem 0.35rem;
  }

  .hero-stat-value {
    font-size: 1.05rem;
  }

  .hero-stat-label {
    font-size: 0.58rem;
  }

  .reviews-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-sticky-cta {
    left: 8px;
    right: 8px;
    font-size: 0.84rem;
    gap: 0.45rem;
    padding: 0.72rem 0.75rem;
  }

  .mobile-sticky-cta strong {
    font-size: 0.84rem;
  }
}

/* ===================== NAV LOGO IMAGE ===================== */
.nav-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

/* ===================== ROOM SLIDER ===================== */
.room-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.room-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(50px);
}
.room-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.room-slide.leaving {
  opacity: 0;
  transform: translateX(-50px);
  z-index: 0;
}
.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e2535, #252d42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.room-slide-placeholder span { font-size: 2rem; opacity: 0.4; }
.room-slide-placeholder small { font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; }
.room-slider-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
  z-index: 2;
}
.rslide-prev, .rslide-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(13,17,23,0.72);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  flex-shrink: 0;
}
.room-image:hover .rslide-prev,
.room-image:hover .rslide-next { opacity: 1; }
.rslide-prev:hover, .rslide-next:hover {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
}
.room-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.rslide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.rslide-dot.active {
  background: var(--gold);
  width: 16px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .rslide-prev, .rslide-next { opacity: 0.8; }
}

/* ===================== FACILITATE DETAILS TOOLTIP ===================== */
.facilitate-item { cursor: pointer; }
.facilitate-details {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.3s ease;
  text-align: left;
}
.facilitate-item:hover .facilitate-details,
.facilitate-item:focus .facilitate-details,
.facilitate-item.active .facilitate-details {
  max-height: 90px;
  opacity: 1;
  margin-top: 0.55rem;
}
.facilitate-item.active {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.06);
}
.facilitate-item:focus {
  outline: 1px solid rgba(201,168,76,0.4);
  outline-offset: 2px;
}

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-secondary, #fff);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
