/* ═══════════════════════════════════════════
   Pensiunea Atlantis – Bușteni · style.css
   Redesign editorial · 2026
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #f4efe6;
  --sand:       #ece4d6;
  --ink:        #16160f;
  --deep:       #1a1a14;
  --pine:       #25402e;
  --pine-light: #36563f;
  --gold:       #b8905a;
  --gold-light: #d8b27e;
  --stone:      #8a8070;
  --fog:        #e8e2d6;
  --white:      #fdfcf9;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Cursor personalizat (32px) ── */
html, body { cursor: url("cursor32.png") 4 2, auto; }
a, button, summary, label, input, .room-carousel, .gallery-slide, .rc-arrow, .rc-dot,
.room-cta, .lang-toggle, .attraction-item, .wa-float, .to-top, .gallery-arrow {
  cursor: url("cursor32.png") 4 2, pointer;
}
@media (hover: none) {
  html, body, a, button, .room-carousel, .gallery-slide { cursor: auto; }
}

/* ── Lenis smooth scroll ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Textură fină ── */
.grain {
  position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: rgba(22,22,15,0.92); backdrop-filter: blur(14px); padding: 1rem 4rem; border-bottom: 1px solid rgba(184,144,90,0.22); }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 400; letter-spacing: 0.06em; color: var(--gold-light); text-decoration: none; }
.nav-logo span { font-style: italic; color: #fff; }
.nav-links { display: flex; gap: 2.6rem; list-style: none; margin-left: auto; }
.nav-links a { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold-light); transition: width 0.35s var(--ease); }
.nav-links a:hover, .nav-links a.is-active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.lang-toggle { background: transparent; border: 1px solid rgba(216,178,126,0.55); color: var(--gold-light); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; padding: 0.45rem 0.85rem; margin-left: 1.6rem; transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s; }
.lang-toggle:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: 1rem; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--gold-light); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 101; transition: width 0.1s linear; }

/* ── HERO ── */
.hero { position: relative; height: 90vh; min-height: 560px; overflow: hidden; display: flex; align-items: center; }
.hero-media { position: absolute; left: 0; right: 0; top: -4%; height: 108%; overflow: hidden; will-change: transform; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.05); } }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12,18,10,0.82) 0%, rgba(12,18,10,0.5) 42%, rgba(12,18,10,0.2) 70%, rgba(12,18,10,0.45) 100%); }
.hero-veil::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,18,10,0.7), transparent 38%); }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 4rem; }
.hero-eyebrow { font-size: 0.74rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; opacity: 0; animation: heroIn 1s var(--ease) 0.15s forwards; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 34px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 0.9rem; }
.hero-title { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(3.2rem, 8.5vw, 6.6rem); line-height: 0.98; color: #fff; letter-spacing: -0.01em; }
.hero-title span { display: block; overflow: hidden; }
.hero-title span > i { display: block; font-style: normal; transform: translateY(110%); animation: titleRise 1.1s var(--ease) 0.3s forwards; }
.hero-title em { display: block; overflow: hidden; }
.hero-title em > i { display: block; font-style: italic; color: var(--gold-light); transform: translateY(110%); animation: titleRise 1.1s var(--ease) 0.45s forwards; }
@keyframes titleRise { to { transform: translateY(0); } }
.hero-sub { font-size: 0.98rem; color: rgba(255,255,255,0.78); line-height: 1.85; max-width: 460px; margin: 1.8rem 0 2.6rem; opacity: 0; animation: heroIn 1s var(--ease) 0.7s forwards; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; animation: heroIn 1s var(--ease) 0.85s forwards; }
.hero-bottom { position: absolute; bottom: 2rem; left: 0; right: 0; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 4rem; display: flex; gap: 2rem; justify-content: space-between; align-items: center; opacity: 0; animation: heroIn 1s var(--ease) 1s forwards; }
.hero-bottom span { font-size: 0.74rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); }
.hero-bottom .hero-score { color: var(--gold-light); }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── BUTOANE ── */
.btn, .btn-primary, .btn-outline, .btn-whatsapp, .btn-booking {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 2.5rem; font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  position: relative; overflow: hidden; border: 1px solid transparent;
  transition: transform 0.4s var(--ease), color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(184,144,90,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.7,0,0.2,1); z-index: -1; }
