/* ================= Base ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* ================= Navigation ================= */

.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 6000; /* keep header above overlays */
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.logo-text {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 3.5rem;
  animation: navFade 1.2s ease forwards;
  position: relative;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition:
    color 0.4s ease,
    opacity 0.4s ease;
  opacity: 0.75;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: #fff;
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}

/* ================= Hero ================= */

.hero {
  height: 100vh;
  background: url("images/hero2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  color: #fff;
  position: relative; /* stacking context */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 0;
}

/* ===== GLASS HERO BOX ===== */
.glass {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Center content inside glass */
.glass .hero-content {
  text-align: center;
}

.glass h1 {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.glass p {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* ================= Buttons ================= */

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.8rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.9);
}

/* ================= Sections ================= */

.section {
  padding: 4rem 2rem;
}

/* ================= About ================= */

.about {
  background: #f7f6f4;
  padding: 8rem 2rem;
  animation: fadeUp 1.2s ease forwards;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  color: #111;
}

.about p {
  font-size: 1.05rem;
  line-height: 2;
  color: #333;
  margin-bottom: 2rem;
}

.about p br {
  content: "";
  display: block;
  margin: 2rem 0;
}

.about h2,
.about p {
  font-family: "Playfair Display", serif;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #111;
  margin-top: 1.5rem;
}

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

/* ================= Profile Details ================= */

.profile-details {
  background: #f7f6f4; /* same tone as about */
  padding: 6rem 2rem;
}

.profile-inner {
  max-width: 900px;
  margin: 0 auto;
}

.profile-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 3rem;
}

.detail-item {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.detail-item span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 0.35rem;
}

/* Mobile */
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .profile-details {
    padding: 4.5rem 1.5rem;
  }
}

/* ================= Gallery ================= */

.gallery {
  background: #fff;
  padding: 8rem 2rem;
}

.gallery h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ================= Contact ================= */

.contact {
  padding: 8rem 2rem;
  background: #111;
  color: #fff;
}

.contact-inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.9;
}

