/* Simple Responsive Navigation */
.simple-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #000;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

/* Make the nav section full-bleed and black */
#section-27-9 {
    background: #000;
    padding: 0;
}

#section-27-9 .ct-section-inner-wrap {
    max-width: none;
    padding: 0;
    margin: 0;
}

.nav-logo h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: inherit;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Hide close button by default (desktop) */
.nav-close {
    display: none;
}

/* Call button in nav */
.nav-call-button {
    background-color: #fcb900 !important;
    color: #000 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: background-color 0.3s ease !important;
}

.nav-call-button:hover {
    background-color: #e6a600 !important;
    color: #000 !important;
    opacity: 1 !important;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

/* Mobile styles */
@media (max-width: 768px) {
    .simple-nav {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: white;
        font-size: 1.5rem;
    }
    
    /* Hide close button by default, show only when menu is active */
    .nav-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        display: none;
    }
    
    .nav-menu.active .nav-close {
        display: block;
    }
}
