﻿/* ======================================================
   Contact Page Styles (contact.css)
   ====================================================== */

/* --- Hero — same height as food/music pages --- */
.contact-hero {
    min-height: 460px;
    display: flex;
    align-items: end;
    background: linear-gradient(90deg, rgba(8,21,27,.88), rgba(8,21,27,.55)),
                url('assets/ots-hero.webp') center / cover no-repeat;
    color: #fff;
    padding-bottom: 60px;
}

.contact-hero .wrap {
    padding-top: 70px;
}

.contact-hero .kicker {
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin: 0 0 16px;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #fff;
}

.contact-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: #bcd0cc;
    font-size: 16px;
    line-height: 1.8;
}

/* --- Updates Section --- */
.updates-section {
    padding: 62px 0 50px;
    background: #f2efe7;
}

.updates-section .wrap {
    max-width: 1160px;
    margin: auto;
    padding: 0 22px;
}

.updates-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.updates-heading h2 {
    margin: 5px 0 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -.05em;
}

.updates-heading p {
    max-width: 380px;
    margin: 0;
    color: #63716e;
    font-size: 14px;
    line-height: 1.7;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.update-poster {
    display: block;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 8px 28px rgba(20,42,54,.15);
}

.update-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
}

.update-poster:hover img {
    transform: scale(1.025);
}

.member-group {
    margin-top: 28px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: var(--navy);
    color: #fff;
}

.member-group .kicker {
    color: var(--gold);
}

.member-group h3 {
    margin: 5px 0 0;
    font-size: 25px;
    letter-spacing: -.03em;
}

.member-group p {
    margin: 7px 0 0;
    color: #bfd0ca;
    font-size: 14px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    padding: 13px 18px;
    background: #25d366;
    color: #102a21;
    font-size: 14px;
    font-weight: 900;
}

.whatsapp-btn:hover {
    background: #72e69c;
}

/* --- Contact Body --- */
.contact-body {
    padding: 60px 0;
}

.contact-body .wrap {
    max-width: 1160px;
    margin: auto;
    padding: 0 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
}

.info-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
}

.info-card p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.75;
    color: #53615f;
}

.info-card .phone-big {
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    margin-top: 10px;
}

.info-card .phone-big a {
    color: var(--navy);
    text-decoration: none;
}

.info-card .phone-big a:hover {
    color: var(--wine);
}

.recruit-card {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 32px;
}

.recruit-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: var(--gold);
}

.recruit-card p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #bcd0cc;
}

.recruit-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.recruit-card li {
    padding: 5px 0;
    font-size: 14px;
    color: #dbe4df;
}

.recruit-card li::before {
    content: "\2713 ";
    color: var(--gold);
    font-weight: 900;
}

/* --- Poster Section --- */
.poster-section {
    padding: 20px 0 60px;
}

.poster-section .wrap {
    max-width: 1160px;
    margin: auto;
    padding: 0 22px;
}

.poster-section h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 28px;
    color: var(--navy);
    font-weight: 900;
}

.poster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.poster-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.back-link {
    display: inline-block;
    margin: 30px 0 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--wine);
}

.back-link:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 720px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .poster-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding-bottom: 40px;
    }

    .updates-heading,
    .member-group {
        display: block;
    }

    .updates-heading p {
        margin-top: 14px;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .update-poster img {
        height: auto;
    }

    .member-group h3 {
        font-size: 22px;
    }

    .whatsapp-btn {
        margin-top: 20px;
    }
}