/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: #2b2b2b;
  line-height: 1.6;
  background: #fafaf7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: #1f2a24;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7f6b;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}
.section-intro {
  max-width: 640px;
  margin-bottom: 60px;
  color: #555;
  font-size: 1.05rem;
}
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.btn-primary { background: #4a5f4a; color: #fff; }
.btn-primary:hover { background: #3a4d3a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-outline:hover { background: #fff; color: #1f2a24; }
.btn-dark { background: transparent; color: #1f2a24; border: 1px solid #1f2a24; }
.btn-dark:hover { background: #1f2a24; color: #fff; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}
.nav.scrolled .nav-logo { color: #1f2a24; }
.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: #1f2a24; }
.nav-links a:hover { color: #a8bfa8; }
.nav-cta {
  background: #4a5f4a;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-cta:hover { background: #3a4d3a; color: #fff !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}
.nav.scrolled .nav-toggle { color: #1f2a24; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.hero-content { max-width: 800px; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.95;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 4px;
}
.about-image > img { width: 100%; height: 100%; object-fit: cover; }
.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  height: 300px;
  border: 8px solid #fafaf7;
  border-radius: 4px;
  overflow: hidden;
}
.about-image-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content p { margin-bottom: 20px; color: #555; }
.about-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #3a3a3a;
}
.about-features li::before {
  content: '\2726';
  color: #6b7f6b;
  font-size: 1rem;
}

/* ---------- Gallery / Carousel ---------- */
.gallery-section { background: #f0ede5; padding-bottom: 120px; }
.gallery-section .center { margin-bottom: 60px; }

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  color: #1f2a24;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.carousel-btn:hover {
  background: #1f2a24;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }

.carousel-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31, 42, 36, 0.85);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  z-index: 5;
}

.carousel-slide img { cursor: zoom-in; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 12, 0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: transform 0.2s;
}
.lightbox-close:hover { transform: scale(1.15); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2a24;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  opacity: 0.85;
}

/* ---------- Book Now ---------- */
.book-section {
  background: #1f2a24;
  color: #f0ede5;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/book-bg.jpeg') center/cover no-repeat;
  opacity: 0.15;
}
.book-section .container { position: relative; z-index: 1; }
.book-section .section-title { color: #fff; }
.book-section .section-eyebrow { color: #a8bfa8; }
.book-section .section-intro { color: #d0d0c8; }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.book-info p { color: #d0d0c8; margin-bottom: 30px; }
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #d0d0c8;
}
.contact-list .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8bfa8;
  display: block;
  margin-bottom: 4px;
}

.book-form {
  background: #fafaf7;
  color: #1f2a24;
  padding: 48px;
  border-radius: 4px;
}
.book-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.book-form .form-subtitle { color: #666; font-size: 0.95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a5f4a;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5d5d0;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1f2a24;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #4a5f4a; }
.form-group textarea { resize: vertical; min-height: 100px; }
.book-form .btn { width: 100%; margin-top: 8px; }
.form-success {
  display: none;
  background: #e8f0e8;
  color: #2d4a2d;
  padding: 16px;
  border-radius: 2px;
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
}
.form-success.active { display: block; }

/* ---------- Footer ---------- */
footer {
  background: #141c17;
  color: #a8a89f;
  padding: 60px 0 30px;
  text-align: center;
}
footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}
footer p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  list-style: none;
}
.footer-social a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8a89f;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a352d;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #6b7369;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 400px; }
  .about-image-secondary { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .carousel-slide { height: 55vh; min-height: 360px; }
  .carousel-btn { width: 44px; height: 44px; font-size: 16px; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 14px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 16px; font-size: 34px; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fafaf7;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #1f2a24 !important; }
  .book-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .carousel-slide { height: 45vh; min-height: 280px; }
}
