/* ==========================================================================
   CONTACTPAGINA SPECIFIEKE STYLING
   ========================================================================== */

/* 1. Algemene Layout & Wrapper (Zorgt dat de pagina onder de fixed header start) */
.contact-main {
    width: 100%;
    padding-top: 290px; /* Ruimte om onder de fixed main-header te vallen */
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* 2. Grote Pagina Kop (Zelfde stijl als 'My Story:') */
.contact-page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0 0 60px 0;
    letter-spacing: 1px;
    color: #000000;
}

/* 3. Twee Kolommen Grid (Verdeling info en formulier) */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px; /* Ruime ademruimte tussen de twee blokken */
    align-items: flex-start;
}

/* 4. Koppen binnen de boxen (Oswald) */
.contact-info-box h2, 
.contact-form-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-subtext {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

/* 5. Contact Details (Inspringing net als de Story-paragrafen) */
.contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-details li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px; /* Subtiele inspringing */
    border-left: 2px solid #111111; /* Strak zwart verticaal lijntje in plaats van icoon */
}

.contact-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
    letter-spacing: 1px;
}

.contact-details p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555555;
    margin: 0;
}

/* 6. Formulier Elementen (Minimalistisch zwart/wit, kaarsrecht) */
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea {
    font-family: 'Raleway', sans-serif;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 0; /* VOLLEDIG RECHTE HOEKEN */
    font-size: 14px;
    color: #111111;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

/* Focus effect: strakke zwarte rand, geen blauwe gloed */
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #111111;
    background-color: #ffffff;
}

/* 7. De Verzendknop (Zelfde stijl als de 'Know More' link) */
.contact-submit-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: #111111; /* Volledig zwart blok */
    border: none;
    border-radius: 0; /* Rechte hoeken */
    padding: 15px 30px;
    cursor: pointer;
    align-self: flex-start; /* Knop wordt zo breed als de tekst, niet de hele pagina */
    transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #333333; /* Subtiele verandering bij hover */
}

/* ==========================================================================
   RESPONSIVE LAYOUT (Mobiel & Tablet)
   ========================================================================== */
@media (max-width: 768px) {
    .contact-main {
        padding-top: 110px; /* Iets compacter op mobiel */
    }
    
    .contact-page-header h1 {
        font-size: 48px; /* Iets kleiner op mobiel */
        margin-bottom: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr; /* Kolommen onder elkaar op mobiel */
        gap: 50px;
    }
}
