*{
    margin:0;
    padding:0;
}
body {
    margin: 0;
    font-family: "Montserrat",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #f4fffb;
}
p {
    line-height: 1.7;
}
button:focus {
    box-shadow: none !important;
}
a {
    color: #ffb902;
    text-decoration: none;
}
.bg-white {
    background-color: #fff !important;
}
.bg-green {
    background-color: #2b9741 !important;
}
.bg-yellow {
    background-color: #ffb902 !important;
}
.bg-dark {
    background-color: #006000 !important;
}
.bg-light-yellow {
    background-color: #ffeec0;
}
.bg-light-green {
    background-color: #f5fff5;
}
.bg-light-yellow {
    background-color: #f4f7e6;
}
.text-dark {
    color: #006000 !important;
}
.text-yellow {
    color: #ffb902 !important;
}
.text-light {
    color: #F1F8FF !important;
}
@media (max-width: 768px) {
    .m-center {
        text-align: center;
        display: block !important;
        width: 100%;
    }
}
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffb902;
    background-color: #094e09;
}
.logo-div {
    text-align: center;
}
.logo-div h1 {
    position: relative;
    display: inline-block;
}
.logo-div h1::after {
    position: absolute;
    content: "";
    width: 115px;
    height: 1px;
    top: 92%;
    right: -14px;
    margin-top: -1px;
    background-color: #fff;
}
.owl-img, .owl-img-right {
    position: relative;
}
.owl-img img {
    width: 90px;
    height: 90px;
    position: absolute;
    left: -64px;
    transform: rotate(-48deg);
    z-index: -1;
    top: 30px;
}
.owl-img-right img {
    width: 90px;
    height: 90px;
    position: absolute;
    right: -64px;
    transform: rotate(44deg);
    z-index: -1;
    top: -50px;
}
@media (max-width: 992px) {
    .logo-div {
        position: relative;
    }
    .logo-div h2::after {
        position: absolute;
        content: "";
        width: 115px;
        height: 1px;
        top: 60%;
        right: 16px;
        margin-top: -2px;
        background-color: #fff;
    }
}
@media (max-width: 1024px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 25px 5px;
    }
}
@media (max-width: 991.98px) {
    .navbar-nav.me-auto {
        margin-top: 20px;
    }
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px;
    }
    .res-mb-1 {
        margin-bottom: 0.5rem !important;
    }
    .res-mb-2 {
        margin-bottom: 0.75rem !important;
    }
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
.carousel-content {
    max-width: 700px;
    color: #000;
    background-color: #ffffffc7;
}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-header-inner {
    background: rgba(15, 23, 43, .7);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #ffb902;
}
.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}
.section-title {
    position: relative;
    display: inline-block;
    text-decoration: underline;
}
.cover-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/cover-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}
.service-item:hover {
    background: #ffb902;
}
.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}
.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}
.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}

.gallery-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c2c2c;
  }
  
  .gallery-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: auto;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.08);
  }

  /* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }
  
  #lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
  
  
  .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  

.footer {
    position: relative;
}
.footer p { 
    color: #F1F8FF;
}
.footer .btn.btn-social, .rooms-details .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F1F8FF ;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}
.footer .btn.btn-social:hover, .rooms-details .btn.btn-social:hover {
    color: #ffb902;
}
.footer .btn.btn-link, .rooms-details .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}
.rooms-details .btn.btn-link {
    color: #000000;
}
.footer .btn.btn-link::before, .rooms-details .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover, .rooms-details .btn.btn-link:hover {
    color: #f7b70f;
    margin-left: 8px;
    box-shadow: none;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
    color: #F1F8FF ;
}
.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}
.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.room-section .carousel-inner {
    border:5px solid #ffd56b;
    border-radius: 10px;
}
.qr-wrapper {
    background-color: #fff9ea;
    border-radius: 30px;
    padding: 20px;
}
.qr-wrapper img {
    width:300px;
}
@media (max-width: 768px) {
    .qr-wrapper img {
        width:100%;
    }
}
@media (max-width: 1200px) {
    .navbar-expand-lg .btn-primary.rounded-0 {
        padding: 10px !important;
        font-size: 12px;
    }
}
