html {
    scroll-behavior: smooth;
}

.top {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

.section {
    padding-top: 140px;
    padding-bottom: 140px;
    margin-bottom: 120px;
}

.page {
    display: flex;
    gap: 24px;
}

.content-container {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;

    background: white;
    border-radius: 20px;
    overflow: hidden;

    min-height: 430px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.column:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.column img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.column .text {
    padding: 20px;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.column .text p {
    flex-grow: 1;
}

.reclame {
    flex: 0 0 280px;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 10px;
}

.reclame-afbeelding {
    width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

.advertentie {
    border: 3px solid #ff6600;
    position: relative;
}

.advertentie::before {
    content: "AD";
    position: absolute;
    top: 10px;
    right: 10px;

    background-color: #ff6600;
    color: white;

    padding: 5px 10px;
    border-radius: 8px;

    font-size: 12px;
    font-weight: bold;
}

input:not(.form-control):not(.form-check-input),
textarea:not(.form-control) {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.reclame button,
form button:not(.btn) {
    background: #4f46e5;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.reclame button:hover,
form button:not(.btn):hover {
    background: #4338ca;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.contact-section {
    min-height: auto;
}

.contact-card {
    border-top: 6px solid #4f46e5;
}

.contact-card .form-label,
.contact-card .form-check-label {
    font-weight: 600;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.2);
}

.contact-card .btn-primary {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.contact-card .btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
}

.footer {
    min-height: auto;
}

.footer h2 {
    margin-bottom: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.contact-result-section {
    background: #d1d5db;
    min-height: 100vh;
}

.contact-result-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-result-list dt {
    font-weight: 700;
}

.contact-result-list dd {
    margin: 0;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.uitleg-video {
  max-width: 800px;
  margin-top: 30px;
}

.uitleg-video video {
  display: block;
  border-radius: 12px;
  background: #000;
}

@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .page {
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .reclame {
        width: 100%;
        flex: none;
    }
}

