/* ===============================
   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-blue-yellow {
  background: linear-gradient(to right, #2a4c6a, #f4b64a) !important;
  color: #fff;
}

.bg-gradient-blue-peach {
  background: linear-gradient(to right, #2a4c6a, #f9d1a2) !important;
  color: #fff;
}

.bg-gradient-yellow-peach {
  background: linear-gradient(to right, #f4b64a, #f9d1a2) !important;
  color: #2a4c6a;
}

/* === 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-blue-dark {
  background-color: #2a4c6a !important;
  color: #fff;
}

.bg-blue {
  background-color: #4a6d90 !important;
  color: #fff;
}

.bg-yellow {
  background-color: #f4b64a !important; /* Warna anjing */
  color: #2a4c6a;
}

.bg-peach {
  background-color: #f9d1a2 !important; /* Warna kucing */
  color: #2a4c6a;
}

.bg-light-blue {
  background-color: #d9eaf6 !important; /* Background logo */
  color: #2a4c6a;
}

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

.bg-blue-dark:hover {
  background-color: #1f3a4d !important;
}

.bg-yellow:hover {
  background-color: #e5a535 !important;
}

.bg-peach:hover {
  background-color: #f5c088 !important;
}

.bg-light-blue:hover {
  background-color: #c7ddeb !important;
}

/* === Text Colors === */
.text-blue-dark {
  color: #2a4c6a !important;
}

.text-yellow {
  color: #f4b64a !important;
}

.text-peach {
  color: #f9d1a2 !important;
}

.text-blue {
  color: #4a6d90 !important;
}

.text-dark {
  color: #333333 !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;
  }
}
