/* Header Fixes - Make the top bar thinner */

/* Override the main header styles */
.header {
    padding: 0.3rem 0 !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08) !important;
    border-bottom: 2px solid var(--beige-dark) !important;
    min-height: auto !important;
}

.academy-logo {
    width: auto;
    height: 40px !important;
    margin-left: 10px !important;
}

.logo h1 {
    font-size: 1.3rem !important;
    margin: 0;
}

.logo p {
    font-size: 0.7rem !important;
    margin-top: 0 !important;
}

.header .cta-button {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
}

/* Tablet and mobile adjustments */
@media screen and (max-width: 992px) {
    .header {
        padding: 0.25rem 0 !important;
    }
    
    .logo {
        margin-bottom: 0.2rem !important;
    }
    
    .academy-logo {
        height: 38px !important;
    }
    
    .logo h1 {
        font-size: 1.2rem !important;
    }
    
    .logo p {
        font-size: 0.65rem !important;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0.2rem 0 !important;
    }
    
    .academy-logo {
        height: 35px !important;
        margin-left: 5px !important;
    }
    
    .logo h1 {
        font-size: 1.1rem !important;
    }
    
    .header .cta-button {
        padding: 0.3rem 0.7rem !important;
        font-size: 0.75rem !important;
    }
} 