/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
}


/* --- Navbar / Header Styling --- */
.navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 2px solid #f4a261; /* Simple line below header mimicking the accent color boundary */
    padding: 15px 0;
     
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo img {
    height: 100px; /* Adjust based on original logo resolution */
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #000000;
}

/* Enquire Now Button */
.btn-enquire {
    display: inline-block;
    background-color: #cc5a1b; /* Vibrant brown/orange button color */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn-enquire:hover {
    background-color: #b54e16;
}

/* --- UNIVERSAL RESET FOR NAVBAR LINES --- */
.navbar, header, .nav-container {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.mobile-only-btn {
    display: none !important;
}

/* --- MOBILE VIEW RESPONSIVE (991px से नीचे) --- */
@media (max-width: 991px) {
    
    /* हेडर को जबरन एक लाइन में लाना */
    .navbar {
        padding: 15px 20px !important;
        display: block !important;
        width: 100% !important;
         position: relative;
    }

    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* मोबाइल हैमबर्गर बटन को स्क्रीन पर दिखाना */
    .nav-toggle {
        display: block !important;
    }

    /* डेस्कटॉप वाले इन्क्वायरी बटन को छिपाना */
    .desktop-only-btn {
        display: none !important;
    }

    /* मोबाइल मेनू बॉक्स (ड्रॉपडाउन लिस्ट) */
    .nav-links{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    z-index:9999;
}

.nav-links.mobile-active{
    display:flex !important;
}

    /* मेनू के अंदर के लिंक्स (Home, About, Booking) */
    .nav-links a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 0 !important;
        font-size: 18px !important;
        color: #333333 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }

    /* मोबाइल मेनू के अंदर दिखने वाला 'Enquire Now' बटन */
    .mobile-only-btn {
        display: inline-block !important;
        width: auto !important;
        padding: 10px 30px !important;
        background-color: #ff6b00 !important; /* आपकी थीम का ऑरेंज कलर */
        color: #fff !important;
        border-radius: 5px !important;
        margin-top: 10px !important;
    }
}



