/* ===================================
   HEADER STYLES
   =================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) var(--transition-ease);
    height: 160px;

}

/*#header.scrolled {
    background: linear-gradient(to bottom, rgba(30, 58, 95, 1), rgba(6, 66, 115, 1));
    box-shadow: var(--shadow-xl);
}*/

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    animation: fadeIn 0.8s var(--transition-ease);
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Logo glow effect */
.logo::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 80px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem var(--spacing-sm);
        height: 120px;
    }


    #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) var(--transition-ease);
    height: 120px;
    width: 100%;
}
    
    .logo img {
        height: 80px;
    }
    
    .logo::after {
        width: 250px;
        height: 95px;
    }
}





@media (max-width: 480px) {

    #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) var(--transition-ease);
    height: 120px;
    width: 100%;
}
    .logo img {
        height: 80px;
    }
}
