/* Algemene mobiele eerste stijl */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #e0f7e9; 
    text-align: center;
    box-sizing: border-box;
}

/* Logo */
.logo-go img {
    width: 100%; 
    height: auto; 
    max-width: 500px; 
    display: block; 
    margin: 30px auto; 
}

/*welkomscherm*/ 
.welcome-page {
margin: 0 auto;
    width: 90%; /* Breedte op mobiel */
    max-width: 400px; /* Maximale breedte */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Aanmeldpagina */
.aanmeld-pagina {
    background-color: #ffffff; 
    width: 90%;
    max-width: 360px; /* Maximale breedte aangepast voor iPhone 14 */
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center;
    margin: 20px auto; 
}



.aanmeld-pagina h1 {
    color: black; 
    margin-bottom: 10px;
    font-size: 22px; 
}

.aanmeld-pagina p {
    color: #333333;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Media Queries voor iPhone 14 formaat en kleinere schermen */
@media (max-width: 390px) {
    .logo-go img {
        width: 85%; 
    }

    .aanmeld-pagina {
        width: 95%; 
        padding: 15px;
    }

    .aanmeld-pagina h1 {
        font-size: 22px; 
    }

    .aanmeld-pagina p {
        font-size: 14px; 
    }
}

/* Media Queries voor grotere schermen */
@media (min-width: 768px) {
    .logo-go img {
        max-width: 500px; 
        width: 100%; 
    }

    .aanmeld-pagina {
        max-width: 600px; 
        padding: 40px;
    }

    .aanmeld-pagina h1 {
        font-size: 30px; 
    }

    .aanmeld-pagina p {
        font-size: 18px; 
    }
}

/* Formuliervelden */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555555;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input:focus {
    border-color: black; 
    outline: none;
}

/* Foutmeldingen */
.error {
    color: #ff0000; 
    font-size: 12px;
    margin-top: 5px;
}

/* verder knop */
.start-btn {
    background-color:#F9C846; 
    color: black; 
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.start-btn:hover {
    background-color: #F9C846; 
}

/* Algemene mobiele 1e stijl */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #e0f7e9; 
    text-align: center;
    height: 100vh; 
    position: relative; 
}

/* Logo */
.logo-go img {
    width: 150px; 
    margin: 0 auto 20px; 
    display: block;
}

/* Interessepagina */
.interesse-pagina {
    background-color: #ffffff; 
    width: 90%;
    max-width: 400px; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
}

/* Titel en beschrijving */
.interesse-pagina h1 {
    color: black; 
    margin-bottom: 10px;
    font-size: 24px;
}

.interesse-pagina p {
    color: #333333;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Interesse formulier */
.interesse-item {
    display: grid; 
    grid-template-columns: auto 1fr; 
    align-items: center;
    gap: 10px; 
    margin-bottom: 15px;
    font-size: 16px;
    color: #555555;
}

.interesse-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: black; 
}

/* Knop Verzenden */
.start-btn {
    background-color: #F9C846; 
    color: black; 
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.start-btn:hover {
    background-color: #F9C846; 
}


/* Overige bestaande stijlen... (uit CSS hierboven) */

/* Illustratie */
.illustration img {
    width: 80%;
    height: auto;
    max-width: 300px;
    margin: 20px 0 0; 
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive stijlen voor grotere schermen */
@media (min-width: 512px) {
    body {
        background-color: #d6eef9; 
    }

    .welcome-page {
        margin: 150px auto 0; 
        width: 60%; 
        max-width: 600px;
        padding: 30px;
    }

    header h1 {
        font-size: 2.5rem; 
    }

    header p {
        font-size: 1.5rem;
    }

    .start-btn {
        font-size: 1.5rem; 
        padding: 15px 30px;
    }

    .illustration img {
        width: 60%; 
    }
}

/* Responsieve stijlen voor grotere schermen karakter */
@media (min-width: 512px) {
    .character-circle {
        width: 300px; 
        height: 300px;
    }
}


/* Carrousel */
.carrousel {
    position: relative;
    margin: 20px auto;
    padding: 20px;
    width: 90%; 
    max-width: 500px; 
    height: auto; 
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Carrousel items */
.carrousel-item {
    display: none; 
    text-align: center;
    margin: 0 auto;
}

/* Alleen het actieve item tonen */
.carrousel-item.active {
    display: block;
}

/* Afbeeldingen in de carrousel */
.carrousel-item img {
    width: 80%; 
    max-width: 300px; 
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

/* Tekst onder de afbeelding */
.carrousel-item p {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Start-knop onder de afbeelding */
.carrousel-item .start-btn {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    background-color: #f9c846;
    color: black;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.carrousel-item .start-btn:hover {
    background-color:#F9C846;
}

/* Pijltjes stijl */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f9c846;
    color: black;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
}

.arrow:hover {
    background-color: #F9C846;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Nieuwe secties voor homepagina */

/* Punten sectie */
.points-section {
    margin: 20px 0;
}

.points-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stars {
    display: inline-block;
    font-size: 2rem;
    text-align: center;
}

.points {
    font-size: 3rem;
    font-weight: bold;
}

/* Character Section */
.character-section {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
}

/* Character Circle */
.character-circle {
    width: 250px; 
    height: 250px; 
    border-radius: 50%; 
    overflow: hidden; 
    margin: 0 auto; 
    background-color: #f0f0f0; 
}

/* Character Image */
.character-circle img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}


.character-name {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
}

/* Navigatie icons */
.navigation-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center;
}

.nav-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.nav-item p {
    font-size: 0.9rem;
}

/* Streak */
.streak-section {
    margin: 20px auto; 
    background-color:  #f9c846;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    width: 90%; 
    max-width: 400px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navigatie icons */
.navigation-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
    margin: 20px 0;
    justify-items: center; 
}

.nav-item {
    text-align: center;
}


.nav-item img {
    width: 140px; 
    height: 133px;
    padding: 20px; 
    display: block;
    margin: 0 auto; 
}



/* Tekst onder de afbeelding */
.nav-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
}


/* Profiel header */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

.profile-info h1 {
    font-size: 1.5rem;
    text-align: center;
    color:  black; 
    margin: 0;
}

.profile-info p {
    font-size: 1rem;
    margin: 5px 0 0;
    color: #333;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid black;
}

.profile-image p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
}


/* Overzicht blokken */
.overview-section {
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
}

.block {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.block-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.block-item:last-child {
    border-bottom: none; 
}

.block-item .icon {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #333;
}


/* Navigatie sectie */
.navigation-bar {
    background-color: #f0f0f0; 
    padding: 10px;
    border-radius: 10px; 
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center; 
    overflow: hidden; 
}

.nav-item {
    display: inline-block; 
    text-align: center; 
    width: 22%; 
    vertical-align: top; 
}

.nav-item img {
    display: block; 
    width: 50px; 
    height: 50px;
    margin: 0 auto 5px; 
}

.nav-item p {
    font-size: 0.9rem; 
    color: #333; 
    margin: 0; 
}



/* Algemene footerstijl */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; 
    background-color: #e6f7ff; 
    color: #333; 
    text-align: center;
    border-top: 2px solid #50b3a2; 
    padding: 20px; 
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Footer tekst */
.footer p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

/* Footer navigatie */
.footer nav {
    margin-top: 10px;
}

.footer nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black; 
    font-size: 14px;
}

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

/* Footer slogan */
.footer .footer-slogan {
    margin-top: 15px;
    font-size: 12px;
    color: #777; 
}


