/* =========================================
   Variables & General Styles
   ========================================= */
:root {
    --primary-font: 'Inter', sans-serif;
    --navy-blue: #0f1c2e;
    --navy-blue-dark: #0a131f;
    --gold: #d4af37;
    --light-gold: #d4af37;
    --light-gold-hover: #f9eca5;
    --text-muted: #6c757d;
    --bg-light-alt: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--primary-font);
    color: #333;
    overflow-x: hidden;
}

/* Utilities */
.text-navy {
    color: var(--navy-blue) !important;
}

.bg-navy {
    background-color: var(--navy-blue) !important;
}

.bg-dark-custom {
    background-color: #000 !important;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-light-gold {
    background-color: var(--light-gold) !important;
}

.btn-light-gold {
    background-color: var(--light-gold);
    color: #000;
}

.btn-light-gold:hover {
    background-color: var(--light-gold-hover);
    color: #000;
}

.bg-light-alt {
    background-color: var(--bg-light-alt);
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.transition-all {
    transition: var(--transition);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {

    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 5px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/banner1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 71%) 0%, rgb(0 0 0 / 0%) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600 !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 90%;
    font-weight: 300;
}
.text-dark {
--bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    font-size: 15px;
    text-align: center;

}

    .fs-4 {
    font-size: 1.5rem !important;
    color: goldenrod !important;
    }

    .fs-3 {
        font-size: 1.75rem !important;
        color: #daa520;
    }
    .form-control-lg {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: .5rem 1rem;
    font-size: 13px;
    border-radius: var(--bs-border-radius-lg);
}

.amenity-badge {
    cursor: pointer;
    border: 1px solid #daa520 !important;
}


/* =========================================
   Components
   ========================================= */
.amenity-badge {
    cursor: pointer;
}



.why-choose-list .list-group-item {
    font-size: 1rem;
    color: #444;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light-alt);
    color: var(--navy-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-item {
    border-radius: 0;
}

/* =========================================
   Animations
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-overlay {
        background: rgba(0,0,0,0.7);
    }
    
    .navbar-collapse {
        background-color: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    .hero-subtitle {
    font-size: 12px;
    max-width: 90%;
    font-weight: 300;
}

.hero-title {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600 !important;
}
}
