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

:root {
  --color-bg: #fafaf8;
  --color-text: #1a1a1a;
  --color-text-light: #6b6b6b;
  --color-accent: #2c2c2c;
  --color-accent-hover: #444;
  --color-border: #e0e0e0;
  --color-card: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

body.menu-open {
  overflow: hidden;
}

/* ── Navigation ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  padding: 14px 40px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.3s ease;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #808080;
  color: var(--color-text);
}

.hero-content {
  text-align: center;
}

.hero-logo {
  width: 90vw;
  max-width: 1200px;
  height: auto;
  margin: 0 auto 50px;
}

.hero-links {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.hero-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.hero-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.hero-links a:hover {
  color: #fff;
}

.hero-links a:hover::after {
  width: 100%;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}


.btn-outline {
  background: transparent;
  color: var(--color-text);
}

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

/* ── Sections ─────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 50px;
}

/* ── About ────────────────────────────────────── */
.about-text {
  max-width: 640px;
  margin: 40px auto 50px;
  text-align: center;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.about-photos img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Placeholder for images */
.image-placeholder {
  background: #e8e8e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
  min-height: 300px;
  width: 100%;
}


/* ── Gallery ──────────────────────────────────── */
.gallery {
  background: #f3f3f0;
}

.gallery-category {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 60px;
  margin-bottom: -10px;
  text-align: center;
  color: var(--color-text-light);
}

.gallery-category:first-of-type {
  margin-top: 10px;
}

.gallery-grid {
  columns: 2;
  column-gap: 16px;
  column-fill: balance;
  margin-top: 30px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.gallery-item img.loaded {
  opacity: 1;
}

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

.gallery-item .image-placeholder {
  min-height: 200px;
  transition: transform 0.5s ease;
}

.gallery-item:hover .image-placeholder {
  transform: scale(1.03);
}

/* ── Packages ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.package-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  border-color: var(--color-accent);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.package-card li {
  font-size: 0.88rem;
  color: var(--color-text-light);
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.package-card li:last-child {
  border-bottom: none;
}

.price-note {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-light);
}

.packages-footnote {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.88rem;
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.packages-footnote a {
  color: var(--color-text);
  text-decoration: underline;
}

/* ── Booking Form ─────────────────────────────── */
.booking {
  background: #f3f3f0;
}

.booking-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
}

.booking-form .btn {
  width: 100%;
  text-align: center;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ── Scroll Animations ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger gallery items */
.gallery-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.gallery-item.fade-up:nth-child(3) { transition-delay: 0.2s; }
.gallery-item.fade-up:nth-child(4) { transition-delay: 0.3s; }
.gallery-item.fade-up:nth-child(5) { transition-delay: 0.4s; }
.gallery-item.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Stagger package cards */
.package-card.fade-up:nth-child(2) { transition-delay: 0.15s; }
.package-card.fade-up:nth-child(3) { transition-delay: 0.3s; }

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 14px 20px;
  }

  .nav.scrolled {
    padding: 10px 20px;
  }

  .nav-logo {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .nav-toggle {
    display: flex;
    padding: 8px;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  /* Hero */
  .hero {
    height: 100svh;
  }

  .hero-logo {
    width: 95vw;
    margin-bottom: 30px;
  }

  .hero-links {
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .hero-links a {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 36px;
    padding: 0 8px;
  }

  /* About */
  .about-text {
    margin: 24px auto 36px;
    padding: 0 8px;
  }

  .about-text p {
    font-size: 0.88rem;
  }

  .about-photos {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 12px;
  }

  .about-photos img {
    height: 400px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 10px;
  }

  .gallery-item .image-placeholder {
    min-height: 140px;
  }

  .gallery-category {
    margin-top: 40px;
    margin-bottom: -4px;
    font-size: 1.15rem;
  }

  .gallery-category:first-of-type {
    margin-top: 8px;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .package-card {
    padding: 32px 24px;
  }

  .packages-footnote {
    font-size: 0.82rem;
    margin-top: 30px;
    padding: 0 8px;
  }

  /* Booking */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .btn {
    padding: 16px 32px;
    font-size: 0.78rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-links {
    gap: 16px;
  }

  .hero-links a {
    font-size: 0.65rem;
  }

  .about-photos img {
    height: 350px;
  }

  .package-card {
    padding: 28px 20px;
  }
}
