body {
        font-family: Georgia, "Times New Roman", Times, serif;
      }

      /* HEADER STYLES */
      .top-header {
        background: #2b2b2b;
        /* border-bottom: 2px solid #d4af37; */
      }

      .navbar {
        padding: 0;
      }

      .brand-box {
        background: #7a1d1d;
        padding: 15px 25px;
        display: flex;
      }

      .brand-box img {
        height: 60px;
      }

      .nav-link {
        color: #fff !important;
        font-weight: 500;
        padding: 30px 15px;
        text-transform: uppercase;
        font-size: 14px;
      }

      .nav-link:hover {
        color: #d4af37 !important;
      }

      .nav-item.active .nav-link {
        color: #d4af37 !important;
      }

      /* Mobile */
      @media (max-width: 991px) {
        .nav-link {
          padding: 10px 15px;
        }
        .brand-box {
          padding: 10px 15px;
        }
      }

      .carousel-item img,
      .carousel-item video {
        width: 100%;
        height: 500px;
        object-fit: cover;
      }

      @media (max-width: 768px) {
        .carousel-item img,
        .carousel-item video {
          height: 280px;
        }
      }
      .about-wrapper {
        padding: 40px 0;
      }

      /* LEFT SECTION */
      .about-left {
        background: url("../images/Untitled-design-18.png") center center /
          contain no-repeat;
        padding: 70px 40px;
        text-align: center;
      }

      .about-left img.logo {
        height: 150px;
        margin-bottom: 15px;
      }

      .decor {
        width: 120px;
        margin: 15px auto 25px;
      }

      .about-left p {
        font-size: 15px;
        line-height: 28px;
        color: #111;
        max-width: 420px;
        margin: auto;
      }

      .read-more {
        margin-top: 30px;
        display: inline-block;
        padding: 12px 36px;
        background: #8c1d04;
        color: #fff;
        border-radius: 30px;
        font-size: 15px;
        text-decoration: none;
      }

      .read-more:hover {
        background: #dfaf37;
        color: #000;
        text-decoration: none;
      }

      /* RIGHT SECTION */
      .about-right img,
      .about-right video {
        width: 100%;
      
        border-radius: 4px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      @media (max-width: 768px) {
        .about-left {
          margin-bottom: 40px;
        }
      }

        /* PARALLAX SECTION */
    .services-section {
      background: 
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("../images/Untitled-design-2.png") center center / cover no-repeat fixed;
      padding: 100px 0;
      color: #fff;
    }

    .services-section h2 {
      color: #d4af37;
      font-size: 45px;
      margin-bottom: 15px;
      font-weight: 400;
    }

    .services-section p.subtext {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 17px;
    }

    .divider {
      width: 170px;
      margin: 20px auto 60px;
    }

    /* CARD STYLE (FAQ LOOK) */
    .service-card {
      background: #fff;
      color: #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .service-content {
      padding: 25px;
      text-align: center;
    }

    .service-content h4 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .service-content p {
      font-size: 15px;
      color: #444;
    }

    @media (max-width: 768px) {
      .services-section h2 {
        font-size: 32px;
      }
    }



    .hover-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE */
.hover-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* TITLE BOX (VISIBLE BY DEFAULT) */
.title-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 85%;
  padding: 18px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* CONTENT BOX (HIDDEN INITIALLY) */
.content-box {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 85%;
  padding: 22px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 3;
}

/* HOVER EFFECT */
.hover-card:hover .content-box {
  bottom: 0;
  opacity: 1;
}

.hover-card:hover .title-box {
  opacity: 0;
}

    
/* PARALLAX SECTION */
.rooms-section {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url("../images/Untitled-design-18.png") center center / cover no-repeat fixed;
  padding: 100px 0;
}

/* LEFT TEXT */
.rooms-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.rooms-text {
  font-size: 16px;
  line-height: 30px;
}

/* ROOM CARD */
.room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-content {
  padding: 25px;
}

.room-content h4 {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 15px;
}

.room-content ul {
  padding-left: 18px;
  font-size: 15px;
}

.room-content ul li {
  margin-bottom: 6px;
}

/* BUTTON */
.room-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #8c1d04;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

.room-btn:hover {
  background: #d4af37;
  color: #000;
}





/* PARALLAX BACKGROUND */
.cta-parallax {
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/sacled.jpg") center center / cover no-repeat fixed;
  padding: 120px 0;
  color: #fff;
}

/* LOGO */
.cta-logo {
  max-width: 220px;
  margin-bottom: 25px;
}

/* TEXT */
.cta-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-phone {
  font-size: 32px;
  margin: 10px 0;
}

.cta-phone a {
  color: #d4af37;
  text-decoration: underline;
}

.cta-mail {
  margin: 20px 0 35px;
  font-size: 16px;
}

.cta-mail a {
  color: #fff;
  text-decoration: underline;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 30px;
}

.btn-book {
  background: #e6c26e;
  color: #000;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
}

.btn-book:hover {
  background: #d4af37;
  color: #000;
}

.btn-book-outline {
  border: 2px solid #e6c26e;
  color: #e6c26e;
  padding: 12px 34px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-book-outline:hover {
  background: #e6c26e;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-phone {
    font-size: 24px;
  }

  .btn-book,
  .btn-book-outline {
    display: block;
    margin: 10px auto;
  }
}





.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* SIDE LINES */
.logo-divider .line {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.7);
}

