/* ==================================================
   HEADER STYLES
   ================================================== */

/* Header */
header {
    background: #F7F9FA;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

nav .cta-button {
    margin: 0.5rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0583D2;
}

.logo:hover .logo-text {
    color: #0470b8;
    transition: color 0.3s ease;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #23272C;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0583D2;
}

/* Responsive Header */
@media (max-width: 1024px) {
    nav {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .logo img {
        height: 32px;
        max-height: 32px;
    }

    .logo-text {
        font-size: 1.25rem;
    }
    
    nav .cta-button {
        width: auto;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
        max-height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    nav .cta-button {
        min-width: 180px;
        padding: 0.8rem 1.2rem;
    }
}