/* ===== BASIS ===== */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, Arial, sans-serif;
    background: #faf7fc;
}

/* ===== HEADER ===== */
.site-header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 70%,
            #ffffff 100%),
        linear-gradient(90deg,
            #f6b6da 0%,
            #f4c1e6 25%,
            #e8c8f2 50%,
            #d9c4fa 75%,
            #cdbbff 100%);
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    max-height: 110px;
    width: auto;
    display: block;
}

/* ===== PAGINA ===== */
.page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.center-text {
    max-width: 900px;
    line-height: 1.6;
}

/* ===== MENU ===== */
.main-menu {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 18px 0;
    background: #faf7fc;
}

.main-menu a {
    text-decoration: none;
    color: #ff00c8;
    font-weight: 500;
    font-size: 20px;
}

.main-menu a:hover {
    text-decoration: underline;
}

.main-menu a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 50px;
    background:
        linear-gradient(to top,
            rgba(255, 255, 255, 0) 65%,
            #ffffff 100%),
        linear-gradient(90deg,
            #f6b6da 0%,
            #f4c1e6 25%,
            #e8c8f2 50%,
            #d9c4fa 75%,
            #cdbbff 100%);
}

.site-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
}

.footer-info {
    display: none;
}

.footer-icons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.footer-icons img {
    width: 42px;
    height: 42px;
}

/* ===== SCROLL TOP ===== */
#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    background: #ff4fb8;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* ===== LINKS ===== */
.social-link,
.mail-link {
    font-weight: 700;
    color: #ff1bb3;
    cursor: pointer;
    text-decoration: none;
}

.social-link:hover,
.mail-link:hover {
    opacity: 0.85;
}

/* ===== SOCIAL MODAL ===== */
.social-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.social-modal.show {
    display: flex;
}

.social-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 360px;
    width: 90%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 25px;
}

.social-icons img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    cursor: pointer;
}

#closeSocials {
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    background: #ff1bb3;
    color: #fff;
    cursor: pointer;
}

/* ===== MOBIEL DROPDOWN ===== */

/* Desktop standaard */
.mobile-dropdown {
    display: none;
}

/* ✅ Mobiel exact zoals Bestellen/WIE */
@media (max-width: 700px) {

    .site-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        padding-bottom: 10px;
    }

    .logo-link {
        padding-top: 20px;
    }

    .logo {
        max-width: 180px;
        height: auto;
        margin: 0;
    }

    .mobile-dropdown {
        display: block;
        width: 95%;
        margin: 14px auto 20px;
    }

    .mobile-dropdown select {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 12px;
        border: 1px solid #ddd;
        background: #f2f2f2;
        text-align: center;
        text-align-last: center;
    }

    .main-menu {
        display: none;
    }
}

@media (max-width: 700px) {

    .page {
        padding-top: 30px;
        /* ✅ ruimte tussen header en tekst */
    }

}