/* Header */
.header {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--header-footer-padding) 0;
    background-color: var(--secondary-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.header .logo {
    font-size: var(--logo-font-size);
    font-weight: bold;
    color: var(--logo-color);
    margin-left: 50px;
    text-decoration: none;
    flex: 1;
}

.logo img {
    width: 65px;  /* Platums 9vh */
    height: 65px; /* Augstums 9vh */
    object-fit: contain; /* Nodrošina, ka attēls saglabā proporcijas */
    padding: 5px;
}

.nav {
    flex: 2;
}

.header .social-icons {
    display: flex;
    gap: 20px;
    margin-right: 50px;
    flex: 1;
    justify-content: flex-end;
}

.header .social-icons a {
    text-decoration: none;
    color: var(--header-social-icon-color);
    font-size: var(--icon-font-size);
    transition: color 0.3s ease;
    will-change: color;
}

.header .social-icons a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-color);
    padding: var(--header-footer-padding) 0;
    text-align: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    flex-shrink: 0;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
}

.footer .social-icon {
    font-size: var(--icon-font-size);
    color: var(--footer-social-icon-color);
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
    will-change: transform, color;
}

.footer .social-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}
