header {
    margin: 0;
    padding: 0;
}
.header-section {
    background-color: var(--color-light-black);    
    color: var(--color-white);
    height: 4rem;
    width: 100%;
    display: flex;               
    align-items: center;         
    justify-content: space-between; 
    box-shadow: 0 4px 12px rgba(4, 39, 74, 0.25);  
}  
.container-contact {    
    width: 85%;
    align-items: center;
    justify-content: space-evenly;
    text-align: right;
    justify-self: justify; 
    display: flex;
    flex-direction: row;        
}
.container-contact a {
    color: var(--color-white);
    font-family: var(--font-primary);
    text-decoration: none;  
} 
.container-social {
    background-color: var(--color-light-black);    
    width: 15%;
    height: 35px;   
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;    
    justify-self: start;  
    margin-right: 2rem;
    margin-left: 2rem; 
    padding: 0;    
}
.fa-brands {
     color: var(--color-gold);       
     margin-left: 0.25rem;
     width: 20px;
     padding: 1.5;         
}
.fa-brands:hover {
     color: var(--color-white);      
     margin-left: 0.25rem;
     width: 20px;
     padding: 1.5;     
}
.social-links a {    
     text-decoration: none;
}
.phone {
    text-decoration: none;       
}

/* Address container */
.container-contact {
    display: flex;
    flex-direction: row;
    text-align: right;
    justify-self: justify; 
    width: 85%;
    align-items: center;
    gap: 0.75rem;     
    
}

/* Each contact row */
.container-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.3;
}
/* Icons */
.container-contact .contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.85;   
    gap: 0.75rem;
}
.container-contact a:hover {
    color: var(--color-white); 
}
.container-contact a:hover .contact-icon {
    opacity: 1;
}
.address-link span {
    display: block;
}
/* Media Queries */
@media (max-width: 1200px) {
    .header-section {
        display: none
    }
}