/* Contact */

h1 {
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    padding: 5rem 0;
    font-size: 3.5rem;
    background-image: url('../img/contact_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
    text-align: center;
    color: var(--text-color);
}

main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3vw 10vh 3vw;
    color: var(--text-color);
}

h2 {
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #003366;
    text-align: center;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-details p{
    line-height: 1.5;
}

.contact-details {
    flex: none;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
}


.contact-map {
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
}

.contact-map img {
    flex-shrink: 0;
    width: 60%;
    max-width: 800px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map p {
    flex: 1;
    color: #444;
}

@media (max-width: 768px) {
    .contact-map {
        flex-direction: column;
        text-align: center;
    }
    .contact-map img {
        width: 100%;
        max-width: none;
    }
    .contact-map p {
        margin-top: 1rem;
    }

    h1{
        padding: 3rem 0;
    }
}