/* ✅ Base Navbar Styling */
.custom-navbar {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
}

/* ✅ Navbar Brand */
.navbar-brand h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fb8a05;
}

/* ✅ Navbar Links */
.navbar-nav {
    margin: auto;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fb8a05;
}

/* ✅ Burger Menu (Hidden on Desktop) */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fb8a05;
    cursor: pointer;
}

/* ✅ Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

/* ✅ Language Button */
.lang-btn {
    background: transparent;
    color: #fb8a05;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #fb8a05;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background: #fb8a05;
    color: #fff;
}

/* ✅ Language Dropdown */
.lang-dropdown {
    display: none;
    position: absolute;
    border: 2px solid #fb8a05;
    top: 55px;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    min-width: 150px;
    z-index: 100;
}

.lang-dropdown a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.lang-dropdown a:hover {
    background: #fb8a05;
    color: white;
}

/* ✅ Show Dropdown on Hover */
.language-switcher:hover .lang-dropdown {
    display: block;
}

/* ✅ Responsive: Mobile View */
@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
    }

    #navbarContent {
        display: none;
        position: absolute;
        background: #fff;
        width: 100%;
        top: 60px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    /* ✅ Hide Desktop Language Button */
    .language-switcher.d-lg-inline-block {
        display: none !important;
    }

    /* ✅ Show Language Button Inside Burger Menu */
    .lang-menu {
        display: block !important;
    }

    /* ✅ Mobile-Specific Language Dropdown */
    .lang-dropdown {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }

    .lang-dropdown a {
        text-align: center;
        display: block;
    }
}

/* Base Navbar Styling */
.custom-navbar {
    background: #fff;
    padding: 15px 0;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
    top: 0;
}

/* Hide Navbar on Scroll Down */
.navbar-hidden {
    transform: translateY(-100%);
}

/* Centering logo */
.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Navigation Links */
.navbar-nav {
    margin: auto;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Smooth Color Change on Hover */
.navbar-nav .nav-link:hover {
    color: #fb8a05;
}

/* Right Side Buttons */
.header-buttons {
    display: flex;
    align-items: center;
}

.btn-transparent {
    background: transparent;
    color: #fb8a05;
    border: 2px solid #fb8a05;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.btn-transparent:hover {
    background: #fb8a05;
    color: #fff;
}

.btn-filled {
    background: #fb8a05;
    color: #fff;
    border: 2px solid #fb8a05;
    padding: 8px 20px;
    border-radius: 25px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-filled:hover {
    background: #e07a04;
    border-color: #e07a04;
}

/* Navbar Animation on Scroll */
.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


/* ✅ Banner Section */
.banner_section {
    margin-top: 80px;
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* ✅ Background Image with Filter (Applies only on Image) */
.banner_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1583939411023-14783179e581?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fA%3D%3D') no-repeat center center/cover;
    filter: brightness(50%);
    z-index: -1;
    /* Puts the filtered background behind everything */
}

/* ✅ Banner Content */
.banner-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: auto;
    position: relative;
    /* Ensures content is above the background */
    z-index: 2;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    /* Adjust shadow to improve readability */
}

.banner-content p {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* ✅ Button Styles */
.btn_main {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact_btn {
    background: #fb8a05;
    color: white;
}

.explore_btn {
    background: transparent;
    color: white;
}

.contact_btn:hover {
    background: white;
    color: #fb8a05;
}

.explore_btn:hover {
    background: #fb8a05;
    color: white;
}


/* ✅ Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

/* Locations Section */
.locations_section {
    padding: 60px 0;
    background: #f8f9fa;

}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Location Cards */
.location-card {
    background: white;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 30px;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-content {
    padding: 15px;
}

.location-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Book Button */
.btn-primary1 {
    background: #fb8a05;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.btn-primary1:hover {
    background: #e07a04;
}

/* See More Button */
.see-more-btn {
    font-size: 18px;
    font-weight: bold;
    color: #fb8a05;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.see-more-btn:hover {
    color: #e07a04;
}

/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
    .banner_section {
        height: 60vh;
        /* Adjust height for tablets */
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .btn_main {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .banner_section {
        height: 50vh;
        /* Adjust height for smaller screens */
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner_section {
        height: 40vh;
        /* Adjust height for mobile */
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.8rem;
    }

    .btn_main {
        flex-direction: column;
        gap: 8px;
    }
}