/*.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    top: 30px;
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #007BFF;
}

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

.dropdown {
    position: relative;
    display: inline-block;
}

/* BELANGRIJK: grotere hover-zone */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* buffer zone */
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    top: 45px;
    
    /* Smooth animatie */
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* BETERE hover detectie */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #007BFF;
}

.gallery {
    padding: 80px 10%;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}

}



.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.slider {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.slide {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: none; /* THIS hides all images */
    border-radius: 15px;
}

.slide.active {
    display: block; /* ONLY 1 visible */
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}
.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* KEY FIX: consistent spacing */
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.2s;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact button {
    background: #007BFF;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.contact button:hover {
    background: #0056b3;
}