:root {
  --dark: #111427;
  --dark-2: #171b30;
  --gold: #c69a6b;
  --gold-light: #e7c69a;
  --text: #171717;
  --muted: #f5f2ed;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: #fff;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.8rem;
}

p {
  line-height: 1.7;
}

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

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 88px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(17, 20, 39, .92);
  backdrop-filter: blur(16px);
  color: #fff;
}

.logo img {
  height: 70px;
  max-width: 230px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .86rem;
}

.nav a {
  color: #fff;
  transition: .25s ease;
}

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

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .25s ease;
  box-shadow: var(--shadow);
}

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

.btn-small {
  padding: 12px 22px;
  font-size: .82rem;
}

.btn.secondary {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .35);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .35);
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  transition: .25s ease;
}

.outline-btn:hover {
  background: var(--dark);
  color: #fff;
}

/* HERO */

.hero {
  position: relative;
  min-height: 94vh;
  padding: 130px 7% 80px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .62)),
    url("hero.jpg") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 45%, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55));
}

.hero-content {
  position: relative;
  max-width: 900px;
  color: #fff;
}

.eyebrow,
.section-label {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 14px;
}

.hero-text {
  margin: 24px 0 34px;
  max-width: 650px;
  font-size: 1.18rem;
}

.hero-actions,
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 34px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

/* GENERAL SECTIONS */

.section {
  padding: 82px 7%;
}

.muted {
  background: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

/* DESPRE */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-card {
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.benefits div {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: #4b4237;
}

.benefits span {
  font-size: 2rem;
}

/* CAMERE */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rooms-two {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-slider {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #ddd;
}

.room-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}

.room-slider img.active {
  opacity: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 20, 39, .72);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  transition: .2s ease;
}

.prev:hover,
.next:hover {
  background: var(--gold);
}

.prev {
  left: 14px;
}

.next {
  right: 14px;
}

.room-info {
  padding: 24px;
}

.room-tag {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.room-info p {
  margin: 8px 0 0;
  color: #666;
}

/* FACILITĂȚI */

.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.features div {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  font-size: 2rem;
}

.features span {
  font-size: .95rem;
  font-weight: 800;
}

/* EXPERIENȚĂ */

.special {
  position: relative;
  color: #fff;
  padding: 96px 7%;
  background:
    linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .72)),
    url("P2.jpg") center/cover;
}

.special-content {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.gold {
  color: var(--gold-light);
}

.experience-card,
.fish-card {
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url("P3.jpg") center/cover no-repeat;
}

/* GALERIE */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gallery-img {
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s ease;
}

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

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr 1fr;
  gap: 36px;
  align-items: start;
}

#contact {
  padding-top: 60px;
}

#contact h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 18px;
  line-height: 1;
}

.map-image {
  height: 270px;
  width: 100%;
  background: url("mapa.jpg") center/cover no-repeat;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.map-image:hover {
  transform: scale(1.02);
}

.contact-box,
.review-box {
  background: #fff;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-box p {
  margin: 6px 0 18px;
  line-height: 1.45;
  word-break: break-word;
}

.contact-box strong {
  display: block;
  margin-top: 8px;
}

.contact-box .outline-btn {
  margin-top: 6px;
}

.review-box blockquote {
  margin: 20px 0 12px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stars {
  color: var(--gold);
  letter-spacing: .12em;
}

/* CTA */

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 54px 7%;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
    url("hero.jpg") center/cover;
}

/* FOOTER */

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 52px 7%;
  background: var(--dark);
  color: #fff;
}

.footer-logo {
  height: 52px;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .75);
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
}

/* LIGHTBOX */

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

.lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* TABLET */

@media (max-width: 980px) {
  .nav,
  .site-header .btn-small {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.open {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--dark);
    padding: 20px 7%;
  }

  .nav.open a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .split,
  .special-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rooms-two,
  .cards {
    grid-template-columns: 1fr;
  }

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

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

  .section-head,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* MOBILE */

@media (max-width: 560px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .logo img {
    height: 48px;
    max-width: 210px;
  }

  .hero {
    min-height: 88vh;
    padding: 120px 22px 55px;
    background-position: center;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
    line-height: .95;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-text {
    font-size: 1rem;
    margin: 18px 0 26px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: .85rem;
  }

  .section {
    padding: 58px 22px;
  }

  .image-card {
    height: 310px;
  }

  .room-slider {
    height: 250px;
  }

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

  .features div {
    font-size: 1.6rem;
    background: #fff;
    padding: 22px 12px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  }

  .special {
    padding: 58px 22px;
  }

  .experience-card,
  .fish-card {
    height: 260px;
  }

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

  .gallery-img {
    height: 240px;
  }

  .map-image {
    height: 220px;
  }

  .contact-box,
  .review-box {
    padding: 24px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 42px 22px 90px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
    font-size: 1.8rem;
  }
}
