/* ============================
   DJALAN DJALAN JOGJA - FINAL STYLE (2025)
   ============================ */
   

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --theme-color: #1b5e20; /* hijau tua */
  --theme-color-hover: #2e7d32;
  --accent: #4aa848; /* kuning cerah */
  --bg-light: #f8f9fa;
  --text-dark: #222;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== NAVBAR FINAL ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(19, 81, 56, 1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
nav ul {
  position: fixed;
  z-index: 9999;
}


/* Efek saat scroll */
#navbar.scrolled {
  background-color: rgba(19, 81, 56, 0.9);
  backdrop-filter: blur(6px);
  padding: 6px 0;
}

/* Container */
#navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
}

/* Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* Link */
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

/* Hover */
.nav-links a:hover {
  color: #ffdd57;
}

/* Responsive */

/* ===== HAMBURGER (Mobile) ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu Style */
@media (max-width: 768px) {
  #navbar .container {
    justify-content: space-between;
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }

 .nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(19, 81, 56, .97);
  flex-direction: column;
  padding-top: 100px;
  gap: 25px;
  transition: 0.3s;
  z-index: 9999;
}


  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(19, 81, 56, 0.6), rgba(19, 81, 56, 0.6)),
              url("assets/images/photo-adventure1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--theme-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
#kontak .container {
  text-align: center;
}

.btn-primary:hover {
  background-color: #fff;
  color: var(--theme-color);
}

/* ======= TENTANG SECTION ======= */
.tentang-section {
  padding: 100px 20px;
  background: #0d0d0d; /* tema modern dark */
  color: #fff;
}

.tentang-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.tentang-logo img {
  width: 200px;
  max-width: 100%;
  align-items: center;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tentang-logo img:hover {
  transform: scale(1.05);
 
}

.tentang-text {
  flex: 1;
  min-width: 280px;
}

.tentang-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #135138, #3b6f5c); /* warna gradient */
  background-clip: text;              /* standar */
  -webkit-background-clip: text;      /* untuk Chrome/Safari */
  color: transparent;                 /* fallback standar */
  -webkit-text-fill-color: transparent; /* biar gradient-nya keliatan */
}


.tentang-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .tentang-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .tentang-logo img {
    width: 150px;

  }

  .tentang-text h2 {
    font-size: 1.8rem;
  }

  .tentang-text p {
    font-size: 1rem;
  }
}
/* Efek Bounce Logo */
.tentang-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  animation: bounce 3s infinite ease-in-out;
}

