/*====  HEADER / FOOTER  ====*/
header {
    width: 100%;
    background: linear-gradient(to right, var(--primary-color) 66%, var(--secondary-color));
    padding: 1rem 0;
    z-index: 1000;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: clamp(120px, 80vw, 1000px);
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .logo {
        content: url('../images/CLKlogo_Horiz_Stack.svg');
        max-width: 480px; /* Fixed size for mobile logo */
    }
    .tagline {
        font-size: 1rem;
        /* color:blue; */
        padding: 0;
    }
}

.header-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to left, var(--primary-color) 66%, var(--secondary-color));
    padding: 0.75rem 0;
    color: var(--text-light);
    text-align: center;
    z-index: 1000;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.company {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

main {
    max-width: 1100px;
    margin: 8rem auto;
    padding: 0 1rem; 
}

