/* ================= BASE ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* ================= NAVBAR ================= */
header.nav {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header.nav .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.nav img {
  max-height: 55px;
}
header.nav a {
  color: #fff;
  margin: 0 0.6rem;
  text-decoration: none;
  font-weight: 500;
}
header.nav a:hover {
  color: #ffdd55;
}
header.nav a.active {
  border-bottom: 2px solid #ffdd55;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-slider .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 1rem;
}
.hero-slider h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-slider p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-slider .btn {
  display: inline-block;
  background: #ffdd55;
  color: #000;
  padding: 0.6rem 1.2rem;
  margin: 0.3rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
}
.hero-slider .btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.slider-controls .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.slider-controls .dot.active {
  opacity: 1;
  background: #ffdd55;
}

/* ================= PRICING ================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.price-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.price-card h3 {
  font-family: 'Playfair Display', serif;
  color: #333;
}
.price-card .duration {
  color: #777;
  margin-bottom: 1rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.price-card ul li {
  margin: 0.3rem 0;
}
.price-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #006600;
}
.price-card.highlight {
  border: 2px solid #ffdd55;
  transform: scale(1.05);
}

/* ================= DESTINATIONS ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card .pad {
  padding: 1rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}
.btn.small {
  display: inline-block;
  background: #ffdd55;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials .card {
  text-align: center;
  padding: 1.5rem;
}
.testimonials .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ddd;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.footer a {
  color: #ffdd55;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.map iframe {
  border-radius: 0.8rem;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.whatsapp-fab img {
  width: 30px;
  height: 30px;
}
/* ================= PREMIUM GALLERY ================= */
.premium-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.premium-gallery img {
  width: 100%;
  height: 220px;       /* semua gambar punya tinggi sama */
  object-fit: cover;   /* crop biar rapi */
  border-radius: 0.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