/* LOGO */
.divider-logo {
  max-height: 100px;
  margin: 0 30px;
}
@media (max-width: 768px) {
  .logo-divider .line {
    width: 120px;
  }

  .divider-logo {
    max-height: 60px;
    margin: 0 15px;
  }
}





/* PARALLAX */
.testimonials-section {
  background:
    linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.70)),
    url("../images/Untitled-design-18.png") center center / cover no-repeat fixed;
  padding: 50px 0;
}

/* HEADING */
.testi-title {
  font-size: 42px;
}

.testi-divider {
  width: 120px;
  margin: 15px auto;
}

.testi-subtitle {
  font-size: 16px;
}

/* BOOTSTRAP CARD CUSTOM */
.testi-card {
  background: transparent;
  border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.testi-card .card-body {
  padding: 30px;
  position: relative;
}

.stars {
  color: #f2b01e;
  font-size: 18px;
  margin-bottom: 15px;
}

.card-text {
  font-size: 15px;
  line-height: 28px;
  color: #555;
}

.card-title {
  font-weight: 600;
  color: #000;
}

.quote {
  position: absolute;
  right: 20px;
  bottom: 40px;
  font-size: 60px;
  color: #cfe0ff;
}

.gallery-section {
  padding: 20px 0;
}

.gallery-title {
        font-size: 45px;
  font-family: Georgia;
  margin-bottom: 20px;
}

.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.logo-divider span {
  width: 200px;
  height: 1px;
  background: #333;
}

.logo-divider img {
  margin: 0 25px;
  height: 100px;
}

/* THUMB STRIP */
.carousel-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  cursor: pointer;
}

/* MODAL IMAGE */
.modal-body img {
  width: 100%;
  height: 85vh;
  object-fit: contain;
}



.main-footer {
  background: #2f2f2f;
  color: #fff;
}

/* CTA */
.footer-cta {
    /* margin-top: 40px; */
  padding: 80px 15px;
  border-bottom: 1px solid #555;
}

.footer-cta h2 {
  font-size: 42px;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 15px auto;
}

.footer-cta p {
  max-width: 650px;
  margin: auto;
  font-size: 14px;
}

.footer-cta a {
  color: #fff;
  text-decoration: none;
}

.social-icons a {
    display: inline-block;
    margin: 0 6px;
    color: black;
    border: 1px solid #fff;
    width: 34px;
    background: white;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
}

.footer-mini-text {
  font-size: 15px;
  color: #aaa;
}

/* MAIN FOOTER */
.footer-main {
  padding: 60px 0;
}

.footer-main h5 {
  margin-bottom: 15px;
}

.footer-main p {
  font-size: 15px;
  color: #f9f9f9
;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #1f1f1f;
  padding: 12px;
  font-size: 13px;
}


.animate-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s ease forwards;
}
.footer-link {
  color: #f0c36d;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: #d4af37;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.col-md-4 a {
  color: inherit;
  text-decoration: none;
}

.col-md-4 a:hover {
  color: #d4af37;
  text-decoration: underline;
}
.col-md-4 a {
  color: #fff;
  text-decoration: none;
}

.col-md-4 a:hover,
.col-md-4 a:focus {
  color: #fff ;
  text-decoration: none;
}
