/* Import Lufga font */
@import url('https://fonts.cdnfonts.com/css/lufga');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lufga', sans-serif;
}

body {
    overflow-x: hidden;
}

nav {
    position: fixed;
    background: rgba(65, 65, 65, 0.205) !important;
    backdrop-filter: blur(10px);
    display: flex;
    width: 100%;
    padding: 0 20px;
}
/* Logo container for better control */
.logo-container {
    display: flex;
    align-items: center;
    height: 70px; /* Match navbar height */
    padding: 10px 0;
}
.logo-container img {
        max-height: 90px; 
        min-height: 130px; /* Minimum height to prevent too small logos */
        width: auto;
        object-fit: contain; /* Maintain aspect ratio */
        transition: all 0.3s ease;
    }

    /* Alternative approach - if you want the logo to fill more space */
    .logo-container-fill img {
        height: 50px;
        width: auto;
        min-width: 120px; /* Ensure minimum width */
        max-width: 200px; /* Prevent too large logos */
        object-fit: contain;
    }
/*nav img {*/
/*    height: 60px;*/
/*    width: auto;*/
/*}*/

.navbar-toggler {
    margin-left: auto;
}

.nav-link {
    color: white !important;
    margin: 10px 0;
    font-weight: 300;
}

.nav-link:hover {
    color: #C5A880 !important;
}

.book-now-btn {
    background-color: #C5A880;
    border: none;
    border-radius: 0px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #b5946e;
}

.dropdown-menu.custom-dropdown {
    top: 100%;
    margin-top: 10px;
    left: 0;
    /* transform: translateX(-50%);  */
    min-width: 920px; /* Adjust as needed */
    border: none;
    transition: all 0.3s ease;
    background: transparent;
}

.dropdown-content {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-content .navigation {
    list-style: none;
    background-color: rgb(43, 42, 42);
    font-size: 12px;
    width: 28%;
    color: white !important;
}

.text {
    font-size: 10px;
    width: 50%;
    margin-top: 20px;
    text-align: justify;
}
.dropdown-content .navigation h2{
margin-top: 40px;
font-size: 16px;
text-align: center;
}
.dropdown-content .navigation  ul{
    gap: 20px;
}
.dropdown-menu.custom-dropdown.drop1{
    left: -20%;
}

.dropdown-menu.custom-dropdown.drop2{
    left: -150%;
}
@media (max-width: 768px) {
    .dropdown-menu.custom-dropdown.drop2{
        left: -20%;
    }
}
.dropdown-content .navigation .dropdown-item {
    font-size: 11px;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    color: white ;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 90%;
    border-radius: 0px;
    background-color: rgb(71, 70, 70);
}

.dropdown-content .navigation .dropdown-item:hover {
    background-color: #C5A880;
    color: rgb(1, 19, 34) !important;
}

.content-section {
    background-color: rgb(255, 249, 249);
    width: 70%;
    padding: 28px;
}

.content-section .content-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-section .content-item.active {
    display: block;
    opacity: 1;
}
.content-item .description{
    display: flex;
    flex-wrap: wrap;
}

.content-item .description p {
    color: rgb(73, 70, 70);
    font-size: 14px;
}


.content-item .description .nav-image img {
    margin-left: 28px;
    width: 250px;
    height: 250px;
    overflow: hidden;
}



@media (max-width: 768px) {
    .dropdown-menu.custom-dropdown {
        min-width: 100%; 
        position: absolute;
        margin: 0% 18%;
    }
    
    .dropdown-content {
        display: block;
        flex-wrap: wrap;
    }
    .dropdown-content .navigation {
        font-size: 10px;
        width: 80%;
        padding-bottom: 10px;
    }
    .dropdown-content .navigation .dropdown-item {
        font-size: 10px;
        text-align: center;
        padding: 5px;
        margin: 3px 1px;
        overflow: auto;
        display: block;
        /* width: 60%; */
    }
    .content-section {
        display: none;
    }
    
    .content-item .description{
        display: block;
    }
    .content-section .content-item {
        display: none;
    }
}