/* Header Styles - WolfeWare
 * Created: 03/24/2025
 * This file contains header styles for consistent UI across all pages
 */

/* Base Header Styles */
header {    
    height: auto;
    min-height: 120px;
    background-color: #f46e00;
    background-image: url('../../images/icon.png');
    background-repeat: no-repeat;
    background-size: 120px;
    background-position: 15px center;    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 15px 10px 150px;
    box-sizing: border-box;
    width: 100%;
}

/* Header Title Styles */
h1 {        
    margin: 0;  
    color: #000000;    
    text-align: center;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.2;
    position: relative;
    right: 60px; /* Offset to center the title in the visible space */
}

h1 a {
    display: block;
    text-decoration: none;
    color: #000000;
}

.top-line, .bottom-line {
    display: block;
}

.bottom-line {
    margin-top: 5px;
    font-size: 1.2em;
}

h1 a:link, h1 a:visited { 
    color: #000000;
    text-decoration: none;
} 

h1 a:hover { 
    color: #FFFFFF;
    text-decoration: none;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 10px 10px 120px;
        background-size: 100px;
        background-position: 10px center;
        min-height: 110px;
    }
    
    h1 {
        font-size: 1.5rem;
        right: 50px;
    }
    
    .bottom-line {
        margin-top: 3px;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 8px 8px 8px 105px;
        background-size: 85px;
        background-position: 10px center;
        min-height: 100px;
    }
    
    h1 {
        font-size: 1.2rem;
        right: 40px;
    }
    
    .top-line, .bottom-line {
        white-space: normal;
        word-wrap: break-word;
    }
}
