﻿/* ===== Main rounded panel ===== */
.contact-panel {
    border-top-right-radius: 5.75rem;
    border-bottom-right-radius: 5.75rem;
    overflow: hidden;
    margin-bottom: 5rem;
    background: #e6d9d5;
}

/* ===== Hero ===== */
.contact-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

    .contact-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* Title pill */
.contact-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230,217,213,.95) !important;
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    border-top-right-radius: 5.75rem;
    font-size: 2.5rem;
    font-weight: 700;
    width: min(90%, 30rem);
}

/* ===== Beige body ===== */
.contact-body {
    padding: 2rem 0rem;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Newsletter ===== */
.newsletter-section {
    text-align: center;
    margin-bottom: 6rem;
}

.newsletter-form {
    max-width: 720px;
    margin: 0 auto;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .newsletter-grid input {
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #9ca3af;
    }

.newsletter-sub {
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-options {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 2rem;
}

    .newsletter-options label {
        display: block;
        margin-bottom: .75rem;
        font-size: 14px;
    }

/* ===== Social ===== */
.contact-social {
    text-align: center;
    margin-bottom: 5rem;
}

.canza-social {
    display: flex;
    gap: 30px;
    font-weight: 700;
    font-size: 35px;
    height: fit-content;
    justify-content: center;
}

    .canza-social a {
        color: #fff;
        text-decoration: none;
        padding: 1rem;
        transition: transform .15s ease;
        border-radius: 12px;
        line-height: 0;
        background: #222;
    }

        .canza-social a:hover {
            transform: scale(1.05);
        }

    .canza-social .footer-icon,
    .canza-social .footer-icon-img {
        width: 35px;
        height: 35px;
    }

.social-row {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    font-size: 22px;
}

/* ===== Join band ===== */
.join-band {
    background: #dfeeee;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 6rem;
}

@media (max-width: 768px) {

    .contact-hero {
        height: 60vh;
    }

    .contact-title {
        left: 1rem;
        right: 1rem;
        max-width: 100%;
        font-size: 2.25rem;
        padding: 2.75rem 2rem;
        border-top-right-radius: 5rem;
    }


    .canza-social {
        display: flex;
        gap: 15px;
        font-weight: 700;
        font-size: 25px;
        height: fit-content;
        justify-content: center;
    }

        .canza-social a {
            color: #fff;
            text-decoration: none;
            padding: 1rem;
            transition: transform .15s ease;
            border-radius: 12px;
            line-height: 0;
            background: #222;
        }

            .canza-social a:hover {
                transform: scale(1.05);
            }

        .canza-social .footer-icon,
        .canza-social .footer-icon-img {
            width: 25px;
            height: 25px;
        }

    .social-row {
        display: flex;
        justify-content: center;
        gap: 1.75rem;
        font-size: 22px;
    }
}