/* --- BASIS & LAYOUT --- */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: antiquewhite;
}

section {
    padding: 60px 10%;
}

/* --- HEADER & NAV --- */
header {
    background-color: #fce4ec;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    padding: 10px 0;
    z-index: 1000;

    /* Flexbox zorgt voor perfecte centrering */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Zorgt dat links op mobiel naar de volgende regel gaan indien nodig */
}

nav a {
    margin: 5px 10px;
    /* Iets minder marge aan de zijkanten voor betere fit op mobiel */
    text-decoration: none;
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 12px;
    font-size: 0.9rem;
    /* Iets kleiner font is vaak eleganter voor nav */
    transition: all 0.3s ease;
    /* Iets snellere transitie voelt vlotter aan */
}

nav a:hover {
    background: #fce4ec;
    color: #d81b60;
    /* Een subtiele accentkleur bij hover */
    border-radius: 5px;
}

/* Specifieke aanpassing voor kleine telefoons */
@media (max-width: 480px) {
    nav {
        padding: 5px 0;
    }

    nav a {
        margin: 2px 5px;
        padding: 5px 8px;
        font-size: 0.8rem;
        /* Iets kleiner op heel kleine schermen */
    }
}

/* --- FLEX CONTAINERS (AboutMe & Tips) --- */
.aboutMe-container,
.tips-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.aboutMe-text,
.tips-text {
    flex: 3;
}

.aboutMe-text p,
.tips-text p {
    padding: 20px;
    font-size: 1.2rem;
    background-color: bisque;
    border-radius: 15px;
}

.aboutMe-photo,
.tips-img {
    flex: 2;
    display: flex;
    justify-content: center;
}

.aboutMe-photo img,
.tips-img img,
.gallery-grid img {
    border-radius: 15px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.aboutMe-photo img,
.tips-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* --- GALERIJ --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.gallery-grid img:hover{
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.8);
}

/* --- PRIJZEN & CONTACT --- */
.price-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Zorgt dat tekst en prijs bovenaan uitlijnen */
    gap: 15px;
    /* Creëert een veilige afstand tussen tekst en prijs */
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

.price-value {
    font-weight: bold;
    color: #d81b60;
    white-space: nowrap;
    /* DIT IS DE BELANGRIJKSTE REGEL: voorkomt afbreken van de prijs */
    flex-shrink: 0;
    /* Zorgt dat de prijs niet in elkaar gedrukt wordt */
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info a {
    text-decoration: none;
    color: inherit;
}

/* --- FOOTER --- */
footer {
    background-color: bisque;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
}

footer a {
    text-decoration: none;
    color: initial;
    font-style: italic;
}

/* --- MOBIEL (RESPONSIVE) --- */
@media (max-width: 768px) {

    .aboutMe-container,
    .tips-container {
        flex-direction: column;
        text-align: center;
    }

    /* Foto's altijd onder de tekst op mobiel */
    .aboutMe-text,
    .tips-text {
        order: 2;
    }

    .aboutMe-photo,
    .tips-img {
        order: 1;
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}