@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");
:root {
  /* Warna utama */
  --color-bg-dark: #0d1b1e; /* Dark Forest */
  --color-card: #1f3a34; /* Deep Moss CARD or section background*/
  --color-primary: #2f5d50; /* Earth Green tombol heading hghlight */
  --color-accent: #65c18c; /* Leaf Accent aksen, tombol hover, icon */

  --color-secondary: #3498db;
  --color-text: #333;
  --color-card-bg: #ffffff;
  --color-primary: #2c3e50;
  --color-bg: #1c1c1d80;

  /* Teks */
  --color-text-main: #b9cfc4; /* Misty Sky */
  --color-text-secondary: #6e7b8b; /* Rock Gray */
}

/* Kumpulan Animasi */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 50ch;
  }
}
@keyframes typing-p {
  from {
    width: 0;
  }
  to {
    width: 50ch;
  }
}
@keyframes typing-H1-TentangKami {
  from {
    width: 0;
  }
  to {
    width: 20ch;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: #0300d1;
  }
  50% {
    border-color: #d1ca00;
  }
}
@keyframes blink-caret-p {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes scanline {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(102, 126, 234, 1);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* @keyframes blink-caret-p { */
/* from,to { border-color:#0300d1;} */
/* 50% { border-color: #d1ca00;} */
/* } */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  display: flex;
  flex-direction: column;
}

body {
  background-color: #fff;
  color: var(--color-text);
  font-family: "Open Sans", sans-serif;
}

/* Container untuk informasi camping */
.informasi-camping {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.informasi-camping > h2 {
  margin-top: 60px;
}

.informasi-camping > p {
  font-size: 1.1rem;
}

/* Styling untuk tabel */
.informasi-camping .tabel-camping-container {
}

.informasi-camping table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}

.informasi-camping th,
.informasi-camping td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

/* Styling header tabel */
.informasi-camping td {
  background-color: #eef6f1; /* Hijau muda untuk baris tabel */
}
.informasi-camping th {
  background-color: #2d6a4f; /* Hijau daun untuk latar belakang header */
  color: white;
  font-weight: bold;
}

/* Navbar Start */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 50px;
  /* background-color: var(--color-bg-dark); */
  background-color: #fff;
  /* background-color: #fff; */
  /* color: rgba(135, 206, 250, 0.7); */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background-color 0.4s ease-in-out;
}

.navbar-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #0a0a0a;
  /* color: #fff; */
  /* font-style: italic; */
}
.navbar-logo span {
  color: #948f8f;
  /* color: var(--color-text-secondary); */
  /* color: red; */
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
}

.navbar-nav a {
  font-size: 1.1rem;
  /* color: #fff; */
  color: #0a0a0a;
  /* color: red; */
  /* font-weight: 400; */
  /* color: rgba(135, 206, 250, 0.7); */
  /* color: rgba(0, 191, 255, 0.5); */
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  border-bottom: 0.1rem solid #927c7c;
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar-nav a:hover::after {
  /* color: #927c7c; */
  transform: scaleX(0.5);
}

.navbar-extra {
  font-size: 1.3rem;
  display: flex;
  gap: 20px;
}

.navbar .navbar-extra a::after {
  content: "";
  display: block;
  border-bottom: 0.1rem solid #927c7c;
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar-extra a:hover::after {
  /* color: #927c7c; */
  transform: scaleX(0.5);
}

.user-dropdown.default {
  position: relative;
  /* display: inline-block; */
  display: none;
}

.user-dropdown.mobile {
  position: relative;
  display: inline-block;
  /* display: none; */
}

/* .user-toggle { */
/* display: flex; */
/* align-items: center; */
/* cursor: pointer; */
/* background-color: red; */
/* } */

.user-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  /* background: linear-gradient( */
  /* 135deg, */
  /* var(--color-primary) 0%, */
  /* var(--color-accent) 100% */
  /* ); */

  /* background: linear-gradient(135deg, var(--color-primary), var(--color-card)); */
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 1px solid rgba(101, 193, 140, 0.2); */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}

.user-name {
  font-size: 1rem;
  font-weight: bold;
  /* color: #333; */
}

.arrow-down {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.3s ease;
}

.arrow-down.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background-color: #e6dbdb;
  /* background: linear-gradient( */
  /* 135deg, */
  /* var(--color-primary) 0%, */
  /* var(--color-accent) 100% */
  /* ); */
  /* background-color: rgb(32, 85, 35); */
  border: 1px solid #ddd;
  border-radius: 10px;
  min-width: 200px;
  z-index: 999;
  flex-direction: row;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show-flex {
  display: flex; /* inilah yang memunculkannya dan membuat a jadi horizontal */
}

.dropdown-menu a {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;

  /* flex: 1; */
  /* display: block; */
  /* padding: 10px 15px; */
  /* color: #333; */
  /* text-decoration: none; */
}

.dropdown-menu a:hover {
  background-color: #928b8b;
}

.navbar-nav.active.show-dropdown {
  padding-bottom: 4rem; /* atau sesuai kebutuhanmu */
  transition: padding-bottom 0.3s ease;
}

/* .logout { */
/* color: red; */
/* } */

/* Sembunyikan daftar & masuk di mobile */
#Daftar-none,
#Masuk-none,
#Logout-none {
  display: none;
}

