@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Pacifico&display=swap');

:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-mid: #40916c;
  --green-light: #52b788;
  --orange: #f77f00;
  --orange-dark: #d62828;
  --bg: #f9f9f7;
  --text: #1a1a1a;
  --muted: #5c6670;
  --white: #ffffff;
  --border: #e4e8df;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(27, 67, 50, 0.12);
  --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

h1, h2, h3, h4 {
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #eaf4ee;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-family: 'Pacifico', cursive;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-top: 0.25rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.65rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
}

.btn-wa:hover {
  background: #20ba5a;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: #e36f00;
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: rgba(27, 67, 50, 0.35);
}

.btn-outline:hover {
  border-color: var(--green);
  background: rgba(45, 106, 79, 0.08);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.85rem 4rem;
}

.nav-logo {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a:not(.nav-wa) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 0.18s ease;
}

.nav-links a:not(.nav-wa):hover {
  color: var(--white);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  background: #25d366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(135deg, rgba(27, 67, 50, 0.94) 0%, rgba(45, 106, 79, 0.88) 52%, rgba(64, 145, 108, 0.78) 100%), url('../images/sunset.png');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(247, 127, 0, 0.28), transparent 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.hero h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta .btn {
  min-width: 210px;
}

.proof-bar {
  background: var(--orange);
  color: var(--white);
}

.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  font-weight: 900;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.amenity-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-dark);
  font-size: 1.55rem;
}

.amenity-card h3 {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.amenity-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-tall {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.package-card-featured {
  border: 3px solid var(--orange);
  transform: translateY(-0.4rem);
}

.package-card h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--text);
}

.package-card li {
  position: relative;
  padding-left: 1.6rem;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.package-card .btn {
  margin-top: auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #f4c430;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.review-card p {
  color: var(--muted);
  font-size: 1.02rem;
  font-style: italic;
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--green-dark);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 30%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.availability-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.cta-band h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 680px;
  font-size: 1.08rem;
  opacity: 0.94;
}

.cta-button {
  margin-top: 1.25rem;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 1.08rem;
}

.trust-note {
  margin-top: 0.85rem;
  font-size: 0.92rem !important;
}

footer {
  padding: 3rem 0 1.5rem;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3, .footer-grid h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-grid h3 span {
  color: var(--orange);
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.78);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox p {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  max-width: 92vw;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1024px) {
  .container, .nav-inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .amenities-grid, .package-grid, .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card-featured {
    transform: none;
  }

  .gallery-tall {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .container, .nav-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .amenities-grid, .package-grid, .reviews-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 145px;
  }

  .gallery-tall, .gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .container, .nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .section-heading h2 {
    font-size: 1.3rem;
  }

  .hero-cta, .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .gallery-tall, .gallery-wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .proof-inner {
    gap: 0.6rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
