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

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(62, 5, 5, 0.459), rgba(135, 65, 65, 0.463)),
    url(../afbeeldingenWebsite2/hollandsepottenNederlandsafbeeldingen.webp) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.btn:hover {
     background-color: #9b3a57;
}


/* 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 SECTION*/

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

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

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

/* Afbeelding container */
.about-image {
    text-align: center;
}

/* Afbeelding */
.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;

    /* voor hover animatie */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

