/* Specifieke styling voor de contactpagina (contact.html) */

.page-header {
    border-bottom: 2px solid #ff8901;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.page-header h2 { font-size: 2.5em; margin-bottom: 5px; color: #333; }

/* Contact Layout (2 kolommen) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Linkerkant: Contactgegevens */
.contact-details h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ff8901;
}

.contact-details p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-details strong {
    display: block;
    color: #333;
    font-weight: 700;
    margin-top: 10px;
}

.contact-details a {
    color: #ff8901;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Rechterkant: Formulier (voor de toekomst) of info */
.contact-form-placeholder {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px dashed #ccc;
    text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #ff8901;
    box-shadow: 0 0 5px rgba(255,137,1,0.3);
}

.btn-submit {
    background-color: #ff8901;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}