/* Reset box sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global font setup */
body {
    font-family: "Ubuntu", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* HEADER */
.header {
    background-image: url(../img/background-big.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 54em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header img {
    width: 40%;
    height: auto;
    border-radius: 1em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    background-color: #edfeff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav-ul {
    display: flex;
    gap: 2em;
    list-style-type: none;
    margin: 1em;
}

.nav-li {
    transition: color 0.3s ease;
}

.nav-li:hover {
    cursor: pointer;
    color: #0096a6;
}

/* SECTIONS */
.about, .pricing, .contact {
    padding-top: 3em;
    padding-bottom: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about {
    background-color: #C7E1E4;
}

.pricing {
    background-color: #B6D4D6;
}

.contact {
    background-color: #C6E8EA;
}

.about h2, .pricing h2, .contact h2 {
    font-size: 5rem;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 1em;
    color: #2c3e50;
}

.about-text{
    background-color: #B6D4D6;
}

.prijzen-text {
    background-color: #C7E1E4;
}
/* TEXT BLOCKS */
.about-text, .prijzen-text {
    
    width: 60%;
    text-align: center;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-text p, .prijzen-text p {
    font-size: 1.5rem;
}

/* PRICING */
.pricing-sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2em;
    margin-top: 3em;
    flex-wrap: wrap;
}

.ironing, .washing {
    flex: 1;
    min-width: 300px;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ironing {
    background-color: #DEF3F5;
}

.washing {
    background-color: #C7E1E4;
    height: max-content;
}

.ironing h3, .washing h3 {
    font-size: 2.5rem;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 1em;
    text-align: center;
}

.ironing h3 img, .washing h3 img {
    width: 10%;
    margin-bottom: 0.5em;
}

.price, .price-washing {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
    font-size: 1.4rem;
}

/* CONTACT */
.contact-div {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

.contact-info-div {
    display: flex;
    justify-content: space-around;
    width: 80%;
    padding: 2em;
    background: #DEF3F5;
    border-radius: 1em;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}

iframe {
    margin-top: 3em;
    width: 90%;
    height: 300px;
    border: none;
    border-radius: 1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
footer {
    margin-top: 3em;
    padding: 2em;
    background-color: #DEF3F5;
    font-size: 1rem;
    text-align: center;
    color: #555;
    border-radius: 1em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .nav-ul {
        flex-wrap: wrap;
        gap: 1em;
    }

    .header img {
        width: 60%;
    }

    .about-text, .prijzen-text {
        width: 90%;
    }

    .contact-div {
        width: 90%;
    }

    .contact-info-div {
        flex-direction: column;
        align-items: center;
    }

    .pricing-sections {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 90%;
    }

    nav {
        flex-direction: column;
        padding: 1em 0.5em;
        width: 100%;
    }


    .header {
        height: 40em;
        padding: 1em;
    }

    .ironing {
        margin-left: 0em;
    }
    
    .washing {
        margin-right: 0em;
    }

    .header img {
        width: 80%;
        border-radius: 0.5em;
    }

    .about h2, .pricing h2, .contact h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text, .prijzen-text {
        width: 95%;
        padding: 1.5em;
        font-size: 1rem;
    }

    .about-text p, .prijzen-text p {
        font-size: 1.2rem;
    }

    .pricing-sections {
        flex-direction: column;
        gap: 2em;
        padding: 0 1em;
    }

    .ironing, .washing {
        padding: 1.5em;
    }

    .ironing h3, .washing h3 {
        font-size: 1.5rem;
    }

    .price, .price-washing {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }

    .contact-div {
        width: 95%;
    }

    .contact-info-div {
        flex-direction: column;
        width: 100%;
        padding: 1em;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    iframe {
        width: 100%;
        height: 200px;
        margin-top: 2em;
    }

    footer {
        font-size: 0.9rem;
        padding: 1.5em;
    }
}

@media (max-width: 400px) {
    nav{
        font-size: 0.9rem;
    }
}
