/* ================================
   PAGE-CONTACT.CSS
   Page-specific styles for contact.html
   Loaded AFTER styles.css
   ================================ */

/* Two-Column Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    max-width: 750px;
    margin: 0 auto;
    padding: 10px 0 40px;
}

/* Individual contact blocks */
.contact-block {
    text-align: center;
    margin-bottom: 30px;
}

/* Override the mini-headline bottom margin within contact blocks */
.contact-block .mini-headline {
    margin: 0 auto 12px;
}

/* Contact name (bold line — person's name) */
.content-section .contact-name {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #444;
    margin-bottom: 2px;
    text-align: center;
}

/* Contact detail lines (company, phone, descriptive text) */
.content-section .contact-detail {
    font-family: 'Rosario', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #444;
    margin-bottom: 2px;
    text-align: center;
    line-height: 1.5;
}

/* WEB | EMAIL links row */
.content-section .contact-links {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
    margin-bottom: 0;
    text-align: center;
}

.contact-links a {
    color: rgb(58, 100, 147);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 0.7;
}

.contact-divider {
    color: #999;
    margin: 0 6px;
    display: inline-block;
    transform: scaleY(2);
}

/* Social media links within the contact content area */
.contact-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

/* Thin separator line between social media and email signup */
.contact-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 80%;
    margin: 10px auto 25px;
}

/* ================================
   RESPONSIVE — MOBILE
   ================================ */
@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 0 30px;
    }

    .contact-block {
        margin-bottom: 25px;
    }

    .content-section .contact-name,
    .content-section .contact-detail {
        font-size: 14px;
    }

    .content-section .contact-links {
        font-size: 11px;
    }
}
