/* Header Styles */
header {
    background: #1a365d !important;
    color: white !important;
    padding: 1rem 0 !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

header .container {
    max-width: none !important;
    width: 100% !important;
    padding: 0 20px !important;
}

.header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.logo {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

nav {
    position: static;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #cbd5e0;
}

/* Desktop Navigation - show by default */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    nav {
        display: block !important;
        position: static !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    z-index: 1001 !important;
    flex-shrink: 0 !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        order: 2 !important;
    }

    .logo {
        font-size: 1.3rem !important;
        order: 1 !important;
        max-width: calc(100% - 60px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .header-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 10px !important;
    }

    nav {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #1a365d !important;
        z-index: 1000 !important;
        padding-top: 80px !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        order: 3 !important;
        flex-basis: 0 !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }

    nav.open {
        display: block !important;
        transform: translateX(0) !important;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        height: 100%;
    }

    nav li {
        border-bottom: 1px solid #2d5a87;
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
    }

    nav a:hover {
        color: #f56565;
    }
} 