/* HERO */
.contact-hero {
    height: 55vh;
    background-image: url('contact-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--wit);
}

.contact-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}


/* CONTACT GRID */
.contact-wrapper {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


/* FORM BLOCK */
.contact-form-block {
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.contact-form-block h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-submit {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--wit);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 22px rgba(255,122,0,0.35);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,122,0,0.45);
}


/* INFO BLOCK */
.contact-info-block {
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.contact-info-block h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.info-row {
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
}

.info-row strong {
    color: var(--accent);
}

.openingstijden {
    margin-top: 25px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 14px;
    border: 1px solid #eee;
}

.openingstijden h3 {
    font-size: 20px;
    margin-bottom: 10px;
}


/* CTA */
.contact-cta {
    padding: 100px 40px;
    background: var(--accent);
    color: var(--wit);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta a {
    padding: 14px 32px;
    background: #fff;
    color: var(--accent);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.contact-cta a:hover {
    background: #ffe2cc;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}


/* RESPONSIVE */
@media (max-width: 1000px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
