a {
    color: black;
}

.header-container {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    background: #ffffff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    overflow-x: hidden;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.5rem;
    justify-content: space-between;
    align-items: center;
    font-family: "Special Gothic", Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.left-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.left-content h1 {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.icon-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0.25rem;
    text-decoration: none;
}

.menu-icon-size {
    font-size: 2rem;
}

.text-by-icon {
    padding-left: 0.25rem;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.75rem;
}

.menu-icon-left {
    font-size: 2rem;
}

.menu-icon-right {
    display: none;
}

/* Desktop - 80rem (1280px) and up */
@media (min-width: 80rem) {
    .header {
        flex-direction: row;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .left-content {
        justify-content: flex-start;
        width: auto;
    }
    
    .left-content h1 {
        font-size: 1.5rem;
    }
    
    .header-icons {
        justify-content: flex-end;
        width: auto;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .text-by-icon {
        font-size: 0.9rem;
    }
}