.contact-card {
  margin: 0 auto;
  padding: 2.2rem 2.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.contact-link,
.contact-text {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.contact-link {
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.contact-link:hover::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.contact-note {
  margin-top: 2.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

/* ================= Footer ================= */

.footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .contact-card {
    text-align: left;
    padding: 1.6rem;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LUXURY MOBILE NAV + HERO (FIXES) ===== */
@media (max-width: 768px) {
  /* Header spacing */
  .nav {
    padding: 1.1rem 1.2rem;
  }

  .logo-img {
    width: 40px;
  }

  .logo-text {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    line-height: 1;
  }

  /* Toggle visible + luxury */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.25rem;
  }

  /* FULLSCREEN OVERLAY MENU */
  .nav-list {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px; /* adjust if needed */
    bottom: 0;
    display: none;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 0;
    border-radius: 0;

    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: none;
    box-shadow: none;
    z-index: 5000;
  }

  .nav-list.nav-list-active {
    display: flex;
  }

  .nav-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
  }

  .nav-link::after {
    bottom: -4px;
  }

  /* prevent scroll behind menu */
  body.menu-open {
    overflow: hidden;
  }

  /* hide hero card while menu open to avoid “show-through” */
  body.menu-open .glass {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* Dim hero background when menu open */
  body.menu-open .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
  }

  /* Hero layout on mobile */
  .hero {
    min-height: 100svh;
    padding: 7.2rem 1.2rem 2.5rem;
    align-items: center; /* more centered */
    justify-content: center;
  }

  .glass {
    width: 100%;
    max-width: 520px;
    padding: 2rem 1.6rem;
    border-radius: 18px;
  }

  .hero-content h1 {
    font-size: 2.05rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.8;
    opacity: 0.9;
  }

  .btn {
    margin-top: 1.6rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
  }
}

/* ================= Rates Page ================= */

.rates-hero {
  min-height: 60vh;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
    url("images/hero4.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6rem 2rem 4rem;
}

.booking-hero {
  min-height: 60vh;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
    url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6rem 2rem 4rem;
}

.rates-hero-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.rates-hero-inner p {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Rates list */
.rates-section {
  background: #f7f6f4;
  padding: 8rem 2rem;
}

.rates-inner {
  max-width: 900px;
  margin: 0 auto;
}

.rate-item {
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.rate-item:last-child {
  border-bottom: none;
}

.rate-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.rate-duration {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.rate-price {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
}

.rate-desc {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  font-family: "Playfair Display", serif;
}

/* Highlight Overnight subtly */
.rate-item.highlight {
  background: rgba(0, 0, 0, 0.04);
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .rates-hero-inner h1 {
    font-size: 2.2rem;
  }

  .rate-head {
    flex-direction: column;
    gap: 0.4rem;
  }

  .rate-price {
    letter-spacing: 0.22em;
  }
}

/* ================= Rates – Additional Information ================= */

.rates-info {
  background: #fff;
  padding: 7rem 2rem;
}

.rates-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.rates-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4.5rem;
  text-align: center;
}

.info-block + .info-block {
  margin-top: 4.5rem;
}

.info-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}

.info-block p {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  max-width: 720px;
}

.info-block p + p {
  margin-top: 1.6rem;
}

/* Elegant list style */
.info-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
}

.info-list li {
  position: relative;
  padding-left: 1.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}

.info-list li + li {
  margin-top: 1.3rem;
}

.info-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.45);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .rates-info {
    padding: 5rem 1.5rem;
  }

  .rates-info h2 {
    font-size: 2rem;
  }

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

/* ================= Booking Form ================= */

.booking-note {
  max-width: 700px;
  margin-bottom: 3rem;
  font-family: "Playfair Display", serif;
  line-height: 1.9;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
}

.booking-form textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox {
  font-size: 0.9rem;
  font-family: "Playfair Display", serif;
}

.booking-help {
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.submit {
  color: white;
  background: grey;
}

/* ================= FAQ ACCORDION ================= */

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.8rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  padding: 0 0 1.8rem;
  font-family: "Playfair Display", serif;
  line-height: 1.9;
  max-width: 720px;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + turns into × */
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.05rem;
  }
}
/* ================= Thank You Page ================= */

.thank-you-hero {
  background: url("images/hero3.jpg") center/cover no-repeat;
}

.thank-you-glass {
  padding: 3.5rem 4.5rem;
}

.thank-you-glass h1 {
  font-size: 2.6rem;
  letter-spacing: 0.18em;
}

.thank-you-glass p {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .thank-you-glass {
    padding: 2.2rem 1.6rem;
  }

  .thank-you-glass h1 {
    font-size: 2.1rem;
  }
}

/* ================= Gallery Page ================= */

.gallery-hero {
  min-height: 55vh;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,0.20), rgba(0,0,0,0.70)),
    url("images/hero3.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  color: #fff;
}

.gallery-hero-glass {
  padding: 3rem 4rem;
}

.gallery-hero .hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-hero .hero-content p {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery-page {
  background: #fff;
  padding: 7rem 2rem;
}

.gallery-page-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Optional: a slightly tighter grid than homepage */
.gallery-grid-page {
  gap: 2.2rem;
}

/* Editorial stagger (desktop only) */
@media (min-width: 900px) {
  .gallery-grid-page {
    grid-template-columns: 1.2fr 0.85fr 1fr;
  }

  .gallery-grid-page .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-grid-page .gallery-item:nth-child(3) {
    transform: translateY(34px);
  }

  .gallery-grid-page .gallery-item:nth-child(5) {
    transform: translateY(22px);
  }
}

.gallery-discretion {
  margin: 4rem auto 0;
  max-width: 700px;
  text-align: center;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  opacity: 0.7;
}



