/* Algemene styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/icons-bg-white.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #333;
}

/* Header met logo en titel */
header {
    text-align: center;
    margin-top: 0px;
}

#mkg-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0px;
}

h1 {
    font-size: 2.5em;
    color: #2d2e83;
    margin: 0px 0;
    font-weight: bold;
}

/* Introductietekst */
#intro-text {
    text-align: center;
    margin: 20px auto;
    font-size: 1.0em;
    color: #2d2e83;
    line-height: 1.6;
    max-width: 1000px;
    padding: 0 15px;
}

/* Hoofdcontent met drie kolommen */
.columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px auto;
    width: 60%;
    gap: 20px;
}

.column {
    width: 30%;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.column p {
    color: #2d2e83;
    font-size: 0.8em;
}

/* Specifieke kleuren voor elke h2 */
.h2-templates {
    color: #afca0b;
}

.h2-design {
    color: #ffcc00; 
}

.h2-open {
    color: #ef7d00; 
}


/* Buttons en invoer */
.template-button {
    width: 80%;
    padding: 15px;
    margin: 5px auto;
    background-color: #2d2e83;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
.design-button {
    width: 80%;
    padding: 15px;
    margin: 10px auto;
    background-color: #ef7d00;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
.input-button {
    width: 80%;
    padding: 15px;
    margin: 10px auto;
    background-color: #2d2e83;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.template-button:hover {
    background-color: #2d2f83e5;
}
.design-button:hover {
    background-color: #ff8400f5;
}
.input-button:hover {
    background-color: #2d2f83e5;
}

.input-field {
    width: 75%;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1.2em;
    text-align: center;
}

/* Kleine schermen */
#small-screen-message {
    display: none;
    text-align: center;
    font-size: 1.2em;
    color: red;
    margin-top: 20px;
}

/* Responsiviteit voor kleinere schermen */
@media (max-width: 1024px) {
    .columns {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        width: 90%;
    }

    #small-screen-message {
        display: block;
    }

    #main-content {
        display: none;
    }
}
