/* ✅ Algemene styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ✅ Gouden Hero Titel */
.contact-header {
    text-align: center;
    padding: 50px 20px;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ✅ Contactpagina-container */
.contact-content-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

/* ✅ Contact Informatie */
.contact-info {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #c79c60;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Contact Gegevens als lijst */
.contact-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.contact-details li {
    font-size: 1rem;
    color: #444;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ✅ Contact Iconen */
.contact-details i {
    font-size: 1.3rem;
    color: #d4af37;
}

/* ✅ CTA Knop */
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
    text-align: center;
}

.cta-button:hover {
    background: #b88a2e;
    transform: translateY(-2px);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}

/* ✅ Responsiveness */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-content-container {
        padding: 25px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-details li {
        font-size: 0.95rem;
    }

    .contact-header p {
        font-size: 1rem;
        max-width: 90%;
    }
}
