.elementor-116 .elementor-element.elementor-element-12513ba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-255c338 *//* RESTRUCTURED HEADER STYLES */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    padding: 20px 0;
    z-index: 99999;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Header with scroll background */
.header.scrolled {
    background: rgba(243, 234, 221, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(222, 173, 23, 0.1);
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 40px;
    width: 80%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    gap: 20px;
}

/* Navigation Links - 40% LEFT */
.nav-section {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-start;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-left a {
    color: #000;   
}

a:visited {
    color: #000;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #DEAD17;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-item:hover,
.nav-item.active {
    color: #DEAD17;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Logo Section - 20% CENTER */
.logo-section {
    flex: 0 0 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo {
    animation: floating 3s ease-in-out infinite;
    cursor: pointer;
}

.logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(222, 173, 23, 0.2));
}

.logo-link:hover .logo img,
.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(222, 173, 23, 0.3));
}

/* Buttons Section - 40% RIGHT */
.buttons-section {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button Styles */
.contact-btn, .reserve-btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 2px solid #DEAD17;
    cursor: pointer;
}

.contact-btn {
    color: #333;
    background: transparent;
}

.reserve-btn {
    color: #333;
    background: #DEAD17;
}

.contact-btn:hover {
    background: #DEAD17;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 173, 23, 0.3);
}

.reserve-btn:hover {
    background: #c49a15;
    border-color: #c49a15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 154, 21, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #DEAD17;
    border: 2px solid #DEAD17;
    border-radius: 8px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100000;
}

.mobile-menu-toggle:hover {
    background: #c49a15;
    border-color: #c49a15;
}

.mobile-menu-toggle.active {
    background: #c49a15;
    border-color: #c49a15;
}

/* Animations */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE BREAKPOINTS */

/* Large Laptops (1200px - 1366px) */
@media (max-width: 1366px) {
    .container {
        width: 85%;
        padding: 0 30px;
    }
    
    .nav-left {
        gap: 25px;
    }
    
    .nav-item {
        font-size: 15px;
    }
    
    .logo img {
        height: 70px;
    }
}

/* Medium Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        width: 90%;
        padding: 0 25px;
    }
    
    .nav-left {
        gap: 20px;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .contact-btn, .reserve-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .logo img {
        height: 65px;
    }
}

/* Small Laptops/Large Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 95%;
        padding: 0 20px;
    }
    
    .nav-left {
        gap: 15px;
    }
    
    .nav-item {
        font-size: 13px;
    }
    
    .contact-btn, .reserve-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .logo img {
        height: 60px;
    }
}

/* Tablets (600px - 768px) - MOBILE MENU STARTS HERE */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        height: auto;
        min-height: 60px;
    }
    
    /* SHOW MOBILE TOGGLE */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    /* Hide desktop nav and buttons by default */
    .nav-section {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(243, 234, 221, 0.98);
        backdrop-filter: blur(20px);
        padding: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(222, 173, 23, 0.1);
        z-index: 99998;
        animation: slideDown 0.3s ease;
    }
    
    .nav-section.active {
        display: block !important;
    }
    
    .nav-left {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .logo-section {
        flex: 1;
        justify-content: flex-start;
    }
    
    .buttons-section {
        display: none;
        position: absolute;
        top: calc(100% + 280px);
        left: 0;
        right: 0;
        background: rgba(243, 234, 221, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        justify-content: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(222, 173, 23, 0.1);
        z-index: 99998;
        animation: slideDown 0.3s ease;
    }
    
    .buttons-section.active {
        display: flex !important;
    }
    
    .logo img {
        height: 55px;
    }
}

/* Mobile Phones (320px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .contact-btn, .reserve-btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .buttons-section .nav-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}/* End custom CSS */