/* Header Styles */
.full-width-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 60px;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    display: inline-block;
}

.nav-link:hover {
    color: white;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .full-width-header .col-md-2,
    .full-width-header .col-md-3 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

@media (max-width: 768px) {
    .full-width-header .col-md-2,
    .full-width-header .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .logo {
        max-height: 40px;
        margin: 10px 0;
    }
    
    .full-width-header {
        position: relative;
    }
}