/* ALGEMEEN */
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: lightblue;
    color: #2c3e50;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: #1c2f4a;
}

a {
    text-decoration: none;
    color: inherit;
}

/*NAVIGATIEBALK*/
nav {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 25px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: #6c8cd5;
    color: white;
}

/*HEADER*/
header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #dceefc);
}

header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    color: #1c2f4a;
}


/*SKIGEBIEDEN / PAKLIJST*/
.skilijst {
    list-style: decimal;
    padding-left: 20px;
	margin-top: 60px;
}

.skilijst li {
    background-color: #79a6ad;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.skilijst li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/*FORM*/
form select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Playfair Display', serif;
}

/*FOOTER*/
footer {
    text-align: center;
    padding: 12px;
    background-color: white;
    margin-top: 60px;
    color: #7f8c8d;
    font-size: 14px;
}

/*LOGO*/
.content-logo {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    background-color: transparent;
}
/* Algemeen voor content */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo + Video container */
.logo-video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    padding:20px0;
}

/* Desktop: vaste afmetingen */
.content-logo {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
}

.content-video {
    width: 480px;
    height: 270px;
    border: none;
}

/* RESPONSIVE: stapelen op mobiel */
@media (max-width: 768px) {
    .logo-video-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .content-logo,
    .content-video {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 10px 0;
    }
}
/*COLLAGE OVER MIJ*/
.over-mij-collage {
    display: flex;
    gap: 10px;
    max-width: 1000px;
    margin: 30px auto;
}

.over-mij-collage img {
    border-radius: 10px;
    object-fit: cover;
    height: 600px;
}
/* uitzicht links */
.over-mij-collage .left {
    width: 60%;
}

/* jij rechts */
.over-mij-collage .right {
    width: 40%;
}

/*RESPONSIVE*/
@media (max-width: 768px) {
    .over-mij-collage {
        flex-direction: column;
    }

    .over-mij-collage .left,
    .over-mij-collage .right {
        width: 100%;
    }
}