.navbar-extra a {
  font-size: 1.1rem;
  color: #0a0a0a;
  /* color: #fff; */
}

#hamburger-menu {
  display: none;
  cursor: pointer;
}

#hamburger-menu:hover {
  color: #927c7c;
}

.solid {
  /* background-color: var(--color-bg-dark); */
  /* background-color: #d9dfea; */
  /* background-color: #e6dbdb; */
}

.solidHamburger {
  background-color: #d9dfea;
}
/* Navbar End */

/* Main Start */

.hero {
  /* background-color: red; */
  padding: 60px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero::after {
  background-image: var(--bg-after); /* untuk sisi lain */
  opacity: 0;
}

.hero::before {
  opacity: 1;
}

.fade-to-after::before {
  opacity: 0;
}
.fade-to-after::after {
  opacity: 1;
}

.fade-to-before::before {
  opacity: 1;
}
.fade-to-before::after {
  opacity: 0;
}
/*  */
.hero-text {
  /* background-color: red; */
  color: rgb(252, 243, 243);
  z-index: 1;
  position: relative;
  font-family: "Playfair Display", sans-serif;
}

/* .hero-text .judul, .deskripsi { */
/* transition: color 0.5s ease, font-family 0.5s ease; */
/* } */

.container-hero-text .judul {
  /* background-color: red; */
  /* font-family: "Cormorant Garamond", serif; */
  /* background: linear-gradient(135deg, #21ffa6, #e0ffe7); */
  /* text-shadow: 2px 2px 6px rgb(255, 249, 249); */
  /* background: linear-gradient(135deg, #ffffff, #4ae8ff, #58d68d); */
  color: #fff; /* fallback color if background-clip fails */

  /* text-shadow: 0 0 6px rgba(255, 255, 255, 0.6), */
  /* 0 0 10px rgba(50, 200, 150, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.5); */

  /* -webkit-background-clip: text; */
  /* Membatasi gradasi hanya di bagian teks */
  /* -webkit-text-fill-color: transparent; */
  /* Menjadikan warna teks transparan agar gradasi terlihat (khusus WebKit) */
  font-weight: bold;
  text-transform: capitalize;
  font-size: 2rem;
  display: inline-block;
  overflow: visible;
  white-space: normal;
  animation: none 3.5s steps(40, end);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.container-hero-text .deskripsi {
  /* background-color: blue; */
  /* font-family: "Montserrat", sans-serif; */
  /* background: linear-gradient( */
  /* 135deg, */
  /* #e0ffff, */
  /* #ccffcc */
  /* );  */
  /* background: linear-gradient(135deg, #ffffff, #95e6ff, #c5f6a7); */
  /* background: linear-gradient(135deg, #ffffff, #95e6ff, #c5f6a7); */
  color: #fefefe;
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */

  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); */
  /* text-shadow: 0 0 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.4); */
  /* text-shadow: 0 0 4px rgba(255, 255, 255, 0.4), 0 0 8px rgba(0, 0, 0, 0.5); */

  font-weight: bold;
  text-transform: capitalize;
  margin: 0 auto;
  font-size: 1.5rem;
  overflow: visible;
  white-space: normal;
  letter-spacing: 0.05em;
  animation: none 3s steps(40, end);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.container-hero-text .deskripsi-dua {
  color: #fffef8;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 auto;
  font-size: 2rem;
  overflow: visible;
  white-space: normal;
  letter-spacing: 0.05em;
  animation: none 3s steps(40, end);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.hero-buttons {
  /* margin-top: 20px; */
}

.btn {
  background-color: #c9bfbf;
  display: inline-block;
  /* padding: 10px 20px; */
  margin: 10px 10px;
  border: 2px solid rgb(154, 141, 141);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-gallery {
  animation: fadeInLeft 1s ease forwards;
  transition: all 500ms;
}

.btn-pesan-tiket {
  animation: fadeInRight 1s ease forwards;
  transition: all 500ms;
}

.btn:hover {
  background-color: white;
  color: black;
  transition: all 500ms;
}

.btn-pesan-tiket {
  background-color: #4caf50;
  border: none;
  color: white;
}

.btn-pesan-tiket:hover {
  /* background-color: #45a049; */
  background-color: white;
  /* transition: all 500ms; */
  /* transition: opacity 2s  ; */
}

/* Main End */

/* Tentang Kami Start */
.tentangKami-container {
  /* background-color: red; */
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  /* padding: 90px; */
  /* padding: 0 20px; */
}

/* Section Intro - Siapa Kami */
.tentangKami-intro {
  background: linear-gradient(135deg, #a6c2a9 0%, #4a7c59 100%);
  color: white;
  height: auto;
  padding: 20px;
  text-align: justify;
  padding-top: 80px;
  /* padding-bottom: 20px; */
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.siapa-kami p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.siapa-kami p:last-child {
  /* display: none; */
  font-size: 1.2rem;
  line-height: 1.8;
  /* max-width: 800px; */
  margin: 0 auto 30px;
  opacity: 0.95;
}

.toggleButton {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  /* display: inline-flex; */
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
}

.toggleButton:hover {
  background: white;
  color: #2c5530;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Visi Misi Section */
.unix-tentang-kami {
  padding: 20px 0;
  background: white;
}

.unix-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.unix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.unix-col {
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unix-visi {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edd4 100%);
  border-left: 5px solid #4a7c59;
}

.unix-misi {
  background: linear-gradient(135deg, #f0f8f0 0%, #e0f0e0 100%);
  border-left: 5px solid #2c5530;
}

.unix-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unix-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.unix-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #4a7c59;
  border-radius: 2px;
  align-self: flex-start;
}

.unix-visi p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.unix-misi ul {
  list-style: none;
}

.unix-misi li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.unix-misi li::before {
  content: "🌲";
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Apa yang Membuat Kami Berbeda */
.apa-yang-membuat-kami-berbeda {
  /* background-color: rgb(172, 153, 153); */

  padding: 20px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.tentangKami-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.tentangKami-grid h2 {
  grid-column: 1 / -1;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5530;
  text-align: center;
  text-transform: capitalize;
}

.tentangKami-grid p {
  background: white;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #555;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tentangKami-grid p::before {
  content: "✓";
  width: 25px;
  height: 25px;
  background: #4a7c59;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tentangKami-grid p:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Gallery Grid */
.tentangKami-gallery-grid {
  box-sizing: border-box;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: minmax(200px, 300px) minmax(200px, 300px); */
  grid-template-areas:
    "square-atas  landscape-atas landscape-atas "
    "landscape-bawah landscape-bawah square-bawah";
  gap: 10px;
  margin-top: 20px;
}

.img-box {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box:hover {
  transform: scale(1.02);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.img-box:hover img {
  transform: scale(1.1);
}

.landscape-atas {
  grid-area: landscape-atas;
}

.square-atas {
  grid-area: square-atas;
}

.landscape-bawah {
  grid-area: landscape-bawah;
}

.square-bawah {
  grid-area: square-bawah;
}
/* Tim Kami Section */
.tentangKami-tim {
  padding: 80px 0;
  background: white;
}

.tentangKami-tim h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5530;
  text-align: center;
  margin-bottom: 60px;
}

.tentangKami-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tentangKami-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tentangKami-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #4a7c59;
}

.tentangKami-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #4a7c59;
  transition: transform 0.3s ease;
}

.tentangKami-card:hover img {
  transform: scale(1.1);
}

.tentangKami-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 8px;
}

.tentangKami-card p {
  font-size: 1rem;
  color: #666;
  /* font-style: italic; */
}

/* Footer Promo Section */
.tentangKami-footerPromo {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
  color: white;
}

.tentangKami-footerLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tentangKami-footerText h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tentangKami-footerText p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.tentangKami-btn {
  display: inline-block;
  background: white;
  color: #2c5530;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tentangKami-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

.tentangKami-mapWrapper {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.tentangKami-mapWrapper iframe {
  filter: grayscale(20%) contrast(1.1);
}

/* HR Styling */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 0 20px;
}

/* Tentang Kami End */

/* Galery Start */

.header-galery {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-card) 50%,
    var(--color-accent) 100%
  );
  margin-top: 50px;
  margin-bottom: 10px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-galery::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  /* animation: rotate 10s linear infinite; */
}

.header-galery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.header-galery h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg, #fff, var(--color-text-main), #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  animation: textShine 3s ease-in-out infinite;
  letter-spacing: 2px;
}
/*  */
.container-galery {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
}

/* Container Foto */
.container-foto {
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 20px;
  overflow: hidden;
}

/* Navigasi Kategori */
.tentang-kita {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tentang-kita h5 {
  cursor: pointer;
  padding-bottom: 5px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(var(--color-primary), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tentang-kita h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cbc4c4; /* sesuaikan warna */
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.tentang-kita h5.active::after {
  width: 0;
  opacity: 0;
}

.Bingkai {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.Bingkai:nth-child(3) {
  animation-delay: 0.2s;
}
.Bingkai:nth-child(4) {
  animation-delay: 0.4s;
}
.Bingkai:nth-child(5) {
  animation-delay: 0.6s;
}

.Bingkai img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--color-text-main);
  /* border: 3px solid #f8f9fa; */
}

.Bingkai img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--color-text-secondary);
  /* border-color: #e9ecef; */
  filter: brightness(1.1);
}

/* Judul dan Konten */
.vidio {
  /* background-color: red; */
  width: 100%;
  /* margin: 0 auto; */
  /* margin-bottom: 90px; */
  /* padding: 10px; */
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Judul dengan Neon Glow */
.vidio h2 {
  font-size: 3rem;
  color: var(--color-accent);
  text-align: center;
  margin: 10px auto;
  font-weight: 800;
  padding-bottom: 20px;
  text-shadow: 5px 5px 8px rgb(186, 183, 183);
  /* margin: 10px 0 50px; */
  /* position: relative; */
  /* animation: gradientMove 3s ease-in-out infinite; */
  /* text-shadow: 0 0 20px rgba(102, 126, 234, 0.5); */
}

/* .vidio h2 { */
/* font-size: 2.5rem; */
/* color: var(--color-text); */
/* text-align: center; */
/* margin: 60px 0 40px; */
/* font-weight: 700; */
/* position: relative; */
/* padding-bottom: 15px; */
/* } */

.vidio h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;

  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-card),
    var(--color-accent)
  );
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(var(--color-primary), 0.6);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Video Container */

/* Video Container - Futuristic */
.video-container {
  max-width: 1200px;
  width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  /* position: relative; */
  /* z-index: 1; */
}

/* .video-container::before { */
/* content: ""; */
/* position: absolute; */
/* top: -2px; */
/* left: -2px; */
/* right: -2px; */
/* bottom: -2px; */
/* background: linear-gradient( */
/* 45deg, */
/* var(--color-primary), */
/* var(--color-card), */
/* var(--color-accent), */
/* var(--color-primary) */
/* ); */
/* background-size: 400% 400%; */
/* border-radius: 32px; */
/* z-index: 0; */
/* animation: borderGlow 4s ease-in-out infinite; */
/* } */

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
  position: relative;
  z-index: 2;
}

/* .video-container iframe { */
/* width: 100%; */
/* height: 450px; */
/* border-radius: 15px; */
/* } */

/* Galeri End */

/* pesan tiket Start */

/* pesan tiket End */
/* form paket start*/

.formInput {
  padding: 80px 20px;
  /* height: 600px; */
  /* background-color: #aaa; */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.booking-form {
  /* position: absolute; */
  /* background: rgba(255, 255, 255, 0.75); */
  background-color: #aaa;
  backdrop-filter: blur(10px); /* efek blur */
  border-radius: 20px;
  padding: 30px;
  width: 500px;
  /* max-width: 100%; */
  /* max-width: 400px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking-form h4 {
  text-align: center;
  color: #3c3f3d;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.pilih-perlengkapan {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #3c3f3d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.bungkus {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 5px;
}
.kotak-perlengkapan {
  /* background-color: red; */
  text-align: center;
}

.nama-perlengkapan {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
  color: #3c3f3d;
}

.booking-form #name {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #nomor {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #jumlah {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #jenisKendaraan {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #Motor {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #Mobil {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #Lahan {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  /* font-size: 1rem; */
  outline: none;
  transition: 0.3s;
}

.booking-form #paket {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  /* border: 1px solid #ccc; */
  border: 1px solid #ff0000;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #rute {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #tanggal {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.booking-form #paketTenda {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.form-check.satu {
  display: flex;
  padding: 10px 15px;
  gap: 10px;
  border-radius: 15px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
  color: black;
}

#perlengkapanList {
  /* background-color: blue; */
  padding: 10px;
}

.container-perlengkapan {
  background-color: #a19b9b;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 10px;
  /* background-color: red; */
}

.container-perlengkapan .form-check {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  gap: 10px;
  background-color: #23cae0;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #66bb6a;
  box-shadow: 0 0 5px rgba(102, 187, 106, 0.3);
}

.btn-submit {
  background-color: #25d366;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #1ebe5d;
}

.booking-form a {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #388e3c;
  text-decoration: none;
}

.booking-form a:hover {
  text-decoration: underline;
}
/* form paket end*/

/* Footer Start*/
.footer {
  /* background-color: var(--color-bg-dark); */
  /* background-color: #fff; */
  background-color: #fff;
  /* background-color: #d4c8c8; */
  /* position: fixed; */
  /* z-index: 9999; */
  color: #0a0a0a;
  /* color: #fff; */
  text-align: center;
  padding: 20px 0;
  /* position: absolute; */
  /* bottom: 0; */
  width: 100%;
}

.footer-content {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.social-media {
  margin-top: 10px;
}

.social-media a {
  padding: 10px;
}

.social-media a i {
  /* color: var(--color-card-bg); */
  color: rgb(0, 0, 0);

  font-size: 2rem;
}

.social-media a i:hover {
  color: #948979;
  font-size: 2rem;
}

/* Footer End*/

/* Media query */

/* Laptop */
@media (min-width: 1366px) {
  html {
    /* font-size: 75%; */
  }
}

/* Responsif untuk tablet dan ponsel */
@media (max-width: 768px) {
  /* Navbar Start  */
  .navbar-logo {
    /* font-size: 2rem; */
  }
  .navbar-nav {
    /* background-color: #e6dbdb; */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 999;
    /* overflow-y: auto; */
  }
  .navbar-nav.active {
    background: linear-gradient(135deg, #a6c2a9 0%, #4a7c59 100%);
    /* overflow: auto; */
    /* height: auto; */
    max-height: 900px;
    opacity: 1;
    padding: 2rem 0;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  .navbar-nav.active a {
    /* color: var(--color-card); */
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    /* text-shadow: 0 0 20px var(--color-accent); */
    /* text-shadow: 0 0 20px var(--color-text); */
  }
  .navbar-nav.active .dropdown-menu {
    background: linear-gradient(135deg, #a6c2a9 0%, #4a7c59 100%);
  }

  .arrow-down {
    /* background: #ffffff; */
    /* border-left: 5px solid transparent; */
    /* border-right: 5px solid transparent; */
    border-top: 6px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  #Daftar,
  #Masuk {
    display: none;
  }
  #Daftar-none,
  #Masuk-none,
  #Logout-none {
    display: inline-block;
  }
  #hamburger-menu {
    display: inline-block;
    /* color: #393e46 !important; */
  }
  .user-dropdown.default {
    position: relative;
    display: inline-block;
    /* display: none; */
  }

  .user-dropdown.mobile {
    /* display: inline-block; */
    display: none;
  }

  /* Navbar End */

  /* Home Start */
  .hero-text {
    /* background-color: rgb(83, 83, 137); */
    /* padding: 20px 0; */
    /* width: 100%; */
  }
  .hero-text .judul {
    display: inline-block;
    transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease;
    font-size: 1.3rem;
    /* background-color: rgb(216, 246, 172); */
    /* width: 100%; */
  }
  .hero-text .deskripsi {
    transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease;
    font-size: 1.1rem;
    /* background-color: grey; */
    /* width: 100%; */
  }
  .hero-text .deskripsi-dua {
    transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease;
    font-size: 1.3rem;
    /* background-color: grey; */
    /* width: 100%; */
  }
  /* Home End */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* min-height: 400px; */
    background: #e0f7fa; /* contoh background */
    padding: 40px 20px;
    text-align: center;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    /* background-color: red; */
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 500px;
  }

  /* Tentang Kami Start */
  .tentangKami-intro {
    /* height: 250px; */
    /* padding: 70px 0 20px; */
  }

  .toggleButton {
    display: inline-flex;
  }

  .unix-container {
    padding: 0 15px;
  }

  .siapa-kami p:first-child {
    font-size: 1.3rem;
  }

  .siapa-kami p:last-child {
    display: none;
    font-size: 1.1rem;
    max-width: 600px;
  }

  .toggleButton {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  /* Visi Misi */
  .unix-tentang-kami {
    padding: 60px 0;
  }

  .unix-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .unix-col {
    padding: 30px;
  }

  .unix-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  /* Apa yang Membuat Kami Berbeda */
  .apa-yang-membuat-kami-berbeda {
    padding: 60px 0;
  }

  .tentangKami-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .tentangKami-grid h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .tentangKami-grid p {
    padding: 20px;
    font-size: 1rem;
  }
  /* Tentang Kami End */
  /* Gallery Grid */
  /* .tentangKami-gallery-grid { */
  /* grid-template-columns: 1fr; */
  /* grid-template-rows: repeat(4, 200px); */
  /* height: auto; */
  /* } */
  /*  */
  /* .landscape-atas { */
  /* grid-column: 1; */
  /* grid-row: 1; */
  /* } */
  /*  */
  /* .square-atas { */
  /* grid-column: 1; */
  /* grid-row: 2; */
  /* } */
  /*  */
  /* .landscape-bawah { */
  /* grid-column: 1; */
  /* grid-row: 3; */
  /* } */
  /*  */
  /* .square-bawah { */
  /* grid-column: 1; */
  /* grid-row: 4; */
  /* } */

  /* Tim Kami */
  .tentangKami-tim {
    padding: 60px 0;
  }

  .tentangKami-tim h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .tentangKami-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .tentangKami-card {
    padding: 25px 15px;
  }

  .tentangKami-card img {
    width: 100px;
    height: 100px;
  }

  /* Footer Promo */
  .tentangKami-footerPromo {
    padding: 60px 0;
  }

  .tentangKami-footerLayout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tentangKami-footerText h2 {
    font-size: 2rem;
  }

  .tentangKami-footerText p {
    font-size: 1.1rem;
  }

  .tentangKami-mapWrapper {
    height: 300px;
  }
  /* tentang kami end */

  /* Galery Start  */

  /* .header-galery h1 { */
  /* font-size: 3rem; */
  /* letter-spacing: 1px; */
  /* } */

  .container-foto {
    border-radius: 20px;
    /* margin-bottom: 20px; */
  }

  .vidio {
    width: 100%;
    max-width: 768px;
    width: 100%;
    padding: 20px;
  }

  .vidio h2 {
    font-size: 2rem;
    margin: 10px auto;
  }

  .vidio h2::after {
    width: 100px;
    height: 4px;
  }

  .video-container {
    /* padding: 16px; */
    width: 100%;
    aspect-ratio: 19 / 14;
    padding: 15px;
    border-radius: 20px;
  }

  /* Galery End  */

  /* popup content start*/
  /* pesan tiket Start */
  /* pesan tiket end */
}

@media (max-width: 600px) {
  .navbar-nav {
    font-size: 1.3rem;
  }

  /* Home Start */
  /* Home End */

  /* Tengtang Kami Start */

  .container-tiket {
    padding: 15px;
  }

  .container-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .container-paket h2 {
    font-size: 1.8rem;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons a,
  .buttons button {
    width: 100%;
    text-align: center;
  }
  /* Tentang Kami End */

  /* Galery Start */
  .Bingkai {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 10px; */
  }

  .vidio h2 {
    font-size: 2rem; /* Biar tidak kepanjangan */
    margin: 10px auto;
  }

  .video-container {
    width: 100%;
    max-width: 90%;
    aspect-ratio: 4 / 3;
    /* padding: 10px; */
    border-radius: 20px;
    /* aspect-ratio: 16 / 9; */
  }
  /* Galery End */

  @media (max-width: 480px) {
    /* Tentang Kami Start */

    /* Tentang Kami End */
  }

  /* Responsif untuk ponsel */
  @media (max-width: 450px) {
    /* @media (max-width: 576px) { */
    html,
    html {
      height: 100vh;
      margin: 0;
      /* font-size: 55%; */
    }
    .navbar-nav {
    }
    .navbar-nav {
      background-color: #393e46;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 0;
      z-index: 999;
    }
    .navbar-nav.active.show-dropdown {
      padding-bottom: 4rem; /* atau sesuai kebutuhanmu */
      transition: padding-bottom 0.3s ease;
    }

    #Daftar,
    #Masuk {
      display: none;
    }
    #Daftar-none,
    #Masuk-none {
      display: inline-block;
    }
    #hamburger-menu {
      display: inline-block;
      color: #393e46;
    }
    /* Home Start */
    .hero-text {
      /* padding: 20px 0; */
      /* background-color: rgb(83, 83, 137); */
      /* width: 100%; */
    }
    .hero-text .judul {
      display: inline-block;
      transition: font-size 0.5s ease, color 0.5s ease-out,
        text-shadow 0.5s ease;
      /* background-color: rgb(216, 246, 172); */
      font-size: 1rem;
      /* width: 100%; */
    }
    .hero-text .deskripsi {
      transition: font-size 0.5s ease, color 0.5s ease-out,
        text-shadow 0.5s ease;
      font-size: 0.9rem;
      /* background-color: grey; */
      /* width: 100%; */
    }
    .hero-text .deskripsi-dua {
      transition: font-size 0.5s ease, color 0.5s ease-out,
        text-shadow 0.5s ease;
      font-size: 0.9rem;
      /* background-color: grey; */
      /* width: 100%; */
    }
    /* Home End */
    /* Tentang Kami Start */
    .tentangKami-container {
      padding: 0 15px;
    }
    .siapa-kami p:first-child {
      font-size: 1rem;
      /* font-size: 1px; */
    }
    .siapa-kami p:last-child {
      font-size: 1rem;
    }
    .unix-col {
      padding: 20px;
    }
    .tentangKami-cards {
      grid-template-columns: 1fr;
    }
    .tentangKami-card {
      padding: 25px 15px;
    }
    .tentangKami-gallery-grid {
      grid-template-rows: repeat(2, 130px);
    }
  }
  .tentangKami-section {
    animation: fadeInUp 0.6s ease-out;
  }
  /* Tentang Kami End */

  /* Galery Start */
  /* .tentang-kita { */
  /* display: flex; */
  /* justify-content: center; */
  /* gap: 10px; */
  /* margin-bottom: 40px; */
  /* flex-wrap: wrap; */
  /* } */
  /*  */
  /* .tentang-kita h5 { */
  /* padding: 15px 30px; */
  /* border-radius: 50px; */
  /* font-size: 0.6rem; */
  /* font-weight: 700; */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  /* } */

  .Bingkai {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 10px; */
    margin-bottom: 10px;
    opacity: 0;
  }
  .vidio h2 {
    /* font-size: 1.8rem; */
    /* margin: 50px 0 25px; */
  }

  .vidio h2::after {
    /* width: 80px; */
    /* height: 4px; */
  }
  /* galery end */
  /* Pesan Tiket start */
  /* Pesan Tiket End */
  /* form Input Start*/
  /* form Input End*/
}

@media (max-width: 375px) {
  /* Home Start */
  .hero-text {
    /* padding: 20px 0; */
    /* background-color: rgb(83, 83, 137); */
    /* width: 100%; */
  }
  /* .hero-text .judul { */
  /* display: inline-block; */
  /* transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease; */
  /* font-size: 1rem; */
  /* } */
  /* .hero-text .deskripsi { */
  /* transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease; */
  /* background-color: grey; */
  /* } */
  /* .hero-text .deskripsi-dua { */
  /* transition: font-size 0.5s ease, color 0.5s ease-out, text-shadow 0.5s ease; */
  /* font-size: 1px; */
  /* } */
  /* Home End */

  /* Galery Start */
  .Bingkai {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 5px; */
    /* margin-bottom: 10px; */
    opacity: 0;
  }

  .vidio h2 {
    font-size: 1.6rem;
  }

  .vidio h2::after {
    width: 70px;
    height: 3px;
  }
  /* Galery End */

  /* Tentang Kami Start */
  .tentangKami-gallery-grid {
    grid-template-rows: repeat(2, 100px);
  }
  /* Tentang Kami End */

  /* Pesan Tiket Start */
  /* Pesan Tiket End */
}
