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;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;

    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}




/* HERO */
.hero {
    height: 100vh;
    background-color: #400404;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    gap: 60px;

}

/* Algemene stijl blokken */
.hero-box {
    background-color: #a6d4f2;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Linker blok (staand) */
.left-box {
    width: 700px;
    height: 90vh;
}


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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

/* Grote kaart */
.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;
}

/* Linkerkant: tekst */
.contact-info {
    flex: 1;
    padding: 50px;
    color: #400404;
}

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

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

/* Info blokken */
.info-block {
    margin-bottom: 18px;
    font-size: 17px;
}

.info-block span {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #7a2a2a;
}

.availability {
    margin-top: 25px;
    font-size: 14px;
    color: #7a2a2a;
}

/* Rechterkant: afbeelding */
.contact-image {
    flex: 1;
    min-height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================
   CONTACT FORMULIER
========================= */
.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #7a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    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;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ad1457;
    box-shadow: 0 0 0 2px rgba(173, 20, 87, 0.15);
}

/* Verzendknop */
.submit-btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
}
/* =========================
   OVER MIJ PAGINA
========================= */

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

.aboutme-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;
}

.aboutme-info {
    flex: 1;
    padding: 50px;
    color: #400404;
}

.aboutme-info h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.aboutme-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #5a1a1a;
}

.aboutme-image {
    flex: 1;
}

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

/* STORY */
.story {
    text-align: center;
    padding: 40px 50px;
}

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

.story p {
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* WHY */
.why {
    background-color: #610722;
    padding: 10px 50px;
    text-align: center;
}

.why h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-card {
    background-color: #f4f7fb;
    color: #400404;
    padding: 10px;
    border-radius: 14px;
    width: 250px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* MISSIE */
.mission {
    padding: 80px 40px;
    text-align: center;
    font-size: 22px;
    font-style: italic;
}