/* Import some royal fonts from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Merriweather&display=swap");

body {
  margin: 0;
  font-family: "Merriweather", serif;
  background-color: #fff;
  line-height: 1.6;
}

/* Headings with royal touch */
h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  color: #eab76d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
}

/* Links with luxury feel */
a {
  color: #eab76d;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #eab76d; /* Brighter gold */
}

p {
  color: #000;
}

/* Buttons */
.button {
  background: linear-gradient(135deg, #eab76d, #eab76d);
  color: #0a0f2d;
  font-family: "Cinzel", serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.button:hover {
  transform: translateY(-2px);
}

#header-carousel h1 {
  font-size: 56px;
}

#amenities-carousel .testimonial-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
#amenities-carousel .testimonial-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
#amenities-carousel .testimonial-item:hover img {
  transform: scale(1.1);
}
#amenities-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}
#amenities-carousel .overlay h5 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#amenities-carousel .testimonial-item:hover .overlay {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5c;
  transform: scale(1.1);
}

/* Clean Form Box */
.royal-form {
  background: #000;
  padding: 35px;
  border-radius: 12px;
  border: 3px solid #eab76d;
}

/* Inputs */
.royal-form .form-control {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #f5f5f5;
  border-radius: 8px;
  padding: 12px 14px;
  transition: all 0.3s ease;
}
.royal-form .form-control:focus {
  border-color: #eab76d;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
  background: #222;
}

/* Labels */
.royal-form label {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
}

/* Simple Royal Button */
.btn-royal {
  background: #eab76d;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  padding: 12px;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-royal:hover {
  background: #eab76d;
  color: #fff;
  transform: translateY(-1px);
}

.btn-social {
  background-color: #ffffff;
  color: #eab76d !important;
}

.header-logo {
  width: 120px;
}

@media (max-width: 576px) {
  .header-logo {
    width: 90px;
  }

  #header-carousel h1 {
    font-size: 28px;
  }

  .royal-form {
    padding: 18px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .header-logo {
    width: 90px;
  }

  #header-carousel h1 {
    font-size: 48px;
  }

  .royal-form {
    padding: 18px;
  }
}

/* Laptop screen media queries */
@media (min-width: 769px) and (max-width: 1140px) {
  .header-logo {
    width: 100px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 16px;
  }

  #header-carousel h1 {
    font-size: 38px;
  }
}

.number-box {
  background-color: #fff;
  box-shadow: -2px 2px 15px 1px #1c0a0a;
  border-radius: 10px;
  padding: 20px 10px;
}

.number-box h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.number-box i {
  color: #eab76d;
}

.number-box p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

#facts {
  background-image: url("../img/amenities/005.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: #fff;
}

#facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Dark overlay for better text visibility */
  z-index: -1;
}

.btn {
  color: #000 !important;
  border-radius: 5px;
}

.about-slider img {
  border-radius: 20px;
}

.footer-section-contact p,
.footer-section-contact a {
  color: #fff;
}

.footer-links ul {
  padding: 0px;
  list-style: none;
}

.footer-links ul li a {
  color: #fff !important;
}

.footer-links li {
  padding: 5px 0px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #eab76d !important;
}

.download-btn {
  color: #000 !important;
  background-color: #fff;
  border: 2px solid #eab76d;
}

.download-btn:hover {
  background-color: #eab76d;
  color: #000 !important;
  border: 2px solid transparent;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #000 !important;
  background-color: #eab76d;
  border: 2px solid transparent;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
  background-color: #fff;
  color: #000 !important;
  border: 2px solid #eab76d;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.amenities-carousel .owl-nav .owl-prev,
.amenities-carousel .owl-nav .owl-next {
  background-color: #eab76d;
}

.gallery-img {
  width: 100%;
  border-radius: 15px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05); /* Zoom on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

.gallery-box:hover .gallery-img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  border-radius: 0 0 15px 15px;
}

.overlay h5 {
  color: #fff;
}

.sidetextSlider {
  margin-left: 100px;
  text-align: start;
  width: 700px;
}

.modal-lg {
  max-width: 900px; /* wider modal */
}

.sidetextSlider h2 {
  font-size: 42px;
  text-align: start;
}

@media (max-width: 768px) {
  .modal-lg {
    max-width: 95%; /* responsive on mobile */
  }
  .modal-content img {
    max-height: 220px; /* keep image smaller on mobile */
    object-fit: cover;
  }

  .sidetextSlider {
    margin-left: 20px;
    margin-right: 20px;
    text-align: start;
    width: auto;
  }

  .sidetextSlider h2 {
    font-size: 24px;
  }

  .btn-primary,
  .btn-secondary,
  .download-btn {
    font-size: 12px;
    padding: 8px;
  }
}

.custom-input {
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.custom-input::placeholder {
  color: #999;
  font-size: 15px;
}

.custom-input:focus {
  border-color: #c89d5a; /* gold accent */
  background-color: #fff;
  box-shadow: 0 0 8px rgba(200, 157, 90, 0.4);
}

.custom-btn {
  background-color: #c89d5a;
  border: none;
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.custom-btn:hover {
  background-color: #a87f3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-card-white {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.project-card-white i {
  color: #d4a762;
  transition: transform 0.3s ease;
}
.project-card-white h6 {
  color: #000;
  font-weight: 600;
}
.project-card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 167, 98, 0.2);
  border-color: #d4a762;
}
.project-card-white:hover i {
  transform: scale(1.2);
  color: #000;
}
.project-card-white:hover h6 {
  color: #d4a762;
}
