:root {
  --navy: #06151f;
  --deep: #0b2635;
  --blue: #0e7490;
  --aqua: #22d3ee;
  --sand: #f6e7c9;
  --gold: #d6a94f;
  --cream: #fffaf0;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  background: rgba(6, 21, 31, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white);
  box-shadow: 0 14px 45px rgba(0,0,0,0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.brand strong {
  display: block;
  line-height: 1;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 0.74rem;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
}

/* HERO */

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 360px);
  align-items: end;
  gap: 42px;
  padding: 140px 6vw 56px;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video,
.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 20%, rgba(34,211,238,0.22), transparent 32%),
    linear-gradient(90deg, rgba(6,21,31,0.88), rgba(6,21,31,0.54), rgba(6,21,31,0.18)),
    linear-gradient(0deg, rgba(6,21,31,0.76), transparent 42%);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.91;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.1vw, 1.24rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffe2a1);
  color: #121212;
  box-shadow: 0 12px 34px rgba(214,169,79,0.28);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.38);
  color: white;
  background: rgba(255,255,255,0.08);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-light {
  background: white;
  color: var(--navy);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-row div {
  min-width: 135px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.trust-row strong {
  display: block;
  font-size: 1.2rem;
}

.trust-row span {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
}

.booking-card {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  box-shadow: var(--shadow);
  justify-self: end;
}

.booking-card span {
  color: var(--blue);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.booking-card strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 1.35rem;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

.booking-card a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: #16a34a;
  color: white;
  font-weight: 900;
  text-align: center;
}

/* GENERAL */

.section {
  padding: 92px 6vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
  background: var(--cream);
}

.intro h2,
.section-heading h2,
.experience h2,
.contact-info h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro p,
.section-heading p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

/* ROOMS */

.rooms-section {
  background: #f8fbfb;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.room-card {
  width: 100%;
  min-width: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(6,21,31,0.08);
  border: 1px solid rgba(6,21,31,0.06);
}

.room-card:nth-child(4) {
  grid-column: 1 / 2;
}

.room-card:nth-child(5) {
  grid-column: 2 / 3;
}

.featured-room {
  transform: translateY(-18px);
  box-shadow: 0 30px 90px rgba(14,116,144,0.20);
}

.room-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
  background: #dceef2;
}

.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.room-slider:hover img {
  transform: scale(1.05);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.room-content {
  padding: 24px;
}

.room-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.room-title-row h3 {
  font-size: 1.6rem;
  line-height: 1;
}

.room-title-row span {
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e8f8fb;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
}

.room-content p {
  color: var(--muted);
  line-height: 1.65;
}

.room-content ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #344054;
}

.room-content li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 900;
  margin-right: 8px;
}

.room-content .btn {
  width: 100%;
  margin-top: 12px;
}

/* EXPERIENCE */

.experience {
  padding: 92px 6vw;
  background: linear-gradient(135deg, var(--deep), #063245);
  color: white;
}

.experience-card {
  max-width: 1180px;
  margin: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.features-grid div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.features-grid p {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  cursor: zoom-in;
  box-shadow: 0 15px 40px rgba(6,21,31,0.10);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* CTA */

.cta-band {
  margin: 0 6vw;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadow);
}

.cta-band span {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.cta-band h2 {
  max-width: 780px;
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.review-card {
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 60px rgba(6,21,31,0.08);
}

.main-review {
  padding: 34px;
  background: var(--navy);
  color: white;
  transform: scale(1.04);
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.review-card p {
  line-height: 1.75;
  color: var(--muted);
}

.main-review p {
  color: rgba(255,255,255,0.78);
}

/* CONTACT */

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-info,
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: 0 22px 70px rgba(6,21,31,0.10);
}

.contact-info {
  padding: 42px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--deep);
  font-weight: 800;
}

.map-box {
  position: relative;
  min-height: 430px;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-box span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

/* FOOTER */

.footer {
  padding: 34px 6vw 92px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(6,21,31,0.72);
}

.footer strong {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.footer a {
  font-weight: 900;
  color: var(--blue);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 15px 20px;
  border-radius: 999px;
  background: #16a34a;
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(22,163,74,0.35);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  max-width: 96vw;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* TABLET */

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.open {
    display: grid;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 22px;
    border-radius: 24px;
    background: rgba(6,21,31,0.96);
    box-shadow: var(--shadow);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-card {
    justify-self: start;
    max-width: 420px;
  }

  .intro,
  .reviews-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .featured-room {
    transform: none;
  }

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

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

/* IMPORTANT: camerele rămân normale până aproape de telefon */
@media (max-width: 780px) {
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .room-card:nth-child(4),
  .room-card:nth-child(5) {
    grid-column: auto;
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 62px;
    min-height: 62px;
    max-height: 62px;
    padding: 10px;
    border-radius: 22px;
    overflow: visible;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: .86rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 18px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

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

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .trust-row div {
    min-width: 0;
    padding: 10px;
  }

  .trust-row strong {
    font-size: 1rem;
  }

  .trust-row span {
    font-size: .68rem;
  }

  .booking-card {
    width: 100%;
    max-width: none;
    padding: 20px;
    margin-top: 24px;
  }

  .section {
    padding: 68px 18px;
  }

  .intro h2,
  .section-heading h2,
  .experience h2,
  .contact-info h2,
  .cta-band h2 {
    font-size: 2.5rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 18px;
  }

  .room-card,
  .room-card:nth-child(4),
  .room-card:nth-child(5) {
    grid-column: auto;
  }

  .room-content {
    padding: 20px;
  }

  .room-title-row {
    display: grid;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .cta-band {
    margin: 0 18px;
    padding: 26px;
    display: grid;
  }

  .cta-band .btn {
    width: 100%;
  }

  .main-review {
    transform: none;
  }

  .contact-info {
    padding: 26px;
  }

  .map-box {
    min-height: 310px;
  }

  .footer {
    display: grid;
    padding: 28px 18px 92px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
}
