/* ===============================
   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 - AMRA THEME
================================= */

/* Gradient Backgrounds  */
.bg-gradient-orange-turquoise {
  background: linear-gradient(to right, #FF7A00, #00C4D6) !important;
  color: #fff;
}

.bg-gradient-turquoise-white {
  background: linear-gradient(to right, #00C4D6, #FFFFFF) !important;
  color: #333;
}

.bg-gradient-orange-white {
  background: linear-gradient(to right, #FF7A00, #FFFFFF) !important;
  color: #333;
}

.bg-gradient-turquoise-black {
  background: linear-gradient(to right, #00C4D6, #222222) !important;
  color: #fff;
}

.bg-gradient-orange-black {
  background: linear-gradient(to right, #FF7A00, #222222) !important;
  color: #fff;
}

/* === Gradient Backgrounds For Dashboard === */
.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-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-pearl {
  background: linear-gradient(to right, #d9a7c7, #fffcdc) !important;
  color: #333;
}

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

.bg-primary-orange {
  background-color: #FF7A00 !important;
  color: #fff;
}

.bg-primary-turquoise {
  background-color: #00C4D6 !important;
  color: #fff;
}

.bg-dark-black {
  background-color: #222222 !important;
  color: #fff;
}

.bg-light-grey {
  background-color: #F7F7F7 !important;
  color: #333;
}

.bg-white {
  background-color: #FFFFFF !important;
  color: #333;
}

.bg-light-orange {
  background-color: #FFE3CC !important; /* oranye pastel */
  color: #333;
}

.bg-light-turquoise {
  background-color: #CCF7FA !important; /* biru toska pastel */
  color: #333;
}

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

.bg-primary-orange:hover {
  background-color: #e96d00 !important;
}

.bg-primary-turquoise:hover {
  background-color: #00aab7 !important;
}

.bg-dark-black:hover {
  background-color: #111111 !important;
}

.bg-light-orange:hover {
  background-color: #FFD2B0 !important;
}

.bg-light-turquoise:hover {
  background-color: #B3F0F4 !important;
}

.bg-white:hover {
  background-color: #F0F0F0 !important;
}

.bg-light-grey:hover {
  background-color: #E0E0E0 !important;
}


/* === Text Colors === */
.text-primary-orange {
  color: #FF7A00 !important;
}

.text-primary-turquoise {
  color: #00C4D6 !important;
}

.text-dark {
  color: #222222 !important;
}

.text-muted {
  color: #666666 !important;
}

.text-light {
  color: #FFFFFF !important;
} 


/* ===============================
   COMPONENTS
================================= */
/* Icon Options (Icon Picker) */
.icon-option.selected {
  background-color: #f0f0f0;
  border: 2px solid #007bff;
  border-radius: 5px;
}

.icon-option.selected i {
  color: #007bff; /* Warna ikon terpilih */
}

.icon-option {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
}

.icon-option i {
  margin-right: 8px;
}

.icon-option.selected {
  background-color: #f0f0f0;
}

/* 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);
}

.card-img-top {
    max-height: 500px; /* Adjust height as needed */
    object-fit: cover; /* This ensures the image is not stretched */
}

/* 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 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.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;
}

.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%;
  height: 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 {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

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

.swiper-slide img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   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;
  }
}
