/* ===== RESET & VARIABLES ===== */
:root {
    --primary-color: #000000;
    --secondary-color: #b89555;
    --bg-color: #fffef7;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-color);
    font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    width: 90%;
}

/* ===== CONTAINER ===== */
@media (min-width: 1500px) {
    .container, .container-lg, .container-md, 
    .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}

/* ===== UTILITIES ===== */
.section-padding {
    padding: 60px 0;
}

.image-hover {
    overflow: hidden;
}

.image-hover img {
    transition: transform 1s ease;
}

.image-hover:hover img {
    transform: scale(1.05);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-color);
    text-align: center;
    padding: 5px 0 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar h1 {
    color: var(--secondary-color);
    font-size: 22px;
    letter-spacing: 4px;
    margin: 0;
}

.top-bar span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
}

/* ===== LOGO SECTION ===== */
.top-logo {
    background: #000;
    text-align: center;
    padding: 20px 0;
}

.top-logo img {
    height: 70px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #0f0f0f;
    --bs-navbar-padding-y: 0.2rem;
}

.navbar-toggler {
    border: none;
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    --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%28198,166,107,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-navbar {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link {
    color: var(--secondary-color);
    font-size: 13px;
    letter-spacing: .5px;
    padding: 10px 14px;
}

.custom-navbar .nav-link:hover {
    color: var(--secondary-color);
}

/* Nav Links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Dropdown */
.dropdown-menu {
    background: #111;
    border: none;
    border-radius: 6px;
    border-radius: 0;
    margin-top: 0;
    transition: all .3s ease;
}

.dropdown-item {
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: #fff;
}

.dropdown-toggle::after {
    display: none !important;
    /* margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid #c8a97e;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 0; */
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s;
}

.menu-arrow {
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--secondary-color);
    transition: 0.3s;
}

.dropdown:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Desktop hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        display: block;
    }
    
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
/* Add this to your existing styles */
@media (max-width: 991px) {
    /* Fix for navbar collapse */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f0f0f;
        z-index: 1000;
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Ensure navbar toggler stays in place */
    .navbar {
        position: relative;
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    
    /* Fix for reservation button alignment */
    .desktop-reserve {
        display: none;
    }
    
    .mobile-reserve {
        display: block;
        margin-left: auto;
        margin-right: 10px;
    }
    
    /* Keep navbar items in a row */
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    /* Ensure toggler stays aligned */
    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }
    
    /* Move reservation button before toggler */
    .mobile-reserve {
        order: 1;
        margin-right: 10px;
    }
    
    /* Style for mobile reservation button */
    .mobile-reserve .reservation-btn {
        padding: 8px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Fix for navbar brand/logo if exists */
    .navbar-brand {
        order: 0;
    }
    
    /* Adjust top-logo section if needed */
    .top-logo {
        padding: 10px 0;
    }
    
    .top-logo img {
        height: 50px;
    }
}
.navbar-toggler {
    order: 2;  /* Pushes toggler to the right */
}

.mobile-reserve {
    order: 1;  /* Keeps reservation button left of toggler */
}
/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .mobile-reserve .reservation-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
    }
}
/* ===== BUTTONS ===== */
.reservation-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.reservation-btn:hover {
    background: #fff;
    border: 1px solid var(--secondary-color);
    color: #000;
}

.desktop-reserve {
    display: block;
}

.mobile-reserve {
    display: none;
}

.hero-btn {
    padding: 14px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    background: transparent;
    transition: 0.4s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

.hero-btn-dark {
    padding: 14px 35px;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    background: transparent;
    transition: 0.4s ease;
    text-decoration: none;
}

.hero-btn-dark:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-gold:hover {
    background: #b89555;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.event-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #b89555;
    color: #fff;
}

.quote-btn {
    display: inline-block;
    background: #b28b3c;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    letter-spacing: 1px;
}

.quote-btn:hover {
    background: #000;
}

#stylized .btn {
    background: #b89555;
    width: 90%;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    height: 40px;
    border: none;
    border-radius: 0px;
}

.book-btn {
    background: linear-gradient(135deg, #c6a66b, #a88442);
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== HERO SLIDER ===== */
.hero-carousel .carousel-item {
    height: 60vh;
    min-height: 500px;
    position: relative;
}

.hero-carousel img,
.hero-carousel video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

.hero-carousel .carousel-item.active img {
    animation: luxuryZoom 8s ease-in-out forwards;
}

@keyframes luxuryZoom {
    0% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.08) translateX(-10px);
    }
    100% {
        transform: scale(1.12) translateX(10px);
    }
}

.hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-caption {
    bottom: 25%;
    z-index: 2;
}

