:root {
    --accent: #f6cf04;
    /* Kolhapuri warm maroon-ish (customize) */
    --accent-2: #f0c27b;
    --muted: #6b6b6b;
    --max-width: 1200px;
    --blue: #1e2639;
}

html,
body {
    font-family: "Montserrat", sans-serif;
    height: 100%;
    background: url(./../images/bg.png)
}

h1,
h2,
h3,
h4 {
    font-family: "Cinzel", serif;
    color: var(--blue);
}

.bg-accent {
    background: linear-gradient(90deg, var(--accent), #9a3b3b);
}

button:hover {
    opacity: 1;
    color: rgb(255, 255, 255);
    background: transparent;
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 3rem;
        font-weight: 500;
    }
}

#heroCarousel h1 {
    color: #fff !important;
    font-size: 4.5rem;
}

/* Navbar */
.navbar-brand img {
    height: 88px;
}

.nav-link {
    color: rgba(0, 0, 0, 0.7)
}

.nav-link.active {
    font-weight: 600;
    color: var(--accent);
}

.navbar-toggler {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(246,207,4,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    .hero-caption h1 {
        font-size: 2.5rem!important;
    }
}

/* Hero */
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
    height: 100%;
}

.hero-caption {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Section spacing */
section {
    padding: 60px 0;
}

.container {
    max-width: var(--max-width)
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* exactly 3 columns */
    gap: 12px;
}

/* Tablet (2 per row) */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 per row) */
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
}

/* Swiper sizing */
.swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
}

.room-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

/* Facilities icons */
.facility {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04)
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Sticky */
.sticky-top {
    backdrop-filter: blur(4px);
    background: rgba(30, 38, 57, 1);
}



.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {

    color: #fff;
}

.nav-link {
    color: #fff;
}

/* Buttons */
.btn-accent {
    background: var(--blue);
    color: #fff;
    border-radius: 6px;
    border: none;
    padding: 10px 18px;
}

nav .btn-accent,
footer .btn-accent {
    background: var(--accent) !important;
}

.btn-accent-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
}

/* Contact map area */
.map-wrap iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}

/* Booking section small form */
.booking-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: all .7s cubic-bezier(.2, .9, .2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styling */
.footer-section {
    background: #030a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-section .material-symbols-outlined {
    color: var(--accent)
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e6e6e6;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #d9c89e;
}

.footer-social i {
    font-size: 20px;

    margin-right: 12px;
    cursor: pointer;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    /* background-color: #FFC107; */
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 2px solid #FFC107;

}

.footer-social i:hover {
    color: #d9c89e;
}

.footer-link {
    color: #d9c89e;
    text-decoration: none;
    border-bottom: 1px solid #d9c89e;
    padding-bottom: 3px;
}

.footer-bottom {
    background: #030e25;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}


/* Responsive tweaks */
@media (max-width:767px) {
    .hero-caption h1 {
        font-size: 28px
    }

    .hero-caption p {
        font-size: 14px
    }
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #f5f0e5 !important;
}

.services-section {
    background: #4b5c47;
    /* same green-like background in screenshot */
}

.services-section h2 {
    color: #fff;
}

.service-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-icon span {
    font-size: 48px;
    color: var(--accent);
    /* gold color from screenshot */
}

.service-content h4 {
    font-family: 'Cinzel', serif;
    color: #f5e9d4;
    font-size: 22px;
    margin-bottom: 5px;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    color: #e8e4d8;
    font-size: 15px;
    margin: 0;
}

#stylized .btn {
    background: #fdc800;
    width: 90%;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    height: 40px;
    border: none;
    border-radius: 4px;

}

input.calendarDateInput,
select.calendarDateInput {
    height: 35px;
}

.td1 input,
.td2 input {
    width: 90%;
    height: 40px;
    padding-left: 5px;
    border: none;
    border: 1px solid #ddd;
    border-radius: 4px;

}

.calender {
    background: transparent url(https://www.eglobe-solutions.com/mailer/images/calendar-light.png) 94% no-repeat;
    cursor: pointer;
    border-radius: 4px;
    border: solid 1px #ddd;
    color: #ffffff;
    text-align: left;
    padding-left: 5px;
}

.ui-datepicker-trigger {
    margin-left: 2px;
    margin-top: 10px;
    margin-bottom: -6px;
    padding-right: 3px;
}

div.ui-datepicker {
    font-size: 15px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    div.ui-datepicker {
        font-size: 15px;
    }
}

@-moz-document url-prefix() {
    div.ui-datepicker {
        font-size: 15px;
        margin-top: -80px;
    }
}

#h2 {
    font: normal 14px "Droid Serif", serif;
}

@media only screen and (max-width: 768px) {

    #stylized .td1 {

        padding-top: 20px;
     
    }

    #stylized .td1,
    .td2,
    .td3 {
        float: left;
        width: 96%;
        text-align: center;
        margin-bottom: 20px;
    }

    #stylized .td4 {
        float: left;
        width: 96%;
        text-align: center;

    }

    .td1 input,
    .td2 input {
        width: 96%;
        height: 50px;
        border: 1px solid #ccc;

    }

    #stylized .btn {

        width: 96%;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        cursor: pointer;
        height: 50px;

    }
}

@media only screen and (max-width: 480px) {

    #stylized .td1,
    .td2,
    .td3,
    .td4 {
        float: left;
        width: 96%;
        text-align: center;

    }

    .td1 input,
    .td2 input {
        width: 96%;
        height: 40px;
        border: 1px solid #ccc;
    }
}

#booking {
    background: #1e2639
}