@import url('https://fonts.googleapis.com/css?family=Bangers&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f9ff;
    color: #20232a;
}

h1, h2, h3 {
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

/* HERO VAK (blauw) */
#hero {
    background: linear-gradient(120deg, #b3e0ff 70%, #e5f4ff 100%);
    padding: 2rem 0 2.2rem 0;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 2px 36px 0 rgba(131,186,255,0.12);
    min-height: 140px;
    margin-bottom: 2rem;
    margin-top: 0 !important;
    position: relative;
}

/* Bovenbalk in hero */
.hero-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 92%;
    max-width: 1100px;
    margin: 0 auto 0.7rem auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}

.profile-logo {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #fff;
    box-shadow: 0 3px 14px 0 rgba(0,0,0,0.08);
    margin-left: 0.5rem;
    margin-top: 0.4rem;
}

/* Navigatie rechts */
.top-nav {
    display: flex;
    gap: 1.1rem;
    margin-top: 1.1rem;
}

.top-nav a {
    color: #428af5;
    background: #fff;
    border-radius: 16px;
    padding: 0.22em 1em;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.07rem;
    font-family: 'Bangers', cursive;
    border: 2px solid #b3e0ff;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.top-nav a:hover {
    background: #b3e0ff;
    color: #005997;
    border-color: #0098f6;
}

/* Hero content - text/socials hoger */
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}

.hero-content {
    margin-top: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 0;
}

.hero-text {
    width: 100%;
    text-align: center;
}

#hero h2 {
    font-size: 2.2rem;
    color: #0069b8;
    margin-bottom: 0.5rem;
    font-family: 'Bangers', cursive;
    text-align: center;
}

.highlight {
    color: #0098f6;
    text-shadow: 2px 2px 0 #fff, 0 0 16px #aeefff;
}

.hero-text p {
    margin-bottom: 1.1rem;
}

/* Social links met iconen vóór tekst */
.social-links {
    margin-top: 0.7rem;
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    font-family: 'Bangers', cursive;
    font-size: 1.09rem;
    color: #fff;
    text-decoration: none;
    padding: 0.53rem 1.4rem 0.53rem 1.05rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #40cfff 30%, #0098f6 100%);
    box-shadow: 0 2px 10px 0 rgba(64,207,255,0.10);
    transition: background 0.19s, transform 0.15s, box-shadow 0.17s;
    border: none;
    outline: none;
    border: 2px solid #a7e3ff;
    gap: 0.7em;
    font-weight: bold;
}
.social-links a .icon {
    display: flex;
    align-items: center;
    margin-right: 0.4em;
}

