:root {
  --emerald: #0f3d36;
  --emerald-dark: #05211c;
  --gold: #c9a646;
  --sand: #f7f4ef;
  --charcoal: #121212;
  --slate: #3c4a45;
  --mist: #d7d7d7;
  --white: #ffffff;
  --shadow-soft: 0 20px 55px rgba(15, 61, 54, 0.18);
  --shadow-card: 0 25px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--sand);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 0.4em;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1.2em;
  font-size: 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(247, 244, 239, 0.8);
  border-bottom: 1px solid rgba(201, 166, 70, 0.2);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4vw;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--charcoal);
}

.logo-icon img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
}

.logo-wordmark-primary {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
}

.logo-wordmark-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.logo-mobile {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--emerald-dark);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--gold);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(5, 33, 28, 0.35), rgba(15, 61, 54, 0.18));
  border-radius: 0;
  box-shadow: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.page-hero {
  padding: 7rem 4vw 3rem;
  background: linear-gradient(120deg, rgba(5, 33, 28, 0.85), rgba(15, 61, 54, 0.75)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M0 80 Q40 40 80 80 T160 80' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3C/svg%3E")
      center/cover;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.breadcrumb {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.hero-shell {
  width: 100%;
  max-width: 460px;
  margin: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content {
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: rgba(5, 33, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--gold);
  backdrop-filter: blur(10px);
  box-shadow: 0 35px 70px rgba(5, 33, 28, 0.35);
  opacity: 0;
  transform: translateY(30px);
  animation:
    heroFade 1.2s ease forwards,
    heroMinimize 1s ease forwards;
  animation-delay: 2s, 11s;
  animation-fill-mode: forwards, forwards;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
  text-shadow: none;
}

.hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideShow 35s infinite;
  transition: opacity 1.5s ease;
}

.hero-slide-1 {
  background-image: url("image/EBT1.jpg");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("image/EBT3.jpg");
  animation-delay: 7s;
}

.hero-slide-3 {
  background-image: url("image/EBT4.jpg");
  animation-delay: 14s;
}

.hero-slide-4 {
  background-image: url("image/EBT6.jpg");
  animation-delay: 21s;
}

.hero-slide-5 {
  background-image: url("image/Lepord.jpg");
  animation-delay: 28s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMinimize {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
}


@keyframes heroSlideShow {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  5%,
  17% {
    opacity: 1;
    transform: scale(1);
  }
  24%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
    padding: clamp(2.5rem, 10vw, 3.5rem) clamp(1.2rem, 5vw, 2.5rem);
  }

  .hero-content {
    min-height: auto;
    animation-delay: 1s, 7s;
  }

  .experience-media,
  .experience-media::after {
    min-height: 240px;
  }

  .experience-body {
    padding: 1.5rem;
    gap: 0.8rem;
  }
}
}

main {
  padding: 4vw;
}

section {
  margin-bottom: 5rem;
  background: var(--white);
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  position: relative;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 0.5rem;
}

.section-heading span {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border-radius: 28px;
  padding: 2rem;
  background: linear-gradient(145deg, var(--white), #f9f8f4);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 61, 54, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card h3 {
  margin-bottom: 0.2rem;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.9rem;
  color: var(--slate);
}

.placeholder {
  background: var(--mist);
  border-radius: 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-photo {
  border-radius: 24px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-card);
}

.routes-map {
  min-height: 280px;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(160deg, #d8d8d8, #b5b5b5);
  overflow: hidden;
}

.routes-map svg {
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid .placeholder {
  min-height: 180px;
  border-radius: 18px;
}

.experience-showcase {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(280px, 40%) 1fr;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0;
  box-shadow: 0 45px 90px rgba(5, 33, 28, 0.15);
  overflow: hidden;
}

.experience-media {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 65%);
}

.experience-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, rgba(5, 33, 28, 0.9), rgba(15, 61, 54, 0.5));
}

.experience-media.placeholder::after {
  background: rgba(0, 0, 0, 0.35);
}

.experience-body {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--charcoal);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.experience-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--gold);
}

.experience-meta {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(5, 33, 28, 0.12);
  display: grid;
  gap: 0.4rem;
}

.experience-meta li {
  font-size: 0.9rem;
  color: var(--slate);
}

.experience-meta strong {
  color: var(--charcoal);
  font-weight: 600;
  margin-right: 0.4rem;
}

@media (max-width: 900px) {
  .experience-card {
    grid-template-columns: 1fr;
  }

  .experience-media,
  .experience-media::after {
    min-height: 260px;
  }
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.form-actions {
  grid-column: 1 / -1;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 61, 54, 0.2);
  border-radius: 18px;
  padding: 0.95rem 1.2rem;
  background: #fdfdfb;
  font-size: 1rem;
  transition: border 0.2s ease;
}

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

footer {
  padding: 3rem 4vw;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

footer a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.map-embed {
  border: none;
  border-radius: 24px;
  width: 100%;
  min-height: 320px;
  box-shadow: var(--shadow-card);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1ebea5;
  font-weight: 600;
}

.whatsapp-link::before {
  content: "◉";
  font-size: 0.8rem;
}

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

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

body.menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .nav-shell {
    position: relative;
    z-index: 3;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #f7f4ef;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .logo-mobile {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .nav-shell {
    padding: 1rem 6vw;
  }

  .hero {
    min-height: 80vh;
    padding: 1rem 1rem 2rem;
  }

  .hero-shell {
    max-width: none;
    justify-content: flex-end;
  }

  .hero-content {
    min-height: auto;
    gap: 1.5rem;
    display: none;
    animation: heroFade 1s ease forwards;
    animation-delay: 0.8s;
  }

  main {
    padding: 6vw;
  }

  section {
    padding: 1.8rem;
  }

  .hero-shell {
    gap: 1.5rem;
  }

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

  .experience-card h3 {
    font-size: 1.25rem;
  }

  .experience-meta {
    font-size: 0.85rem;
  }
}

