/* =============== GLOBAL RESET =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============== BODY / BACKGROUND =============== */
body {
    font-family: Arial, sans-serif;
    color: rgb(32, 31, 31);
    overflow-y: auto; /* Hiermee kan de pagina altijd verticaal scrollen */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; /* Zorg ervoor dat de body minimaal de volledige hoogte van het scherm vult */
    
    /* Zwart / grijs / wit bewegende gradient */
    background: linear-gradient(45deg, #000000, #353535, #222121, #000000);
    background-size: 300% 300%;
    animation: gradientAnimation 10s ease-in-out infinite;
}

/* Zorg ervoor dat het html-element de volledige hoogte van het scherm vult */
html {
    height: 100%;
}

/* =============== SCROLL EN CONTENT =================== */
.container {
    flex-grow: 1;
    padding-bottom: 50px; /* Ruimte voor de footer */
    margin-top: 50px; /* Voeg wat ruimte bovenaan toe */
    min-height: 120vh; /* Zorg ervoor dat de container altijd groter is dan het scherm, dus altijd scrollbaar */
}

/* Voeg wat meer ruimte aan de content toe voor de test */
.content-section {
    height: 150vh; /* Verhoog de hoogte van de content-sectie, zodat het langer is dan de schermgrootte */
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

/* =============== EXTRA INHOUD VOOR SCROLL =================== */
.extra-content {
    height: 200vh; /* Maak deze sectie veel groter om te testen of scrollen werkt */
    background: rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

/* ===================== CONTENT SECTION ===================== */
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
}

/* ===================== IMAGE CONTAINER ===================== */
.image-container {
    flex: 1;
    text-align: center;
}

/* Hijab afbeelding met gouden rand en glinstering animatie */
.hijab-image {
    width: 300px;  /* Pas de grootte van de afbeelding aan zoals gewenst */
    height: 400px;
    object-fit: cover;
    border: 8px solid gold; /* Gouden rand om de foto */
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw voor extra flair */
    animation: goldGlow 2s ease-in-out infinite alternate; /* Glinsterende animatie */
}

/* Animatie voor gouden rand */
@keyframes goldGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

/* ===================== TEXT CONTAINER ===================== */
.text-container {
    flex: 2;
}

/* Grote tekst */
.large-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
}

/* Kleine tekst */
.small-text {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ===================== BUTTON ===================== */
.buy-button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ffcc00); /* Gouden kleur */
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw */
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor de gouden knop */
.buy-button:hover {
    background: linear-gradient(135deg, #ffcc00, #ffd700); /* Donkerder goud bij hover */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Versterkte gouden gloed */
    transform: scale(1.05); /* Knop vergroot een beetje bij hover */
}



/* Zachte background animatie */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* =============== HEADER =============== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);

    animation: headerSlideDown 0.9s ease-out;
}

/* ===================== FEATURES CONTAINER ===================== */
.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: calc(50% - 20px); /* Flexibility for mobile */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* ===================== SECTION TITLE ===================== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 40px;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

/* ===================== BUTTON ===================== */
.button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #00b4d8, #00ffff);
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor knoppen */
.button:hover {
    background: linear-gradient(135deg, #ffffff, #00b4d8);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    transform: scale(1.05);
}

/* Nieuwe klasse voor de Gouden knop */
.buy-vip-button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ffcc00); /* Gouden kleur */
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw */
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor de gouden knop */
.buy-vip-button:hover {
    background: linear-gradient(135deg, #ffcc00, #ffd700); /* Donkerder goud bij hover */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Versterkte gouden gloed */
    transform: scale(1.05); /* Knop vergroot een beetje bij hover */
}



/* Header animatie */
@keyframes headerSlideDown {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo container met lichte float animatie */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 4s ease-in-out infinite;
}

/* Rond logo met glinstereffect */
.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 18px rgba(200, 200, 200, 0.7);
    animation: logoGlow 2.2s ease-in-out infinite alternate;
}

/* Logo zacht zweven */
@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logo glinstering */
@keyframes logoGlow {
    0% {
        box-shadow:
            0 0 5px rgba(255, 255, 255, 0.3),
            0 0 12px rgba(180, 180, 180, 0.4);
    }
    100% {
        box-shadow:
            0 0 12px rgba(255, 255, 255, 0.9),
            0 0 25px rgba(220, 220, 220, 0.7);
    }
}

