@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body{
     font-size: 15px;

    color: #555;

     font-family: "Montserrat", sans-serif;

    margin: 0;
    overflow-x: hidden;

}
/* Custom hex color from request: logo / accent color */
:root {
    --brand-primary: #bb462a;
    --brand-dark: #8a2e18;
    --brand-glow: rgba(187, 70, 42, 0.25);
    --bg-deep: #000000;
    --card-bg: #0a0a0a;
}

h1, h2, h2, h4, h5, h6{
    font-family: "Playfair Display", serif;
}

p {
    color: #323232;
    line-height: 1.8;
}

.header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
/* Social Icons Bar – refined spacing, hover effect */
.top-icons {
    text-align: center;
    padding: 12px 0 10px 0;
    background: #1C1C1C;
    border-bottom: 1px solid rgba(187, 70, 42, 0.25);
}

.top-icons a {
    width: 40px;
    height: 40px;
    background: #1c1c1c;
    color: #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 6px;
    font-size: 1.1rem;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
}

.top-icons a:hover {
    background: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--brand-primary);
    box-shadow: 0 5px 12px rgba(187, 70, 42, 0.3);
}

/* Navbar */
.navbar {
    background: #1C1C1C;
    padding: 0.5rem 0;
    position: relative;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #222;
    padding: 4px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

/* Toggle button styling (mobile) */
.navbar-toggler {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.7);
    z-index: 1100;
    transition: all 0.2s;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--brand-primary);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo center styling */
.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-center img {
    height: 75px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-center img:hover {
    transform: scale(1.02);
}

/* Desktop menu containers */
.nav-left, .nav-right {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
    align-items: center;
}

.nav-left li, .nav-right li {
    margin: 0;
}

.nav-left a, .nav-right a {
    color: #f0f0f0;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    position: relative;
    padding: 6px 0;
}

.nav-left a:hover, .nav-right a:hover {
    color: var(--brand-primary);
}

/* Underline animation for desktop */
.nav-left a:after, .nav-right a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.25s ease;
}

.nav-left a:hover:after, .nav-right a:hover:after {
    width: 100%;
}

/* Special Book Now button style (desktop) */
.nav-right li:last-child a {
    background: var(--brand-primary);
    padding: 8px 18px;
    border-radius: 40px;
    color: white;
    transition: all 0.2s;
}

.nav-right li:last-child a:after {
    display: none;
}

.nav-right li:last-child a:hover {
    background: #9c3a21;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(187, 70, 42, 0.4);
    color: white;
}

/* Mobile Menu – improved readability & design */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.96);
    z-index: 1049;
    padding: 1rem 0 1.2rem;
    border-top: 1px solid rgba(187, 70, 42, 0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.8);
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--brand-primary);
    background: rgba(187, 70, 42, 0.12);
    padding-left: 28px;
}

/* Book now inside mobile becomes highlighted */
.mobile-menu a:last-child {
    background: rgba(187, 70, 42, 0.2);
    font-weight: 600;
    margin-top: 6px;
    border-radius: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: none;
}

.mobile-menu a:last-child:hover {
    background: var(--brand-primary);
    color: white;
    padding-left: 20px;
}

/* Responsive: hide left/right menu on mobile, keep logo centered, toggler visible */
@media (max-width: 991px) {
    .nav-left,
    .nav-right {
        display: none !important;
    }

    .logo-center {
        width: 100%;
        text-align: center;
    }

    .navbar .container {
        justify-content: center !important;
    }

    .top-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        margin: 0 4px;
    }
}

/* Tablet & small adjustments */
@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
    .navbar-toggler {
        display: none !important;
    }
}

/* For large screens: container alignment */
.navbar .container {
    max-width: 1320px;
    padding: 0 20px;
}