/* Animasi bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-10px);
  }
}


/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #555;
}

/* ===== PAKET SECTION ===== */
.paket-section {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.paket-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.paket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.paket-card h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.paket-card p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* ===== ANIMASI FADE-IN UNTUK KARTU ===== */
.paket-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* saat muncul di viewport */
.paket-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== CTA BUTTONS (FINAL 2025) ===== */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Dasar semua tombol */
.btn-primary,
.btn-choose,
.btn-detail {
  display: inline-block;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* Tombol hijau utama */
.btn-choose,
.btn-primary {
  background-color: var(--theme-color);
  color: #fff;
  border: 2px solid var(--theme-color);
  box-shadow: 0 3px 10px rgba(27, 94, 32, 0.25);
}

.btn-choose:hover,
.btn-primary:hover {
  background-color: var(--theme-color-hover);
  border-color: var(--theme-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Tombol kuning sekunder */
.btn-detail {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 10px rgba(59, 165, 45, 0.4);
}

.btn-detail:hover {
  background-color: #fff;
  color: var(--theme-color);
  border-color: var(--theme-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(27, 94, 32, 0.25);
}

/* Responsive tombol */
@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== DETAIL PAKET ===== */
.paket-detail {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.paket-detail h2 {
  font-size: 2rem;
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.paket-detail p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  padding: 0 1rem;
}

.detail-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* ===== ANIMASI FADE-IN UNTUK DETAIL CARD ===== */
.detail-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

/* Saat muncul di layar */
.detail-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DETAIL ===== */
@media (max-width: 768px) {
  .paket-detail h2 {
    font-size: 1.6rem;
  }
  .detail-card img {
    height: 180px;
  }
}

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

/* ===== PHOTO GRID (MASONRY STYLE) ===== */
.photo-grid {
  column-count: 3; /* jumlah kolom di desktop */
  column-gap: 15px;
  padding: 20px;
}

.photo-grid img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* ===== TAB MENU ===== */
.tab-menu {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--theme-color);
  color: #fff;
}

/* ===== TAMPILAN / SEMBUNYIKAN KONTEN ===== */
.tab-content {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}
.tab-content.active {
  display: block;
}

/* ===== FADE-IN UNTUK ELEMEN ===== */
.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}
.show {
  opacity: 1;
  max-height: 800px;
  transition: all 0.6s ease;
}

/* ===== TOMBOL ===== */
.lihat-semua {
  text-align: center;
  margin-top: 15px;
}

.btn-lihat {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-lihat:hover {
  background: #2b5e47;
}

/* ===== ANIMASI ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE SETTINGS */
@media (max-width: 1024px) {
  .photo-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .photo-grid {
    column-count: 1;
  }
}

/* ===== TESTIMONI ===== */
#testimoni {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

#testimoni h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #135138;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimoni-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimoni-item:hover {
  transform: translateY(-5px);
}

.testimoni-item p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.testimoni-item h4 {
  color: #135138;
  font-weight: 600;
}

.testimoni-item .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}


/* ===== FOOTER ===== */
footer {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
footer .credit {
  font-size: 0.5rem;
  color: #d5d5d5;
  margin-top: 5px;
}

footer .credit a {
  color: #ffd700; /* emas lembut, biar kelihatan eksklusif */
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

footer .credit a:hover {
  color: #fff6b3; /* efek glow halus waktu hover */
}


/* ===== WHATSAPP FLOAT ===== */
/* ===== FLOATING WHATSAPP BUTTONS ===== */
.wa-float {
  position: fixed;
  right: 18px;
  background: #25d366;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: 0.28s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover effect */
.wa-float:hover {
  transform: scale(1.08);
}

/* Button positions */
.wa-main {
  bottom: 20px;
}

.wa-second {
  bottom: 70px;
}

/* Optional: Responsive adjustment on extra small screens */
@media (max-width: 400px) {
  .wa-float {
    right: 12px;
    padding: 9px 12px;
    font-size: 13px;
  }
  .wa-main { bottom: 18px; }
  .wa-second { bottom: 62px; }
}

/* ===== BACK TO TOP (LOGO KIRI) ===== */
#backToTop {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999;
}

#backToTop img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

#backToTop:hover img {
  transform: scale(1.1);
  opacity: 1;
}
/* ===== FLOATING SOCIAL LEFT (FB & TIKTOK) ===== */
.float-social {
  position: fixed;
  left: 25px; /* sejajar dengan logo backToTop */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.92;
}

.float-social img {
  width: 26px;
  height: 26px;
}

/* Posisi bertingkat di atas logo backToTop */
.fb-float {
  bottom: 90px;  /* 25px + 55px (tinggi logo) + 10px jarak */
}

.tiktok-float {
  bottom: 150px; /* naik lagi 60px dari FB */
}

/* Hover effect */
.float-social:hover {
  transform: scale(1.12);
  opacity: 1;
}



/* === HERO SECTION CUSTOM BG + OVERLAY === */
#hero {
  position: relative;
  background: url('assets/images/hero-bg.webp') center center/cover no-repeat;
  background-attachment: fixed; /* efek parallax halus */
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0; /* sama dengan top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.55); /* overlay gelap */
  z-index: 1;
}

/* Pastikan konten di atas overlay */
#hero .hero-content {
  position: relative;
  z-index: 2;
}

/* gambar paket */
.detail-card {
  display: flex;
  flex-direction: column;
}

.detail-card img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-choose {
  display: block;
  text-align: center;
  background: #166534;
  color: #fff;
  font-weight: 700;
  text-transform: lowercase;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-radius: 0 0 14px 14px;
}



/*   Footer */
footer {
  background-color: #1b5e20; /* Hijau tua */
  color: #f0f0f0;
  padding: 40px 0; /* Jarak atas/bawah */
  font-size: 0.95rem;
  text-align: center; /* PENTING: Pastikan teks di footer terpusat */
}

/* Pengaturan Konten di Dalam Footer */
.footer-content {
  display: flex;
  flex-direction: column; 
  align-items: center; /* Pusatkan item secara horizontal */
  gap: 10px; 
  padding: 0 20px;
}

/* 3. Pengaturan Paragraph (Copyright) */
footer p {
  margin: 0;
  color: inherit;
  /* Tambahkan ini: */
  text-align: center; 
  width: 100%; /* Pastikan elemen <p> mengambil seluruh lebar container */
}

/* 4. Styling Developer Credit */
.developer-credit {
  font-size: 0.9rem; 
  opacity: 0.9;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 80%; 
  max-width: 400px;
  margin: 10px auto 0 auto; /* Ini yang membuat elemen credit terpusat */
  text-align: center; /* PENTING: Pastikan teks di dalam <p> credit terpusat */
}

.developer-credit a {
  color: #4aa848; 
  text-decoration: none; 
  font-weight: 700;
  transition: color 0.2s;
}

.developer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}
/* ===== NAVBAR MOBILE SLIDE VERSION ===== */
@media (max-width: 768px) {
  #navbar .container {
    justify-content: space-between;
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background: rgba(19, 81, 56, 0.97);
    flex-direction: row;
    gap: 18px;
    padding: 14px 20px;
    height: 52px;
    align-items: center;
    transition: 0.3s;
    border-radius: 0 0 0 12px;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 0;
    display: inline-block;
  }
}
/* ===== FLOATING WA BUTTONS ===== */
.wa-float {
  position: fixed;
  right: 18px;
  background: #25d366;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
}

.wa-float:hover {
  transform: scale(1.07);
}

.wa-main {
  bottom: 20px;
}

.wa-second {
  bottom: 70px;
}








