

/* FONTS */
.silkscreen-regular {
    font-family: "Arial Rounded MT Bold", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 0px 0px 20px #000000;
}
  
.silkscreen-bold {
    font-family: "Arial Rounded MT Bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 0px 0px 20px #000000;
}


.centerButton {
    display: grid;
    grid-template-columns: auto auto; /* Twee kolommen voor de buttons */
    justify-content: center; /* Zorgt ervoor dat de buttons horizontaal gecentreerd worden */
    gap: 20px; /* Ruimte tussen de buttons */
    margin-top: 50px; /* Eventueel wat marge bovenaan */
}

.centerButton2 {
    display: grid;
    grid-template-columns: auto auto; /* Twee kolommen voor de buttons */
    justify-content: center; /* Zorgt ervoor dat de buttons horizontaal gecentreerd worden */
    gap: 20px; /* Ruimte tussen de buttons */
    margin-top: 50px; /* Eventueel wat marge bovenaan */
    text-align: left;
}

body {
    background-color: #131316;
    color: #ffffff;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 73px;
    text-align: center;
}

h2 {
    font-size: 60px;
    text-align: center;
}

h3 {
    font-size: 50px;
    color: black;
    text-align: center;
}

h4 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
}

h5 {
    font-size: 30px;
    color: rgb(38, 255, 0);
    text-align: center;
}

h6 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    text-align: left;
}

.pricing {
    font-family: monospace;
    font-weight: 1000;
    font-size: 27px;
    text-align: center;
}


/* Background Video */
.backgroundVideo {
    position: absolute;
    margin-left: auto;
    margin-right: auto;

    z-index: -1;
    filter: opacity(80%) blur(10px);
}





section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
}


/* Subscription Grid */

.subscription-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr)); /* Minimaal 250px per kolom */
    gap: 20px; /* Ruimte tussen de kolommen */
}

.subscription {
    background-color: rgb(113, 146, 255);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column; /* Zorgt ervoor dat de inhoud in een kolom wordt weergegeven */
    align-items: center; /* Centreert de inhoud horizontaal */
    min-width: 330px;
    max-width: 70%; /* Zorgt ervoor dat de blokken niet groter worden dan de container */
    width: 100%; /* Zorgt dat alle subscriptions even breed zijn */
    box-sizing: border-box; /* Inclusief padding en borders in de breedte */
}

.subscription img {
    max-width: 200px; /* Beperkt de afbeelding tot een vaste breedte */
    height: auto;
    border-radius: 5px; /* Maakt de afbeelding iets ronder, optioneel */
    margin-bottom: -35px;
}

.subscription h3 {
    margin-bottom: -10px;
    color: black;
    text-align: center;
}

.subscription p {
    margin-bottom: 0px;
    color: rgb(0, 0, 0);
    text-align: left; /* Centreert de tekst in de subscription */
}



button {
    width: 260px;
    height: 80px;
    background-color: #ff9042;
    color: black;
    border: none;
    padding: 10px 20px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 5px;
    align-self: center;
    justify-content: center;
    font-size: 22px;       /* Grotere tekst */
    font-weight: bold;     /* Vetgedrukt */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

button:hover {
    background-color: #13de00;
}


@media (max-width: 1024px) {
    .subscription-options {
        grid-template-columns: repeat(2, 1fr); /* 2 kolommen op tablets */
    }
}

@media (max-width: 768px) {
    .subscription-options {
        grid-template-columns: 1fr; /* Maakt de layout responsief op kleinere schermen */
    }
}





/* Animatie classes */

/* Animation Directions */
.hiddenLeft {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-100%);
    transition: all 750ms;
}

.hiddenLeft2 {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-100%);
    transition: all 1000ms;
}

.hiddenLeft3 {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-100%);
    transition: all 1250ms;
}  
  
.showLeft {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.showLeft2 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.showLeft3 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
  
.hiddenRight {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(100%);
    transition: all 800ms;
}
  
.showRight {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
  
.hiddenTop {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 800ms;
}
  
.showTop {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
  
.hiddenBottom {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(100%);
    transition: all 3s;
}
  
.showBottom {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

  /* delays for multiple items in a row */
.logos {
    display: flex;
  }
  
  .logo:nth-child(1) {
    transition-delay: 0ms;
  }
  
  .logo:nth-child(2) {
    transition-delay: 200ms;
  }
  
  .logo:nth-child(3) {
    transition-delay: 400ms;
  }
  
  .logo:nth-child(4) {
    transition-delay: 600ms;
  }
  
  .logo:nth-child(5) {
    transition-delay: 800ms;
  }
  
  .logo:nth-child(6) {
    transition-delay: 1000ms;
  }




  /* successtory's */

  .customer-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    gap: 20px; /* Ruimte tussen de blokken */
    padding: 20px;
    max-width: 1200px; /* Houdt het grid binnen een maximaal breedte, zodat het niet het hele scherm vult */
    margin: 0 auto; /* Centrer de grid op het scherm */
}

.story {
    background-color: #212121;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-shadow: 0px 0px 30px black;
}

.story img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    object-fit: cover; /* Zorgt ervoor dat de afbeelding netjes binnen de cirkel past */
    border-radius: 50%; /* Maakt de afbeelding rond */
    margin-bottom: 15px;
}

.story p {
    font-family: Arial Rounded MT Bold;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

/* Zorg ervoor dat het grid goed schaalt op kleinere apparaten */
@media (max-width: 1024px) {
    .customer-stories {
        grid-template-columns: repeat(2, 1fr); /* 2 kolommen op tablets */
    }
}

@media (max-width: 768px) {
    .customer-stories {
        grid-template-columns: 1fr; /* 1 kolom op mobiele apparaten */
    }

    .story img {
        width: 80px;
        height: 80px; /* Maak de afbeelding iets kleiner op mobiele apparaten */
    }
}

.logo {
    float: left;
    display: block;
    width: 430px;
    
    margin-top: 40px;
    margin-left: auto;
    margin-right: 50px;
}


/* Copyright */
  
  .copyright {
    background-color: #000000;
    height: 65px;
    text-align: center;
    padding-top: 35px;
  }



html, body {
    overflow-x: hidden;
}

section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.logo {
    max-width: 90%;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 100%;
        margin: 20px auto;
        display: block;
        float: none;
    }
}

.backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: opacity(80%) blur(10px);
    pointer-events: none;
}

h6 {
    font-size: 5vw;
    max-width: 90%;
    margin: 0 auto;
    color: rgb(255, 255, 255);
    text-align: center;
}


@media (min-width: 1025px) {
    h6 {
        font-size: 30px; /* vaste grootte voor desktop */
    }
}


.embed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; /* extra verticale ruimte */
    width: 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.embed-wrapper iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
}

.embed-wrapper2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; /* extra verticale ruimte */
    width: 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.embed-wrapper2 iframe {
    width: 100%;
    max-width: 560px;
    height: 500px;
    border: none;
}