/* dummy content – elegant section simulation */
.content-dummy {
    min-height: 1200px;
    padding: 70px 24px;
    background: radial-gradient(circle at 10% 20%, #0c0c0c, #000000);
    text-align: center;
    font-size: 1.2rem;
    border-top: 1px solid rgba(187,70,42,0.3);
}

.content-dummy h2 {
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.content-dummy p {
    max-width: 700px;
    margin: 20px auto;
    opacity: 0.85;
}

.scroll-indicator {
    display: inline-block;
    background: rgba(187,70,42,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

/* small footer like style */
.sneaky-card {
    background: #0c0c0c;
    padding: 20px;
    border-radius: 28px;
    margin-top: 40px;
    border: 1px solid #2a2a2a;
}

/* additional polish for alignment: consistent gap */
@media (min-width: 1200px) {
    .nav-left, .nav-right {
        gap: 2.2rem;
    }
}


/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}

.hero-slider .carousel-item.active .slide-bg {
    transform: scale(1.08);
}

.hero-slider .carousel-item {
    transition: transform 1.2s ease-in-out;
}

.hero-slider .carousel-custom-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 80%;
    max-width: 750px;
}

.hero-slider .carousel-custom-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-slider .carousel-custom-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0.95;
    color: #fff;
}

.hero-slider .carousel-custom-caption .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 32px;
    font-size: 14px;
    border-radius: 30px;
    background: #c4a265;
    border: none;
    color: #ffffff;
    transition: background 0.2s ease;
    letter-spacing: 0.5px;
}

.hero-slider .carousel-custom-caption .btn:hover {
    background: #a8844a;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

 .hero-slider:hover .carousel-control-prev,
 .hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(196,162,101,0.8);
}

.hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
}

.hero-slider .carousel-indicators button.active {
    background-color: #c4a265;
}

.section-spacing{
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.main-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle{
    color: #bb462a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}


.section-title{
    font-family:'Playfair Display', serif;
    font-size:34px;
    margin:0px 0 20px;
    color: #222;
    font-weight: 700;
}




.btn-primary {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.1em;
    letter-spacing: 1.6px;
    fill: #ffffff;
    color: #ffffff;
    background-color: #bb462a;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff;
    border-radius: 4px;
    padding: 10px 25px;
    transition: 0.5s all;
}

.btn-primary:hover, .btn-primary:focus {
    color: #bb462a;
    background-color: #FFFFFF;
    border-color: #bb462a;
}


/* ===== SECTION REC ===== */
.offer-sect{
    overflow:hidden;
}

/* ROW */
.offer-sect-row{
    display:flex;
    flex-wrap:wrap;
}

/* IMAGE */
.offer-sect-img{
    width:50%;
    position:relative;
    overflow:hidden;
}

.offer-sect-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
}

/* OVERLAY */
.offer-sect-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity:0;
    transition:0.5s;
}

/* CONTENT */
.offer-sect-content{
    width:50%;
    padding:80px 60px;
    background:#f5f3ef;
    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* HOVER */
.offer-sect-row:hover img{
    transform:scale(1.1);
}

.offer-sect-row:hover .offer-sect-img::after{
    opacity:1;
}

/* REVERSE */
.offer-sect-reverse{
    flex-direction:row-reverse;
}


@media (max-width: 767px) {
    .offer-sect-row {
        flex-direction: column !important;
    }

    .offer-sect-img, .offer-sect-content {
        width: 100%;
    }
}

.bottom-main-sec {
    background: url(../images/bg/1.jpg) no-repeat center center;
    background-attachment: fixed;
    height: 600px;
    display: inline-block;
    width: 100%;
    background-size: cover;
    position: relative;
}

.btn-secondary {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.2em;
    letter-spacing: 2.2px;
    fill: #bb462a;
    color: #bb462a;
    background-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #bb462a;
    border-radius: 0px 0px 0px 0px;
    padding: 10px 0px 10px 0px;
    transition: 0.4s all;
}

.btm-footer-text {
    color: #C8C0B8;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 2em;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}





/* UNIQUE HERO SECTION */
.custom-hero-section {
    height: 100vh;
    background: url('../images/bg/1.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.custom-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* CONTENT WRAPPER */
.custom-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* SUBTITLE */
.custom-hero-subtitle {
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* TITLE */
.custom-hero-title {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 40px;
    }
}




.facility-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #222;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.facility-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

.facility-card h6 {
  color:#fff;
  font-size: 20px;
}






/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-toggle {
        display: block !important;
    }
    
    .hero-slider .carousel-custom-caption h1 {
        font-size: 38px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 14px;
    }
    
    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 450px;
    }
     
    
}

@media (max-width: 768px) {
    
    .hero-slider .carousel-custom-caption h1 {
        font-size: 30px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 13px;
    
}

.offer-sect-content{
    padding: 40px 30px;
}
}

@media (max-width: 480px) {
    .hero-slider .carousel-custom-caption h1 {
        font-size: 24px;
    }
    
    .hero-slider .carousel-custom-caption p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-slider .carousel-custom-caption .btn {
        padding: 8px 24px;
        font-size: 12px;
    }
    

    
}
