/* =========================================
   DESKTOP STYLES (min-width: 992px)
   ========================================= */

@media screen and (min-width: 992px) {
    /* --- Navbar & Header --- */
    .navbar {
        min-height: 130px;
    }
    
    .navbar-top {
        min-height: 85px;
        padding: 5px 0 15px 0;
        justify-content: center;
        position: relative;
    }
    
    .navbar-top .logo-wrapper {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar .navbar-nav {
        padding-top: 15px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    
    .logo-wrapper {
        justify-content: center;
        margin: 0 auto;
    }
    
    .logo-img {
        height: 115px !important;
        width: auto !important;
        max-width: 500px;
        transform: translate(0px, 0px) !important;
        transition: all 0.3s ease-in-out !important;
    }
    
    .nav-scroll .logo-img {
        height: 70px !important;
        transform: translate(0px, 0px) !important;
    }
    
    .nav-scroll .navbar-top {
        min-height: 60px;
        padding: 10px 0 5px 0;
    }
    
    /* --- Dropdowns --- */
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 190px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Nested Dropdown */
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        margin-left: 0;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }
    
    /* Show submenu on hover */
    .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        display: block !important;
    }
    
    /* Custom arrow for submenus */
    .dropdown-submenu > .dropdown-toggle::after {
        content: "\f054";
        font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
        font-weight: 900;
        border: none;
        vertical-align: middle;
        margin-left: auto;
        font-size: 10px;
        float: right;
        margin-top: 7px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(90deg);
    }

    /* --- Footer 12 Column Layout --- */
    .footer-row-12 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 30px;
        margin: 0;
    }
    
    .footer-row-12 > .col-lg-2 { grid-column: span 2; padding-left: 0; }
    .footer-row-12 > .col-lg-3 { grid-column: span 3; }
    .footer-row-12 > .col-lg-3:last-child { padding-right: 0; }
    .footer-row-12 > .col-lg-4 { grid-column: span 4; }
    
    .footer-row-12 > [class*="col-lg-"] {
        padding: 0 20px;
    }

    .footer-column {
        height: 100%;
        display: flex;
        flex-direction: column;
        flex: 1;
        padding-bottom: 20px;
    }
    
    .footer-column:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(170, 132, 83, 0.2), transparent);
    }
    
    .footer-about {
        justify-content: flex-start;
    }

    /* --- Container Widths --- */
    .container {
        max-width: 960px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

/* Hide booking mobile button on desktop */
@media screen and (min-width: 576px) {
    .booking-mobile {
        display: none;
    }
}
