/* ===============================
   CONTACT PAGE STYLING
================================= */

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 1rem;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ===============================
   CARDS (formulier & contact)
================================= */
.card-form,
.card-contact {
    background: rgba(248, 231, 192, 0.85);
    padding: 2rem;
    border-radius: 12px;
    box-shadow:
        0 10px 20px rgba(0,0,0,0.7),
        0 4px 10px rgba(0,0,0,0.7);
    backdrop-filter: blur(7px);
    font-size: 16pxm;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    margin: 0;
}

.card-form h2,
.card-form h3 {
    margin-bottom: 1rem;
    color:#3A2A1A ;
    text-align: center;
}

.card-contact h2,
.card-contact h3 {
    margin-bottom: 0.75rem;
    color: #3A2A1A;
}

.card-contact p {
    line-height: 1.5;
    color: #3A2A1A ;
}

/* ===============================
   FORMULIERVELDEN
================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
   

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgb(201, 174, 123);
    background: rgba(161, 148, 120, 0.85);
    font-size: 1.3rem;
    color: #3A2A1A;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 300px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 16px;
    color: #3A2A1A;
}

/* ===============================
   DROPDOWN
================================= */
.custom-dropdown {
    position: relative;
    width: 100%;
    border: 1px solid rgb(201, 174, 123);
    border-radius: 12px;
    background: rgba(161, 148, 120, 0.85);
    box-sizing: border-box;
}

.dropdown-toggle {
    width: 100%;
    padding: 0.8rem;
    cursor: pointer;
    text-align: left;
    position: relative;
    color: #3A2A1A ;
    border: none;
    background: transparent;
    font-size: 16px;
}

.dropdown-toggle::after {
    content: "▾";
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30, 27, 18, 0.97);
    list-style: none;
    padding: 0;
    margin-top: 0.3rem;
    border-radius: 12px;
    border: 1px solid rgb(218, 195, 153);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: white;
}

.dropdown-menu li:hover {
    background: rgba(82, 72, 52, 0.88);
    border-radius: 12px;
}

/* ===============================
   MAP
================================= */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    margin-top: 1rem;
}

/* ===============================
   WHATSAPP CARD
================================= */
.whatsapp-card {
    background: rgba(248, 231, 192, 0.85);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
}

.whatsapp-card img {
    width: 60px;
    margin-top: 1rem;
    cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .contact-wrapper {
        gap: 2rem;
        padding: 1rem;
    }

    .card-form,
    .card-contact {
        max-width: 100%;
    }

    .whatsapp-card {
        align-self: center;
        margin-top: 1.5rem;
    }
}