.hero-carousel h1 {
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.hero-carousel p {
    font-size: 18px;
    margin-top: 15px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(70%) sepia(40%) saturate(300%) hue-rotate(10deg);
}

.hero-slide {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-slide img {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    top: -5%;
    left: -5%;
    animation: zoomOut 8s ease forwards;
}

@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.small-slide {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.small-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.small-slide img {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    top: -5%;
    left: -5%;
    animation: zoomOut 8s ease forwards;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 30px;
}

.video-title {
    font-family: Akronim, system-ui !important;
    font-size: 90px !important;
    letter-spacing: 4px !important;
    color: #f5f1e8;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1.8s ease-out forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== BOOKING BAR ===== */
.booking-bar {
    width: 70%;
    margin: -60px auto 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.booking-fields {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    letter-spacing: 1px;
}

.field input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

.field input:focus {
    border-color: #c6a66b;
    outline: none;
    box-shadow: 0 0 8px rgba(198, 166, 107, 0.3);
}

.payments img {
    margin-left: 10px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.payments img:hover {
    opacity: 1;
}

/* ===== ROOM FEATURES ===== */
.premium-room-section {
    background: #fff;
    padding: 80px 0;
    color: #000;
}

.divider {
    width: 80px;
    height: 3px;
    background: #c8a97e;
    margin: 15px auto;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    transition: 0.3s;
    background: #f2eee6;
}

.feature-box:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: #c8a97e;
}

.feature-box span {
    font-size: 40px;
    color: var(--secondary-color);
    margin-top: 5px;
    font-weight: 300;
}

.feature-box h5 {
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Georgia', serif;
}

/* ===== FACILITIES ===== */
.facility-section {
    /* padding: 0px 0 60px 0; */
}

.facility-title {
    font-size: 42px;
    font-weight: 500;
    color: #1d2d2a;
    margin-bottom: 50px;
}

.facility-card {
    background: transparent;
    padding: 20px 30px;
    border-radius: 6px;
    box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.facility-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 0px;
}

.facility-card h5 {
    font-weight: 500;
    color: #1d2d2a;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.facility-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== WELLNESS ===== */
.wellness-header {
    background: #f2eee6;
    padding: 90px 0;
    color: #000;
}

.wellness-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.wellness-section {
   
    padding: 80px 0;
}

.wellness-card {
    position: relative;
}

.wellness-img img {
    width: 100%;
    border-radius: 5px;
}

.wellness-content {
    background: #fff;
    padding: 35px;
    margin-top: -70px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    transition: 0.3s;
    position: relative;
}

.wellness-card:hover .wellness-content {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.wellness-content h4 {
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.wellness-content p {
    color: #666;
    line-height: 1.8;
    text-align: center;
}

/* ===== ELAN SECTION ===== */
.elan-section {
    overflow: hidden;
    position: relative;
}

.elan-section h1 {
    color: #be360c;
}

.elanSlider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
}

.elanSlider {
    width: 100%;
    height: 500px;
}

.elanSlider .swiper-wrapper {
    height: 100%;
}

.elanSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.elan-overlay-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 5;
}

.elan-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    max-width: 380px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.elan-content h3 {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.elan-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.elan-menu {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.elan-menu a {
    color: #0f3d2e;
    text-decoration: none;
    font-weight: 500;
}

.elan-menu a:hover {
    text-decoration: underline;
}

.elan-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #0f3d2e;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.elan-btn:hover {
    background: #0b2c21;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
   
}

.team-heading {
    max-width: 850px;
    margin: auto;
}

.team-heading h2 {
    font-size: 34px;
    font-weight: 500;
        margin: 0 15px;
    display: inline-block;
    font-family: 'Georgia', serif;
}

.heading-line {
    width: 120px;
    height: 2px;
    background: #c8a97e;
    display: inline-block;
    vertical-align: middle;
}

.team-heading p {
    margin-top: 25px;
}

.team-card {
   
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: 0.5s;
}

.team-card:hover img {
    transform: scale(1.08);
}

.team-info {
    text-align: center;
    padding: 20px;
}

.team-info a {
    text-decoration: none;
    color: #000;
}

.team-info h5 {
    font-weight: 600;
    margin-bottom: 4px;
}

.team-info span {
    color: #c8a97e;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== LUXURY SECTION ===== */
.luxury-section {
    /* padding: 100px 0; */
    position: relative;
    overflow: hidden;
}

.luxury-image {
    position: relative;
}

.luxury-image img {
    width: 100%;
    opacity: 1;
}

.section-label {
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    /* padding: 60px 0 60px 0; */
}

.experience-card {
    padding: 0px;

    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-img {
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.6s ease;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.card-content a {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: 0.3s ease;
}

.card-content a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ===== EVENTS SECTION ===== */
.events-section {
    background: #f4f1eb;
    position: relative;
}

.event-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.event-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.2) 60%
    );
    z-index: 1;
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    color: #ffffff;
    max-width: 400px;
    transition: transform 0.5s ease;
}

.event-card:hover .event-overlay {
    transform: translateY(-10px);
}

.event-overlay h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff !important;
}

.event-overlay p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== NEIGHBOURHOOD SECTION ===== */
.neighbourhood-section {
    background-color: #f3efe800;
    padding: 20px 20px 0px 20px;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1d1d1d;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery-grid {
    margin: 0 auto;
}

.gallery-item {
    width: 25%;
    padding: 10px;
    float: left;
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== VENUE ===== */
.venue-row {
    /* margin-bottom:50px; */
}

.reverse {
    flex-direction: row-reverse;
}

.venue-image img {
    width: 100%;
    /* height: 420px; */
    /* object-fit: cover; */
}

.venue-content h2 {
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.venue-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-info {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.venue-info span {
    vertical-align: middle;
    margin-right: 5px;
    color: #b28b3c;
}

.venue-note {
    color: #b28b3c;
    margin-bottom: 20px;
}

.seating-style {
    display: flex;
    gap: 60px;
    margin: 15px 0 25px;
}

.seating-style ul {
    padding-left: 0px;
    margin-bottom: 0;
}

.seating-style li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
    list-style-type: none;
    font-size: 14px;
}

.seating-style li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 2px;
    color: #b28b3c;
    font-size: 12px;
}

/* ===== CONTACT ===== */
.contact_us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px 0;
}

.contact_us .contact_card {
    /* background: #fff; */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.contact_us .contact_card span {
    font-weight: 500;
}

.contact_us .contact_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact_us .contact_card h5 {
    margin: 10px 0;
    font-weight: 500;
    color: #1a1a1a;
}

.contact_us .contact_card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact_us .contact_card ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.contact_us .icon {
    font-size: 34px;
    color: var(--secondary-color);
}

.contact_us .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FOOTER ===== */
.lux-footer {
    background: var(--primary-color);
    color: #d5b36b;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-contact {
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-social a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #caa25c;
}

.footer-links a {
    color: #d5b36b;
    margin: 0 15px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    color: #aaa;
    text-align: right;
}

.footer-copy span {
    color: #ff4fa3;
}

/* ===== SLICK SLIDER ===== */
.slick-next {
    right: -5px !important;
}

.slick-prev:before, 
.slick-next:before {
    font-family: none;
    content: none;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slick-next {
    right: -0px;
}

.slick-prev {
    left: 0px;
}

.slick-next::after {
    content: "›";
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 600;
}

.slick-prev::after {
    content: "‹";
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 600;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    margin: 0 -10px;
}

/* ===== SWIPER ===== */
.swiper-pagination-bullet-active {
    opacity: 0.8;
    background: var(--secondary-color);
}

/* ===== CALENDAR / DATE PICKER ===== */
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: 0px;
    color: #000;
}

.calender {
    background: #fff url(https://www.eglobe-solutions.com/extras/Content/WebsiteTemplate/L6deluxe/libs/images/calendar-icon.png) 94% no-repeat;
    cursor: pointer;
    border-radius: 0px;
    border: solid 1px #ddd;
    color: #000;
    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 QUERIES ===== */

/* Large Desktop */
@media (min-width: 992px) {
    /* Already included above */
}

/* Tablet & Mobile */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        border: none;
        display: none;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block;
    }
    
    .desktop-reserve {
        display: none;
    }
    
    .mobile-reserve {
        display: block;
    }
    
    .top-logo img {
        height: 60px;
    }
    
    .reservation-btn {
        margin-right: auto;
    }
    
    .event-card {
        height: 300px;
    }
    
    .event-overlay {
        left: 30px;
        bottom: 30px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .luxury-image::after {
        display: none;
    }
    
    .gallery-item {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-carousel .carousel-item {
        height: 40vh;
        min-height: 400px;
    }
    
    .hero-carousel .carousel-item::after {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.6),
                rgba(0, 0, 0, 0.3));
    }
    
    .hero-carousel h1 {
        font-size: 28px;
    }
    
    .hero-slide {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .video-title {
        font-size: 40px !important;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .facility-title {
        font-size: 28px;
    }
    
    .gallery-item {
        width: 100%;
    }
    
    .gallery-grid {
        float: none;
    }
    
    .field input {
        margin-bottom: 10px;
    }
    
    .section-description {
        margin-bottom: 20px;
    }
    
    .booking-bar {
        width: 90%;
    }
    
    .elan-overlay-content {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .elan-content {
        max-width: 90%;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .feature-box {
        flex-direction: column;
    }
    
    .seating-style {
        flex-direction: column;
        gap: 0px;
    }
    
    .venue-info {
        flex-direction: column;
        gap: 0px;
    }
}

/* Small Mobile */
@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;
        height: 50px;
    }
    .small-slide {
   
    height: 250px!important;

}
}

@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;
    }
}