body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #610722;
    color: #ffffff;
    padding-top: 100px;
}
*{box-sizing: border-box;}

/* NAVIGATIE */
header {
    position: fixed;          
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;            

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(90deg, #400404,#400404 );
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.logo {
    font-size: 26px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Elegant lijntje onder menu bij hover */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: white;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: white;
}


.btn {
    background-color: #400404;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ad1457;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #400404;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
    padding-bottom: 10px;
}


/* Verberg het menu standaard */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #610722;
    min-width: 160px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1000;
}
/* Links in dropdown */
.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-weight: 400;
}

/* Hover-effect op dropdown items */
.dropdown-content a:hover {
    background-color: #9b3a57;

}

/* Toon dropdown bij hover */
.dropdown:hover .dropdown-content {
    display: block;
}





.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 80px 60px;
    flex-wrap: wrap;
}


.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


.about-image {
    text-align: center;
}


.about-image img {
    width: 400px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    
    display: block;
    margin: 0 auto;
   
}



.contact-section {
    min-height: 100vh;
    background-color: #400404;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 60px;
}


.contact-card {
    background-color: #f4f7fb;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    display: flex;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
}


.contact-info {
    flex: 1;
    padding: 5px;
    color: #400404;
}

.contact-info h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info .intro {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a1a1a;
}


.info-block {
    margin-bottom: 18px;
    font-size: 17px;
}


.contact-image {
    flex: 1;
    min-height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.contact-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}


.form-group input,
.form-group textarea {
    padding: 6px 5px;
    font-family: inherit;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}




