/* General Styles */
@import url(https://db.onlinewebfonts.com/c/dd4320757ff990fa3d23662f08aa6f3a?family=Central+W01+Bold);
@import url(https://db.onlinewebfonts.com/c/21659c4a79ddbfcd2d1535b80afca57a?family=Central+W01+Light);
@import url("https://use.typekit.net/rmq8ceh.css");

body {
    font-family: "muli", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14pt;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navbar Styles */
.navbar {
    background-color: #417B5A;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0;
}

.navbar ul li a {
    font-family: "Central W01 Light";
    display: block;
    padding: 1rem 1.5rem;
    color: #f4f4f6;
    text-decoration: none;
    font-size: 1rem;
}

.navbar ul li a:hover {
    background-color: #A1CDA8;
    color: #f4f4f6;
}

/* Header Styles */
.header {
    background-color: #417B5A;
    color: #f4f4f6;
    text-align: center;
    padding: 2rem 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.header-logo {
    max-width: 350px;
}

.header-text {
    max-width: 500px;
}

.header h1 {
    font-family: "Central W01 Bold";
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #A1CDA8;
    color: #365843;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #365843;
    color: #f4f4f6;
}

/* Section Styles */
.section {
    padding: 2rem 0;
    width: 100%;
}

.section-light {
    background-color: #f4f3ee;
}

.section-beige {
    background-color: #e5dfd1;
}

.section-green {
    background-color: #d8e4d0;
}

.visual {
    display: block;
    max-width: 600px;
    margin: 0 auto 1rem;
}

h2, h3 {
    color: #417B5A;
}

h2 {
    font-family: "Central W01 Bold";
}

h3{
    font-family: "Central W01 Light";
}

/* Approach Steps */
.approach {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    font-family: Arial, sans-serif;
}

.approach h3 {
    text-align: center;
    margin-bottom: 16px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step {
    flex: 1 1 calc(50% - 16px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-symbol {
    width: 160px;
    height: auto;
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .approach-steps {
        flex-direction: column;
    }
    
    .step {
        flex: 1 1 100%;
    }
    
    .step-symbol {
        width: 60px;
    }
}

/* Form Styles */
form {
    text-align: center;
    margin-top: 1rem;
}

input[type="email"] {
    padding: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #417B5A;
    color: #f4f4f6;
    border-radius: 5px;
}

button:hover {
    background-color: #A1CDA8;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #417B5A;
    border-radius: 5px;
    flex: 1;
    min-width: 250px;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    background-color: #A1CDA8;
    color: #355e47;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #355e47;
    color: #f4f4f6;
}

.feedback-message {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    color: #417B5A;
}

/* Section: About the Creator */
/* Over de Creator */
.creator-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.creator-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}


.creator-name {
    font-size: 1.8rem;
    color: #417B5A;
    margin-bottom: 0.5rem;
}

.creator-contact {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.creator-message {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.creator-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.creator-social-link img {
    width: 60px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.creator-social-link img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Section: Sponsors */
.sponsors-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.logo-item img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}


