/* ─── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Lora';
  src: url('Lora-VariableFont_wght.ttf') format('truetype');
}

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c87a;
  --gold-dark: #a07830;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --charcoal: #1a1a1a;
  --nav-height: 72px;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', 'Lora', Georgia, serif;
  background: var(--off-white);
  color: var(--charcoal);
}

/* ─── Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;

  background: rgba(10, 8, 4, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold-light);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

/* Book Now button — desktop version */
.btn-book {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.btn-book:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}

/* The mobile "Book Now" inside the nav drawer — hidden on desktop */
.btn-book-mobile {
  display: none;
}

/* ─── Hamburger ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate into an × when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero Section ───────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;

  background-image: url('Images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax on desktop */

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay to ensure text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 2, 0.55) 0%,
    rgba(5, 4, 2, 0.65) 60%,
    rgba(5, 4, 2, 0.8) 100%
  );
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
  animation: heroFadeIn 1.2s ease both;
}

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

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(201, 168, 76, 0.25);
}

#home-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA button */
.btn-hero {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.9rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ─── Footer ─────────────────────────────────────────────── */
#footer {
  background: #2c2c2c;
  color: #b0b0b0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  flex: 1;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}

.footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 2;
  color: #a8a8a8;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #a8a8a8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Copyright bar */
.footer-bottom {
  padding: 1.2rem 5rem;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #6e6e6e;
  letter-spacing: 0.05em;
}

/* ─── Scroll-to-top button ───────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.55);
}

#scroll-top svg {
  width: 20px;
  height: 20px;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Navbar ── */
  #navbar {
    padding: 0 1.2rem;
  }

  /* Hide desktop Book Now button */
  .btn-book-desktop {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Nav drawer — hidden by default, slides down when .open */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 8, 4, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1rem 0 1.4rem;
    animation: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 0.85rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Remove underline animation on mobile — use bg highlight instead */
  .nav-item::after {
    display: none;
  }

  .nav-item:hover,
  .nav-item.active {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
  }

  /* Show the Book Now inside the mobile nav drawer */
  .btn-book-mobile {
    display: block;
    margin: 1rem 1.8rem 0;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }

  /* ── Hero: disable parallax (iOS/Safari bug fix) ── */
  #hero {
    background-attachment: scroll;
    min-height: 100svh; /* use svh on mobile for accurate viewport */
  }

  /* Tighten up hero text on small screens */
  .hero-content {
    padding: 0 1.2rem;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }

  #home-desc {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    margin-bottom: 2rem;
  }

  .btn-hero {
    padding: 0.85rem 2.2rem;
    font-size: 0.75rem;
  }

  /* ── Footer: stack columns vertically ── */
  .footer-main {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .footer-bottom {
    padding: 1.2rem 1.5rem;
  }

  /* ── Scroll-to-top: slightly smaller & tucked in ── */
  #scroll-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SMALL PHONES — max-width: 380px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .logo-text {
    font-size: 1.35rem;
  }

  h1 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }
}
