﻿

/* --- Contact Section --- */
.contact-section {
    position: relative;
    background: url('/images/contact bg.jpg') center/cover no-repeat;
    color: white;
    padding: 116px 20px;
}

    .contact-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* --- Left Column --- */
.contact-info {
    flex: 1;
    min-width: 300px;
    margin-top: 55px;
}

    .contact-info h1 {
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

.attribution {
    font-size: 14px;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

    .info-block .icon {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .info-block h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .info-block p {
        font-size: 16px;
        line-height: 1.5;
    }

/* --- Right Column --- */
.contact-form {
    flex: 1;
    min-width: 300px;
}

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form label {
        color: white;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .contact-form input,
    .contact-form textarea {
        background: transparent;
        border: none;
        border-bottom: 1px solid white;
        color: white;
        padding: 8px 4px;
        font-size: 16px;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #ccc;
        }

    .contact-form button {
        align-self: flex-end;
        margin-top: 30px;
        background-color: #FFA500; /* amber/golden-orange */
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        border-radius: 6px;
        cursor: pointer;
    }

/* --- Map Section --- */
.map-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

    .map-section h2 {
        font-size: 28px;
        color: #222;
        margin-bottom: 30px;
    }

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-form button {
        align-self: stretch;
    }
}