.btn-outline:hover { color: var(--ink); border-color: var(--gold-light); }
.btn-outline:hover::before { transform: scaleX(1); }

/* ── SECTION SHARED ── */
section { padding: 7rem 4rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(2.1rem, 4.4vw, 3.3rem); font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em; }
.section-sub { font-size: 0.9rem; color: var(--stone); line-height: 1.95; max-width: 540px; }
.divider { width: 54px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── DESPRE ── */
.about { background: var(--white); }
.about-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.about-inner .section-sub { margin: 0 auto; }
.about-inner .divider { margin: 1.5rem auto; }
.about-inner .stars { justify-content: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; margin-top: 2.8rem; text-align: left; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { width: 40px; height: 40px; background: var(--pine); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; border-radius: 2px; }
.feature-text h4 { font-size: 0.86rem; font-weight: 500; margin-bottom: 0.2rem; }
.feature-text p  { font-size: 0.8rem; color: var(--stone); line-height: 1.6; }
.stars { display: flex; gap: 3px; margin: 1.4rem 0 0.4rem; }
.star  { color: var(--gold); font-size: 1.05rem; }
.rating-note { font-size: 0.78rem; color: var(--stone); }

/* ── GALERIE (slider) ── */
.gallery { background: var(--sand); }
.gallery-header { max-width: 1200px; margin: 0 auto 3rem; }
.gallery-slider { position: relative; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.gallery-track-wrap { flex: 1; overflow: hidden; }
.gallery-track { display: flex; gap: 14px; transition: transform 0.55s var(--ease); will-change: transform; }
.gallery-slide { position: relative; flex: 0 0 calc((100% - 28px) / 3); aspect-ratio: 4/3; overflow: hidden; background: var(--fog); box-shadow: 0 6px 18px rgba(0,0,0,0.18); transition: transform 0.4s var(--ease), box-shadow 0.4s ease; }
.gallery-slide:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(0,0,0,0.38); z-index: 2; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.gallery-slide:hover img { transform: scale(1.06); }
.gs-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem 1rem 0.8rem; color: #fff; font-size: 0.76rem; letter-spacing: 0.03em; background: linear-gradient(to top, rgba(12,18,10,0.85), transparent); opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.gallery-slide:hover .gs-cap { opacity: 1; transform: translateY(0); }
.gallery-arrow { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); border: 1px solid rgba(184,144,90,0.4); position: relative; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.gallery-arrow:hover:not(:disabled) { background: var(--pine); border-color: var(--gold); transform: scale(1.05); }
.gallery-arrow:disabled { opacity: 0.25; }
.gallery-arrow::before { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-top: 2px solid var(--gold-light); border-right: 2px solid var(--gold-light); }
.gallery-arrow--prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
.gallery-arrow--next::before { transform: translate(-70%, -50%) rotate(45deg); }

/* ── CURTEA · video ── */
.court { position: relative; height: 82vh; min-height: 500px; padding: 0; display: flex; align-items: flex-end; overflow: hidden; background: #0d1f16; }
.court-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(36px) brightness(0.5); transform: scale(1.2); z-index: 0; }
.court-video { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); height: 100%; width: auto; max-width: 100%; object-fit: cover; z-index: 1; box-shadow: 0 0 80px rgba(0,0,0,0.6); }
.court-overlay { position: absolute; left: 0; right: 0; bottom: 0; height: 62%; background: linear-gradient(to top, rgba(12,18,10,0.9) 0%, rgba(12,18,10,0.25) 65%, transparent 100%); pointer-events: none; z-index: 2; }
.court-content { position: relative; z-index: 3; max-width: 560px; margin: 0; padding: 0 2rem 4rem 4rem; text-shadow: 0 2px 18px rgba(0,0,0,0.75); }
.court-content .section-title, .court-content .section-label { color: #fff; }
.court-sub { color: rgba(255,255,255,0.92); font-size: 0.98rem; line-height: 1.85; max-width: 460px; }

/* ── CAMERE ── */
.rooms { background: var(--pine); }
.rooms .section-title { color: #fff; }
.rooms .section-label { color: var(--gold-light); }
.rooms .divider { background: var(--gold-light); }
.rooms .section-sub { color: rgba(255,255,255,0.62); max-width: 780px; }
.rooms-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1200px; margin: 0 auto; }
.room-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,0.35); }
.room-carousel { position: relative; height: 270px; overflow: hidden; background: var(--deep); }
.rc-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity 0.8s var(--ease), transform 7s ease; }
.rc-slide.is-active { opacity: 1; transform: scale(1); }
.room-carousel::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(12,18,10,0.55), transparent 45%); }
.room-badge { position: absolute; top: 13px; left: 13px; z-index: 3; background: var(--gold); color: var(--ink); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 0.35rem 0.7rem; pointer-events: none; }
.room-num { position: absolute; top: 13px; right: 13px; z-index: 3; background: rgba(12,18,10,0.7); color: var(--gold-light); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.7rem; backdrop-filter: blur(4px); pointer-events: none; }
.rc-zoom { position: absolute; bottom: 13px; right: 13px; z-index: 3; background: rgba(12,18,10,0.7); color: #fff; font-size: 0.66rem; letter-spacing: 0.08em; padding: 0.3rem 0.6rem; backdrop-filter: blur(4px); opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.room-carousel:hover .rc-zoom { opacity: 1; transform: translateY(0); }
.rc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(12,18,10,0.65); color: #fff; font-size: 1.4rem; line-height: 1; opacity: 0.92; transition: background 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center; }
.rc-arrow--prev { left: 10px; } .rc-arrow--next { right: 10px; }
.rc-arrow:hover { background: var(--gold); color: var(--ink); transform: translateY(-50%) scale(1.1); }
.rc-dots { position: absolute; bottom: 13px; left: 13px; z-index: 5; display: flex; gap: 5px; }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.5); padding: 0; transition: background 0.2s, transform 0.2s; }
.rc-dot.is-active { background: var(--gold-light); transform: scale(1.3); }
.room-info { padding: 2rem 1.6rem; border-top: 2px solid rgba(184,144,90,0.25); }
.room-name { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 300; color: #fff; margin-bottom: 0.4rem; }
.room-view { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--gold-light); margin-bottom: 0.6rem; }
.room-desc { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amenity-tag { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border: 1px solid rgba(184,144,90,0.4); color: var(--gold-light); }
.room-cta { margin-top: 1.3rem; background: none; border: 1px solid rgba(184,144,90,0.5); color: var(--gold-light); font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.65rem 1.2rem; transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s; }
.room-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.facilities { max-width: 1200px; margin: 3.5rem auto 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2.8rem; }
.facilities-title { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 300; color: #fff; margin-bottom: 1.6rem; }
.facilities-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.facility-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(184,144,90,0.3); color: rgba(255,255,255,0.86); font-size: 0.78rem; padding: 0.55rem 1.05rem; transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s; }
.facility-chip:hover { transform: translateY(-3px); background: rgba(184,144,90,0.16); border-color: var(--gold); }

/* ── RECENZII ── */
.reviews { background: var(--ink); padding: 6rem 4rem; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-scores { display: flex; align-items: center; justify-content: center; gap: 2.2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.reviews-big-score { text-align: center; font-family: 'Fraunces', serif; font-size: 3.8rem; color: var(--gold); font-weight: 300; line-height: 1; }
.reviews-big-score span { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: 'Jost', sans-serif; margin-top: 0.3rem; }
.reviews-sep { width: 1px; height: 64px; background: rgba(255,255,255,0.1); }
.reviews-grid-scores { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 2.2rem; }
.score-item { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.score-item strong { color: var(--gold-light); font-weight: 500; }
.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; transition: transform 0.35s var(--ease), border-color 0.35s; }
.review-card:hover { transform: translateY(-5px); border-color: rgba(184,144,90,0.4); }
.review-text { font-family: 'Fraunces', serif; font-size: 1.12rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ── ATRACȚII ── */
.attractions { background: var(--white); }
.attractions-header { max-width: 1200px; margin: 0 auto 3rem; }
.attractions-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.attraction-list { display: flex; flex-direction: column; }
.attraction-item { display: flex; align-items: center; gap: 1rem; padding: 1.05rem 1.2rem; background: var(--cream); border-left: 3px solid transparent; border-bottom: 1px solid rgba(138,128,112,0.12); transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.attraction-item:hover { background: var(--fog); border-left-color: rgba(45,74,53,0.4); transform: translateX(3px); }
.attraction-item.is-active { background: var(--fog); border-left-color: var(--pine); }
.attraction-icon { font-size: 1.4rem; flex-shrink: 0; }
.attraction-body { flex: 1; }
.attraction-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.18rem; }
.attraction-meta { display: flex; align-items: center; gap: 0.35rem; font-size: 0.74rem; color: var(--stone); margin-bottom: 0.12rem; }
.adot { opacity: 0.45; }
.attraction-sub { font-size: 0.7rem; color: var(--stone); opacity: 0.75; }
.attraction-chevron { font-size: 1.2rem; color: var(--stone); transition: color 0.2s, transform 0.2s; }
.attraction-item:hover .attraction-chevron, .attraction-item.is-active .attraction-chevron { color: var(--pine); transform: translateX(3px); }
.attraction-map-wrap { position: sticky; top: 100px; }
.attraction-map-panel { display: none; position: relative; background: var(--fog); border: 1px solid rgba(138,128,112,0.25); overflow: hidden; }
.attraction-map-panel.is-active { display: block; }
.attraction-map-panel img { width: 100%; display: block; }
.attraction-map-panel iframe { width: 100%; height: 420px; border: none; display: block; }
.map-dir-btn { display: block; text-align: center; padding: 0.85rem 1rem; background: var(--pine); color: rgba(255,255,255,0.88); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background 0.25s; }
.map-dir-btn:hover { background: var(--pine-light); }

/* ── LOCAȚIE (fără hartă, centrat) ── */
.location-section { background: var(--ink); }
.location-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.location-info .section-title { color: #fff; }
.location-info .section-label { color: var(--gold-light); }
.location-info .divider { background: var(--gold); margin: 1.5rem auto; }
.location-info p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.95; margin-bottom: 1rem; }
.location-detail { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.location-detail span { font-size: 0.82rem; color: rgba(255,255,255,0.66); }

/* ── CONTACT (centrat, pe verticală) ── */
.contact { background: var(--cream); }
.contact-inner { max-width: 1080px; margin: 0 auto; }
.contact-head { text-align: center; margin-bottom: 3rem; }
.contact-head .section-sub { margin: 0 auto; }
.contact-head .divider { margin: 1.5rem auto; }
.contact-card { background: var(--white); padding: 2.6rem; border: 1px solid var(--fog); max-width: 620px; margin: 0 auto 2.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.contact-card h3 { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 300; margin-bottom: 2rem; color: var(--ink); text-align: center; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-row-icon { width: 42px; height: 42px; background: var(--pine); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border-radius: 2px; }
.contact-row-text label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 0.2rem; }
.contact-row-text a, .contact-row-text span { font-size: 0.92rem; color: var(--ink); text-decoration: none; }
.contact-row-text a:hover { color: var(--pine); }
.btn-whatsapp { background: #25D366; color: #fff; letter-spacing: 0.14em; width: 100%; }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-3px); }
.btn-whatsapp .wa-icon { font-size: 1.2rem; }
.contact-info-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-box { background: var(--white); border: 1px solid var(--fog); padding: 2rem; text-align: center; }
.info-box--dark { background: var(--pine); border: none; }
.info-box .section-label { margin-bottom: 0.5rem; }
.info-box-title { font-family: 'Fraunces', serif; font-size: 1.55rem; font-weight: 300; color: var(--ink); }
.info-box--dark .info-box-title { color: #fff; font-size: 1.45rem; line-height: 1.4; }
.info-box-sub { font-size: 0.8rem; color: var(--stone); margin-top: 0.5rem; }
.info-box--dark .info-box-sub { color: rgba(255,255,255,0.5); }
.info-box-text { font-size: 0.88rem; color: var(--ink); }

/* ── WhatsApp flotant ── */
.wa-float { position: fixed; right: 24px; bottom: 86px; z-index: 210; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 10px 26px rgba(37,211,102,0.45); transition: transform 0.3s var(--ease), box-shadow 0.3s; animation: waPulse 2.6s ease-in-out infinite; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.45); } 50% { box-shadow: 0 10px 38px rgba(37,211,102,0.8); } }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.4); text-align: center; padding: 2.4rem 4rem; font-size: 0.75rem; letter-spacing: 0.1em; }
footer span { color: var(--gold); font-family: 'Fraunces', serif; font-style: italic; }

/* ── ANIMAȚII reveal ── */
.fade-up { opacity: 0; transform: translateY(48px) scale(0.985); filter: blur(8px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ── MODAL galerie cameră ── */
.room-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.room-modal.is-open { display: flex; animation: modalFade 0.3s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.room-modal-backdrop { position: absolute; inset: 0; background: rgba(12,18,10,0.95); }
.room-modal-box { position: relative; z-index: 2; width: min(1000px, 100%); max-height: 92vh; display: flex; flex-direction: column; background: var(--deep); border: 1px solid rgba(184,144,90,0.3); }
.room-modal-close { position: absolute; top: -14px; right: -14px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--gold); color: var(--ink); font-size: 1rem; transition: transform 0.3s var(--ease), background 0.2s; }
.room-modal-close:hover { transform: rotate(90deg); background: var(--gold-light); }
.room-modal-stage { position: relative; background: #000; display: flex; align-items: center; justify-content: center; height: 60vh; overflow: hidden; }
.room-modal-img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.room-modal-img.fade-in { animation: imgFade 0.4s ease; }
@keyframes imgFade { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.room-modal-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border: none; background: rgba(12,18,10,0.55); color: #fff; font-size: 1.8rem; line-height: 1; transition: background 0.2s; }
.room-modal-nav--prev { left: 12px; } .room-modal-nav--next { right: 12px; }
.room-modal-nav:hover { background: var(--gold); color: var(--ink); }
.room-modal-counter { position: absolute; bottom: 12px; right: 14px; z-index: 3; background: rgba(12,18,10,0.7); color: #fff; font-size: 0.72rem; padding: 0.3rem 0.7rem; backdrop-filter: blur(4px); }
.room-modal-info { padding: 1.4rem 1.6rem; }
.room-modal-title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 300; color: #fff; margin-bottom: 0.3rem; }
.room-modal-caption { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.room-modal-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.3rem; }
.room-modal-thumbs img { width: 74px; height: 56px; object-fit: cover; flex-shrink: 0; opacity: 0.5; outline: 1px solid transparent; transition: opacity 0.2s, outline-color 0.2s; }
.room-modal-thumbs img:hover { opacity: 0.85; }
.room-modal-thumbs img.is-active { opacity: 1; outline-color: var(--gold); }

/* ── Buton sus ── */
.to-top { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 48px; height: 48px; border: none; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: 1.2rem; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s, background 0.2s; box-shadow: 0 8px 22px rgba(0,0,0,0.35); }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* Animațiile rămân active (la cererea proprietarului) chiar dacă sistemul are „reduceți mișcarea". */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-hamburger { display: flex; }
  .nav-links { display: flex; position: fixed; top: 58px; right: 0; flex-direction: column; background: rgba(22,22,15,0.98); padding: 1.5rem 2rem; gap: 1.3rem; transform: translateX(110%); transition: transform 0.35s var(--ease); border-left: 1px solid rgba(184,144,90,0.2); min-width: 210px; margin-left: 0; }
  .nav-links.nav-open { transform: translateX(0); }
  .lang-toggle { margin-left: auto; }
  section { padding: 4.5rem 1.5rem; }
  .hero-inner, .hero-bottom { padding-left: 1.5rem; padding-right: 1.5rem; }
  .court-content { padding: 0 1.5rem 2.5rem 1.5rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .about-features { grid-template-columns: 1fr; }
  .attractions-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-block { grid-template-columns: 1fr; }
  .attraction-map-wrap { position: static; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-carousel { height: 230px; }
  .gallery-slide { flex: 0 0 calc((100% - 14px) / 2); }
  .court { height: 64vh; min-height: 400px; }
  .reviews-cards { grid-template-columns: 1fr; }
  .room-modal-stage { height: 44vh; }
  .room-modal-box { max-height: 96vh; }
  .wa-float { width: 52px; height: 52px; bottom: 80px; }
}
@media (max-width: 600px) { .gallery-slide { flex: 0 0 100%; } }
