/* =========================
   CONTACT HERO – BACKGROUND
========================= */

.contact-hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("SOPANAM-WEDDING-STUDIO/images/contact-hero.jpg") center / cover no-repeat;

    text-align: center;
    padding: 5.5rem 1.5rem;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.85;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

/* FORM CARD */
.contact-form {
    background-color: #f1efef;
    padding: 2.5rem;
    border-radius: 6px;
    color: #ffffff;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: #fdfdfd;
    border: 1px solid #444;
    padding: 12px;
    margin-bottom: 1rem;
    color: #ffffff;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--deep-wine);
    color: #000000;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: black;
    color: #ffffff;
}

/* RIGHT DETAILS */
.contact-details {
    padding-top: 1rem;
}

.contact-desc {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    font-size: 16px;
    margin-right: 12px;
    color: var(--deep-wine);
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    margin-top: 1.5rem;
    border-radius: 6px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}
