/* ===============================
   GLOBAL VARIABLES & RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ===============================
   TYPOGRAPHY
================================= */
h1, h2, h3 {
  font-family: "Marcellus", serif;
}

p {
  font-family: "Raleway", sans-serif;
}

img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}

button, .btn {
  transition: transform 0.3s ease;
}

button:hover, .btn:hover {
  transform: scale(1.1);
}

/* ===============================
   COLOR UTILITIES - SPA THEME
================================= */

/* === Gradient Backgrounds === */
.bg-gradient-sunset {
  background: linear-gradient(to right, #FFA773, #D94A38) !important; /* orange ke merah bata */
  color: #fff;
}

.bg-gradient-blush {
  background: linear-gradient(to right, #FFD7C2, #FFA773) !important; /* peach ke orange lembut */
  color: #5a3f37;
}

.bg-gradient-charcoal {
  background: linear-gradient(to right, #555555, #333333) !important; /* abu gelap ke charcoal */
  color: #fff;
}

.bg-gradient-earth {
  background: linear-gradient(to right, #a2836e, #e0c097) !important; /* earthy brown to soft cream */
  color: #fff;
}

.bg-gradient-zen {
  background: linear-gradient(to right, #c9d6ff, #e2e2e2) !important; /* soft blue to light grey */
  color: #333;
}

.bg-gradient-lavender {
  background: linear-gradient(to right, #b993d6, #8ca6db) !important; /* calm lavender to soft blue */
  color: #fff;
}

.bg-gradient-rose {
  background: linear-gradient(to right, #f6d365, #fda085) !important; /* warm gold to peach rose */
  color: #fff;
}

.bg-gradient-forest {
  background: linear-gradient(to right, #5a3f37, #2c7744) !important; /* dark brown to nature green */
  color: #fff;
}

.bg-gradient-mint {
  background: linear-gradient(to right, #a1ffce, #faffd1) !important;
  color: #333;
}

.bg-gradient-linen {
  background: linear-gradient(to right, #fdfcfb, #e2d1c3) !important;
  color: #5a3f37;
}

.bg-gradient-mocha {
  background: linear-gradient(to right, #b79891, #94716b) !important;
  color: #fff;
}

.bg-gradient-pearl {
  background: linear-gradient(to right, #d9a7c7, #fffcdc) !important;
  color: #333;
}

/* === Solid Backgrounds === */
.bg-soft-peach {
  background-color: #FFD7C2 !important; /* peach soft */
  color: #5a3f37;
}

.bg-warm-orange {
  background-color: #FFA773 !important; /* orange lembut */
  color: #5a3f37;
}

.bg-deep-red {
  background-color: #D94A38 !important; /* merah bata */
  color: #fff;
}

.bg-light-grey {
  background-color: #F5F5F5 !important; /* abu muda */
  color: #333;
}

.bg-pastel-peach {
  background-color: #ffcab6 !important;
  color: #5a3f37;
}


/* === Solid Background Hover === */
.bg-soft-peach:hover {
  background-color: #fbbfa2 !important; /* peach sedikit lebih tua */
  color: #5a3f37 !important;
}

.bg-warm-orange:hover {
  background-color: #e69263 !important; /* orange lebih pekat */
  color: #fff !important;
}

.bg-deep-red:hover {
  background-color: #c13f2f !important; /* merah bata lebih gelap */
  color: #fff !important;
}

.bg-light-grey:hover {
  background-color: #e0e0e0 !important; /* abu muda lebih tua */
  color: #333 !important;
}

.bg-pastel-peach:hover {
  background-color: #f2b29d !important;
  color: #5a3f37;
}


/* === Text Colors === */
.text-red {
  color: #D94A38 !important; /* merah bata */
}

.text-orange {
  color: #FFA773 !important; /* orange lembut */
}

.text-peach {
  color: #FFD7C2 !important; /* peach soft */
}

.text-charcoal {
  color: #333333 !important; /* dark charcoal */
}


/* ===============================
   COMPONENTS
================================= */

/* Card */
.card {
  background-color: #fff;
  border-radius: 10px;
  border: none;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1),
              0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1),
              0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12),
              0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

/* Navbar */
.navbar {
  font-family: "Marcellus", serif;
}
/* Jumbotron */
.jumbotron {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  justify-content: center;
  background-position: center 100px;
  display: flex;
  align-items: center;
}

.jumbotron::after {
  content: "";
  position: absolute;
  height: 100vh;
  inset: 0;
  margin-top: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.jumbotron.fallback {
  background-color: #f8f9fa;
  color: #6c757d;
}

.fallback-message {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #6c757d;
}

.text-jumbotron {
  position: absolute;
  padding-top: 500px;
  left: 110px;
  inset: 0;
  z-index: 999;
}

/* Home Page */
.home-view {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.text-view {
  margin-top: 210px;
}

/* Gallery Page */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

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

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.image-container:hover .overlay {
  opacity: 1;
}

.card {
  border-radius: 10px;
  overflow: hidden;
}

/* Contact Page */
.contact-card {
  height: auto;
  border-left: 5px solid #2c3e50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
}

.contact-info a {
  color: black;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info a:hover {
  color: #2c3e50;
  transform: scale(1.05);
}

/* ===============================
   SECTIONS
================================= */

.promotion,
.gallery,
.service,
.featured,
.pricing,
.about {
  width: 100%;
  min-height: 100vh;
  padding-top: 30px;
}

/* ===============================
   SWIPER CUSTOMIZATION
================================= */
.swiper-container {
  padding: 10px;
  width: 100%;
}

.swiper-slide .card-img-top {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover .card-img-top {
  transform: scale(1.05);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.swiper-slide[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   BUTTONS
================================= */
.track-btn {
  transition: background-color 0.3s, transform 0.3s;
}

.track-btn:hover {
  transform: scale(1.05);
}


/* ===============================
   RESPONSIVE BREAKPOINTS
================================= */

/* Tablet */
@media screen and (min-width: 563px) and (max-width: 1023px) {
  .service {
    height: auto;
    flex-wrap: wrap;
  }

  .featured {
    height: 750px;
  }

  .place {
    height: 910px;
  }
}

/* Mobile */
@media screen and (max-width: 562px) {
  iframe{
    max-width: 540px !important ;
  }
  .text-jumbotron {
    padding-top: 300px;
    bottom: 20%;
    left: 0%;
  }

  .service,
  .about {
    height: auto;
    flex-wrap: wrap;
  }

  .pricing {
    height: 800px;
  }

  .featured {
    height: 1500px;
  }

  .place {
    height: 900px;
  }

  body {
    overflow-x: hidden;
  }
}
