/* ====== RESET & GLOBAL STYLES ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus {
  outline: none;
}

/* ====== REUSABLE SECTION STYLES ====== */
section {
  padding: 3.5rem 1.25rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  height: 100vh;
  background: url("./img/hero-img.2.jpg");
  background-position: center;
  background-size: cover;
  padding: 3.75rem 1.25rem;
  color: #ffffff;
  z-index: 0;
  font-family: "lemon milk";
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 3%,
    rgba(255, 255, 255, 0) 20%
  );
}

.hero .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.29);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero h1 {
  font-size: 2.5rem;
  z-index: 4;
  text-align: left;
  line-height: 4rem;
}

.hero h2 {
  font-size: 1.3rem;
  z-index: 4;

  margin: -2rem 0 0;
}

.hero p {
  font-weight: 500;
  z-index: 4;
}
.hero-buttons button {
  padding: 0.625rem 1.25rem;
  margin: 0.625rem;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  z-index: 2;
}

.btn-wa {
  width: 14rem;
  margin: 1rem 0;
  padding: 0.6rem 0.9rem;
  text-align: center;
  border-radius: 10px;
  background-color: #25d366;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.2s ease;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  z-index: 3;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn-scroll {
  background-color: #007bff;
  width: 14rem;
  padding: 0.6rem 0.9rem;
  text-align: center;
  border-radius: 10px;

  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.2s ease;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  z-index: 3;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn-wa:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.btn-scroll:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

/* ====== ABOUT SECTION ====== */
.about {
  position: relative;
  background-color: whitesmoke;
}

.about-img-container {
  width: 60%;
  left: 0;
  right: 0;
  margin: -1rem auto 2rem;
}

.about-img-container img {
  width: 100%;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Poppins";
}

.about p {
  text-align: center;
  font-size: 1.1rem;
}

.about .img-container {
  display: flex;
  align-items: center;
  justify-content: space-around;

  margin: 2rem 0;
}

.about .img-container img {
  width: 5rem;
}
/* ====== SERVICES SECTION ====== */
.services {
  background-color: white;
}

.services h2 {
  text-align: center;
}

.brosur-container {
  margin: 2rem 0;
}

.brosur-container img {
  width: 300px;
  box-shadow: 1px 2px 5px black;
}

.brosur-container h3 {
  margin: 2rem 0 1rem;
}

.brosur-container div {
  font-size: 0.9rem;
}
/* ====== PORTOFOLIO SECTION ====== */
.gallery-section {
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}

.slider {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dots {
  text-align: center;
  margin-top: 1rem;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dots .active {
  background: #6ec6ff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

#overlay-img {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ====== CONTACT SECTION ====== */
.contact {
  background-color: white;
}

/* ====== FIXED WHATSAPP BUTTON ====== */
.fixed-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: #25d366;
  color: white;
  padding: 0.625rem 0.9375rem;
  border-radius: 3.125rem;
  font-size: 1rem;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.2s ease;
  -webkit-border-radius: 3.125rem;
  -moz-border-radius: 3.125rem;
  -ms-border-radius: 3.125rem;
  -o-border-radius: 3.125rem;
}

.fixed-wa:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.wa-indicator {
  position: fixed;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1001;
  animation: bounce 1.2s infinite;
  color: red;
  font-size: 4.35rem;
  -webkit-animation: bounce 1.2s infinite;
}

.wa-indicator img {
  width: 6rem;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
  }
}

/* ====== CONTACT SECTION CARD ====== */
.contact-card {
  width: 90%;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-card img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.9375rem;
}

/* ====== gradient  ====== */

/* ====== ittenerary  ====== */

.itinerary-container {
  max-width: 700px;
  margin: auto;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.day {
  margin-bottom: 1rem;
  cursor: pointer;
}

.title {
  background: #3399cc;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.content {
  padding: 0.75rem 1rem;
  border-left: 3px solid #3399cc;
  background: #eaf6fb;
  display: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

.note {
  font-size: 0.85rem;
  color: #b00000;
  margin-top: 2rem;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* services slider */

.image-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  border-radius: 10px;
}

.image-slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.image-slider-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.slider-indicator-bar {
  position: relative;
  height: 4px;
  background-color: #ddd;
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.slider-indicator-fill {
  height: 100%;
  width: 33.33%; /* Jumlah slide = 3, jadi 100 / 3 */
  background-color: #007bff;
  transition: transform 0.4s ease-in-out;
  transform: translateX(0%);
}
