/* ===== Header ===== */

.site-header {
    position: relative;
    padding: 2px 40px;
    background: var(--color-primary);
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* ===== Burger ===== */

.burger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Overlay ===== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* ===== Modal ===== */

.menu-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 40px 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
    text-align: center;
}

.modal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-menu li {
    margin: 15px 0;
}

.modal-menu a {
    text-decoration: none;
    font-size: 20px;
    color: #000;
}

/* ===== Active State ===== */

.menu-active .menu-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-active .menu-modal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


/* ======================= */
/* footer                  */
/* ======================= */
.site-footer {
    background: var(--color-primary);
    padding: 60px 40px 20px;
    text-align: left;
}

/* 3 Spalten */
.footer-inner {
    display: flex;
    justify-content: center;
}
.footer-column {
    flex: 1;
}
.footer-column:first-child {
    flex: 2;
}

/* Spalten */
.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-column p,
.footer-column a {
    font-size: 0.9rem;
    text-decoration: none;
}

/* Menü */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    text-decoration: none;
}

/* Trennlinie */
.footer-divider {
    margin: 40px 0 20px;
    height: 1px;
    background: var(--color-bg);
}

/* Untere Zeile */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* Social */
/* =========================
   FOOTER SOCIALS – GLASS
========================= */

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    /* Glass Effekt */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    opacity: 0.9;
}

/* Hover – sehr subtil */
.footer-socials a:hover {
    transform: translateY(-3px) scale(1.05);

    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);

    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.footer-socials a:hover svg {
    opacity: 1;
}

#footer-adresse {
    margin-top: 0;
}

/* ======================= */
/* FOOTER LEGAL MENU       */
/* ======================= */

.footer-legal {
    text-align: center;
    margin-bottom: 15px;
}

.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal-menu li {
    margin: 0;
}

.footer-legal-menu a {
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal-menu a:hover {
    opacity: 1;
}

@media (max-width: 768px) {

    /* Spalten untereinander */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column:first-child {
        flex: unset;
    }

    /* Menü horizontal */
    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 15px 25px; /* Zeilen- und Spaltenabstand */
    }

    .footer-menu li {
        margin-bottom: 0;
    }

}