.social-links .yt { background: linear-gradient(90deg, #fa3131 20%, #ff6060 100%); border-color: #ffdada;}
.social-links .yt:hover { background: linear-gradient(90deg, #ff6060 10%, #fa3131 90%);}
.social-links .ig { background: linear-gradient(90deg, #fd746c 40%, #ff9068 100%); border-color: #ffe2d7;}
.social-links .ig:hover { background: linear-gradient(90deg, #ff9068 10%, #fd746c 90%);}
.social-links .tt { background: linear-gradient(90deg, #00f2ea 40%, #0098f6 100%); border-color: #ccf6ff;}
.social-links .tt:hover { background: linear-gradient(90deg, #0098f6 10%, #00f2ea 90%);}
.social-links .sc { background: linear-gradient(90deg, #fffc00 40%, #ffd600 100%); color: #242424; border-color: #fffabe;}
.social-links .sc:hover { background: linear-gradient(90deg, #ffd600 10%, #fffc00 90%); color: #111;}

/* ---- VIDEO GRID ---- */
#videos {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

#videos h2 {
    color: #00b4d8;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.3rem;
}

.video-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 38px 0 rgba(179,224,255,0.18);
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.14s;
    min-height: 300px;
}

.video-card:hover {
    box-shadow: 0 18px 38px 0 rgba(61,151,255,0.20);
    transform: translateY(-7px) scale(1.03) rotate(-1deg);
}

.youtube-thumb-link {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(179,224,255,0.16);
    transition: transform 0.13s;
}
.youtube-thumb-link:hover {
    transform: scale(1.03);
}

.youtube-thumb {
    width: 100%;
    padding-top: 56.25%; /* 16:9 verhouding */
    background-size: cover;
    background-position: center;
    position: relative;
}

.youtube-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 62px;
    height: 62px;
    background: rgba(0,0,0,0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.youtube-play-btn::before {
    content: '';
    display: block;
    width: 0; height: 0;
    border-left: 26px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.video-card h3 {
    font-size: 1.2rem;
    margin-top: 0.4rem;
    color: #0077b6;
    text-align: center;
    font-family: 'Bangers', cursive;
}

#about, #contact {
    margin: 2.8rem 0;
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 16px rgba(179,224,255,0.12);
}

#about h2, #contact h2 {
    color: #00b4d8;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1.13rem;
    color: #232323;
    line-height: 1.5;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 1rem;
    border: 1.5px solid #aeefff;
    border-radius: 8px;
    font-size: 1.05rem;
    background: #f3f9ff;
}

form button {
    background: linear-gradient(90deg, #40cfff 10%, #0098f6 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.2rem;
    font-size: 1.2rem;
    font-family: 'Bangers', cursive;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.17s;
    margin-top: 0.5rem;
    box-shadow: 0 2px 10px 0 rgba(64,207,255,0.13);

}


form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
}
form input, form textarea {
    width: 100%;
    margin-top: 0.3rem;
}


form button:hover {
    background: linear-gradient(90deg, #0098f6 10%, #40cfff 100%);
    color: #fff;
    transform: scale(1.04) rotate(-1deg);
}

footer {
    background: #b3e0ff;
    color: #0077b6;
    text-align: center;
    padding: 1.2rem 0;
    border-top-left-radius: 50px;
    margin-top: 2rem;
    box-shadow: 0 -4px 20px 0 rgba(179,224,255,0.10);
}


/* Zorg dat de container niet de volledige breedte pakt */
.container {
    width: 100%;
    max-width: 820px;   /* maak hem niet te breed */
    margin: 0 auto;     /* centreert op het scherm */
}

/* Voor het contentblok zelf */
#about, #contact {
    margin: 3.5rem auto 0 auto;     /* meer ruimte boven en onder, gecentreerd */
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem 2.5rem 2.4rem 2.5rem;
    box-shadow: 0 2px 16px rgba(179,224,255,0.12);
    width: 100%;
    max-width: 820px;
    display: block;
}

/* Ruimte tussen Over Anis & Contact */
#about {
    margin-bottom: 2.5rem;
}

/* Net wat meer ruimte voor het formulier zelf */
form label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: bold;
}
form input, form textarea {
    padding: 1rem;
    border: 1.5px solid #aeefff;
    border-radius: 8px;
    font-size: 1.05rem;
    background: #f3f9ff;
    margin-bottom: 1.3rem; /* extra ruimte onder ieder veld */
    width: 100%;
    box-sizing: border-box;
}
form textarea {
    min-height: 80px;
    resize: vertical;
}
form button {
    background: linear-gradient(90deg, #40cfff 10%, #0098f6 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.2rem;
    font-size: 1.2rem;
    font-family: 'Bangers', cursive;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.17s;
    margin-top: 0.7rem;
    box-shadow: 0 2px 10px 0 rgba(64,207,255,0.13);
    width: 100%;
}

form button:hover {
    background: linear-gradient(90deg, #0098f6 10%, #40cfff 100%);
    color: #fff;
    transform: scale(1.04) rotate(-1deg);
}



/* Responsive voor mobiel */
@media (max-width: 700px) {
    .hero-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .profile-logo { width: 46px; height: 46px; margin-bottom: 0.4rem;}
    .top-nav { gap: 0.5rem; margin-top: 0.6rem;}
    .top-nav a { font-size: 0.92rem; padding: 0.13em 0.56em; }
    #hero { padding: 1rem 0 1.1rem 0; border-bottom-left-radius: 25px; border-bottom-right-radius: 13px; }
    .hero-text h2 { font-size: 1.1rem;}
}


.social-links .dc { 
    background: linear-gradient(90deg, #5865F2 0%, #5865F2 100%);
    border-color: #aeb8ff;
    color: #fff;
}
.social-links .dc:hover { 
    color: #fff;
}



.social-links a {
    /* ...jouw bestaande regels... */
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.0) 100%);
    opacity: 0;
    transform: skewX(-25deg);
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1;
}
.social-links a:hover::before {
    opacity: 1;
    animation: shine-move 1.1s linear infinite;
}
@keyframes shine-move {
    0% {
        left: -60%;
    }
    100% {
        left: 130%;
    }
}



/* ANIS TRADING SECTIE */
#trading {
    margin: 3.5rem auto 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem 2.5rem 2.4rem 2.5rem;
    box-shadow: 0 2px 16px rgba(179,224,255,0.12);
    width: 100%;
    max-width: 820px;
    display: block;
}

#trading h2 {
    color: #3ec989;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

#trading p {
    font-size: 1.13rem;
    color: #232323;
    line-height: 1.5;
}

.tg {
    display: inline-block;
    margin: 1rem 0 2rem 0;
    background: linear-gradient(90deg, #31e9a9 10%, #12ab6e 90%);
    color: #fff;
    font-family: 'Bangers', cursive;
    font-size: 1.25rem;
    padding: 0.7em 2.1em;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.18s, box-shadow 0.15s;
    box-shadow: 0 2px 10px rgba(49,233,169,0.08);
    border: 2px solid #c2fbe0;
}
.tg:hover {
    background: linear-gradient(90deg, #12ab6e 10%, #31e9a9 90%);
    color: #fff;
}

.trading-media {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 1.3rem;
    justify-content: center;
}
.trading-photo {
    max-width: 340px;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(49,233,169,0.12);
}
.tiktok-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tiktok-videos iframe {
    border-radius: 18px;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Responsive voor mobiel alleen voor trading */
@media (max-width: 700px) {
    .trading-media {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
}
.tiktok-videos-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
}
.tiktok-videos-row iframe {
    width: 325px;
    height: 570px;
}

@media (max-width: 900px) {
    .tiktok-videos-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .tiktok-videos-row iframe {
        width: 100%;
        max-width: 340px;
        height: 520px;
    }
}

.tiktok-bewijs-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}
.tiktok-proof-img {
    max-width: 325px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.18s;
}
.tiktok-proof-img:hover {
    transform: scale(1.03) rotate(-1deg);
}


.tiktok-bewijs-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}
.tiktok-proof-link {
    display: block;
    max-width: 325px;
    width: 100%;
    text-decoration: none;
    position: relative;
}
.fake-video-preview {
    width: 100%;
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    position: relative;
    transition: box-shadow 0.18s, transform 0.18s;
}
.tiktok-proof-link:hover .fake-video-preview {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.03) rotate(-1deg);
}
.play-btn {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0,0,0,0.48);
    border-radius: 50%;
}
.play-btn::after {
    content: '';
    display: block;
    position: absolute;
    left: 21px; top: 14px;
    width: 0; height: 0;
    border-left: 24px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.tiktok-bewijs-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}
.tiktok-proof-link {
    display: block;
    max-width: 325px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: box-shadow 0.18s, transform 0.18s;
}
.tiktok-proof-link:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.03) rotate(-1deg);
}
.tiktok-proof-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    background: #111;
    transition: filter 0.16s;
}
.tiktok-proof-link:hover .tiktok-proof-video {
    filter: brightness(1.07);
}