/* Titel naast logo */
.header-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    /* Zwart-wit metallic text effect */
    background: linear-gradient(90deg, #ca1bec, #ca1bec, #fcf9f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/* =============== MAIN CONTAINER =============== */
.container {
    text-align: center;
    margin-top: 150px; /* ruimte onder header */
    max-width: 800px;
    padding: 0 20px;

    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== TEXT STYLES =============== */
.welcome-text {
    font-size: 2.6rem;
    margin-bottom: 10px;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(255, 255, 255, 0.4);
}

.subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: #f3f3f3;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* =============== BUTTONS =============== */
.button-container {
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 12px 32px;
    margin: 8px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 600;

    /* Zwart / grijs / wit gradient knop */
    background: linear-gradient(135deg, #000000, #3b3b3b, #f5f5f5);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 0 12px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(255, 255, 255, 0.35);

    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

/* Hover effect: iets groter + meer glow */
.button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 18px rgba(0, 0, 0, 0.9),
        0 0 28px rgba(255, 255, 255, 0.6);
    filter: brightness(1.08);
}

/* Social buttons gewoon dezelfde stijl */
.social-buttons {
    margin-top: 10px;
}

/* =============== FOOTER =============== */
.footer {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #d0d0d0;
    opacity: 0.7;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 600px) {
    header {
        padding: 10px 15px;
        justify-content: center;
    }

    .header-title {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .container {
        margin-top: 130px;
    }

    .welcome-text {
        font-size: 2rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .button {
        width: 80%;
        max-width: 260px;
    }
}
/* NAV MENU */
.nav-menu {
    margin-left: auto;
    display: flex;
    gap: 25px;
    align-items: center;
}







/* ===================== LEFT SECTION (Text and Buy Button) ===================== */
.left-section {
    flex: 1;
    text-align: left;
    margin-top: 40px;  /* Verhoog de margin-top om de tekst en knop verder naar beneden te verschuiven */
}

/* Grote tekststijl voor "Hijab Heaven" */
.large-text {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Beschrijving onder de grote tekst */
.description-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===================== BUTTON ===================== */
.buy-vip-button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ffcc00); /* Gouden kleur */
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw */
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor de gouden knop */
.buy-vip-button:hover {
    background: linear-gradient(135deg, #ffcc00, #ffd700); /* Donkerder goud bij hover */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Versterkte gouden gloed */
    transform: scale(1.05); /* Knop vergroot een beetje bij hover */
}



/* ===================== MAIN CONTENT ===================== */
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
}

.image-container {
    text-align: center;  /* Zorg ervoor dat de afbeelding gecentreerd is */
    margin-top: -240px;  /* Verhoog deze waarde om de afbeelding verder naar beneden te verplaatsen */
    margin-left: 700px;
}
.hijab-image {
    width: 400px;  /* Pas de grootte van de afbeelding aan zoals gewenst */
    height: 500px;
    object-fit: cover;
    border: 8px solid gold; /* Gouden rand om de foto */
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw voor extra flair */
    animation: goldGlow 2s ease-in-out infinite alternate; /* Glinsterende animatie */
}

.text-container {
    flex: 2;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================== BUTTON ===================== */
.buy-vip-button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ffcc00); /* Gouden kleur */
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); /* Gouden schaduw */
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor de gouden knop */
.buy-vip-button:hover {
    background: linear-gradient(135deg, #ffcc00, #ffd700); /* Donkerder goud bij hover */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Versterkte gouden gloed */
    transform: scale(1.05); /* Knop vergroot een beetje bij hover */
}


/* Moderne, dikke nav-link met mooi font */
.nav-link {
    font-family: 'Poppins', sans-serif;  /* Modern en dik font */
    font-weight: 700;  /* Dikke tekst */
    font-size: 1.2rem;  /* Iets grotere tekst */
    text-decoration: none;
    color: #e6e6e6;
    padding: 8px 15px;
    border-radius: 6px;
    text-transform: uppercase;  /* Alle tekst in hoofdletters */
    letter-spacing: 1px;  /* Kleine spatiëring voor moderne look */

    transition: 0.3s ease-in-out, color 0.2s ease-in-out;
}

/* Hover effect: Glow en vergroot de tekst */
.nav-link:hover {
    color: #fff;  /* Witte tekst bij hover */
    background: linear-gradient(135deg, #ff6a00, #ee0979);  /* Kleurrijk verloop op hover */
    background-clip: text;
    -webkit-background-clip: text;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);  /* Knop vergroot een beetje bij hover */
}


.premium-box {
    margin-top: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;

    animation: fadeInUp 1.4s ease-out;
}

.premium-product {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.premium-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #e6e6e6;
    margin-bottom: 20px;
    line-height: 1.6;
}
.social-icon {
    width: 16px;   /* kleiner icoon */
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}
.social-icon {
    width: 40px;
    height: 40px;
}
.social-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* ===================== WELCOMES, SUBTITLE, DESCRIPTION ===================== */

/* Futuristische stijl voor teksten */
.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    background: linear-gradient(45deg, #ffffff, #c508ff);
    background-size: 200%;
    -webkit-background-clip: text;
    color: transparent;

    animation: gradientAnimation 5s ease infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(174, 0, 255, 0.6);
}

/* Glimmende achtergrond animatie */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #e6e6e6;
    text-transform: capitalize;
    margin-top: 15px;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

/* Fade-in animatie voor subtitle */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #d0d0d0;
    line-height: 1.8;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1s;
}

/* ===================== BUTTON STYLING ===================== */
.button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #00b4d8, #00ffff);
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(54, 36, 3, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect voor knoppen */
.button:hover {
    background: linear-gradient(135deg, #ffffff, #00b4d8);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    transform: scale(1.05);
}
