/* ===== BASIS (STICKY FOOTER – DEFINITIEF) ===== */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    background: #faf7fc;
}


/* ===== HEADER ===== */
.header {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== 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: 400;
    font-size: 20px;
    font-family: Calibri
}

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




/* ===== PAGINA ===== */
.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

/* 🔥 TITELS – NIET VET, NIET ZWART */
.page h1,
.page h2,
.page h3 {
    font-weight: 400;
    /* ← dit haalt vet weg */
    color: #444;
    /* ← geen zwart */
    margin-bottom: 20px;
}

/* ===== CATALOG GRID ===== */
.catalog-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    margin: 60px 0;
}

/* ===== ITEM ===== */
.catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== AFBEELDING ===== */
.gift-item {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #f6b6da;
}

.gift-item img,
.gift-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* ===== HOVER IMAGE STACK ===== */
.gift-item img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gift-item img:first-child {
    opacity: 1;
}

/* ===== BESCHRIJVING ===== */
.gift-desc {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #444;
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.site-footer {
    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%);

    padding-bottom: 50px;
    /* extra ademruimte */
}


.footer-content {
    display: flex;
    align-items: flex-end;
    /* ⬅ dit duwt alles naar beneden */
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    /* ⬅ optioneel: nog iets meer ademruimte boven */
}


/* ===== TEKST LINKS ===== */
.footer-text {
    text-align: left;
    margin-top: 20px;
    /* meer naar onder */
    /* extra links */
    line-height: 1.6;
    font-size: 14px;
    margin-left: 100px;
}

.footer-text strong {
    font-weight: 600;
}

/* ===== ICONEN ===== */
.footer-icons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    /* LOGOS LAGER */
}

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

.footer-privacy {
    text-align: center;
    margin-top: 14px;
}

.footer-privacy a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
}

.footer-privacy a:hover {
    text-decoration: underline;
}


/* ===== SCROLL TO TOP ===== */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff5fa2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
}


.site-footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    /* ⬅ alles naar beneden */
    padding-top: 40px;
    /* ⬅ extra ruimte boven */
}


.footer-info {
    margin-left: -200px;
    /* schuift naar rechts */
}


.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;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img,
.lightbox video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    z-index: 1000;

    /* 🔥 essentieel voor swipe op mobiel */
    touch-action: none;
}


body.no-scroll {
    overflow: hidden;
}

/* ===== LIGHTBOX CONTROLS ===== */
.lightbox-close,
.lightbox .nav {
    position: absolute;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 5000;
    pointer-events: auto;
    /* 🔥 cruciaal */
}


/* KRUISJE */
.lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 36px;
}

/* PIJLTJES – exact naast media */
.lightbox .nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 44px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

/* LINKS */
.lightbox .nav.prev {
    left: calc(50% - 45vw);
}

/* RECHTS */
.lightbox .nav.next {
    right: calc(50% - 45vw);
}




/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #ff7ac8;
    text-decoration: underline;
}

.cookie-buttons {
    margin-right: 60px;
    /* schuift knoppen naar links */
    display: flex;
    gap: 12px;
}


/* ===== LINKS IN PAGINA ===== */
.page a {
    color: #ff1bb3;
    font-weight: 400;
    text-decoration: none;
}

.main-menu,
.main-menu a {
    font-family: "Carlito", "Segoe UI", Arial, sans-serif;
}

/* actieve pagina in menu */
.main-menu a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 600;
}


/* ===== SOCIAL MEDIA MODAL ===== */
.social-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

.social-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.social-box {
    background: #fff;
    padding: 30px 28px;
    border-radius: 18px;
    max-width: 320px;
    width: 85%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.social-box h3 {
    margin-bottom: 18px;
    font-size: 20px;
    color: #444;
}

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

.social-icons img {
    width: 58px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

#closeSocials {
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    background: #ff00c8;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

/* Klikbare "sociale media" link */
.social-link {
    font-weight: 700;
    color: #ff1bb3;
    cursor: pointer;
}



.page h3 .social-link,
.page h3 a {
    font-weight: 700;
    /* weer vet zoals in je eerste afbeelding */
    color: #ff1bb3;
    /* jouw roze */
}

.page p,
.page a {
    position: relative;
    z-index: 50;
}

.catalog-left {
    position: relative;
    z-index: 1;
}

.social-link,
.page a[href^="mailto"] {
    font-weight: 700 !important;
    color: #ff1bb3;
}




/* ===== MOBIEL ===== */
@media (max-width: 700px) {

    .main-menu {
        flex-wrap: wrap;
        gap: 20px;
    }

    .catalog-left {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-info {
        margin-left: 0;
    }

    /* ✅ VIDEO CONTROLS ALTIJD ZICHTBAAR */
    .gift-item video,
    .lightbox video {
        pointer-events: auto;
    }

    /* ✅ PIJLTJES ALTIJD ZICHTBAAR & KLIKBAAR */
    .lightbox .nav {
        font-size: 42px;
        padding: 10px;
        z-index: 4000;
    }

    .lightbox-close {
        z-index: 4000;
        font-size: 34px;
    }
}

.lightbox-video-wrapper {
    position: relative;
}

.lightbox-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    cursor: pointer;
    z-index: 6000;
    background: rgba(0, 0, 0, 0.25);
}

/* ❌ LIGHTBOX CONTROLS VERBERGEN OP MOBIEL */
@media (max-width: 700px) {

    .lightbox .nav {
        display: none !important;
    }

    .lightbox-close {
        display: block !important;
        top: 16px;
        right: 18px;
        font-size: 34px;
        z-index: 5000;
    }
}


@media (max-width: 700px) {
    .header {
        height: 300px;
        /* VEEL kleiner op mobiel */
        background-size: cover;
        background-position: center;

    }
}

/* 🔥 ALLEEN OP MOBIEL */
@media (max-width: 700px) {
    .mobile-dropdown {
        display: block;
    }

    .main-menu {
        display: none;
        /* desktop menu verbergen */
    }
}

@media (max-width: 700px) {
    .site-header {
        display: flex;
        flex-direction: column;
    }

    .mobile-dropdown {
        order: 2;
        /* NA de header-afbeelding */
        margin-top: 10px;
    }
}


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

.mobile-dropdown {
    display: none;
}

@media (max-width: 700px) {

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

    /* ✅ ALLEEN het logo lager zetten */
    .logo-link {
        padding-top: 20px;
    }

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

    .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;
        /* iOS */
    }

    .mobile-dropdown option {
        text-align: center;
    }

    .main-menu {
        display: none;
    }

    main.page {
        margin-top: 24px;
        padding-top: 12px;
    }
}

@media (max-width: 700px) {
    .gift-item.single:last-of-type {
        margin-left: 10px;
    }
}