/* --- FONT & GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;900&display=swap');

body {
    background-color: #FFFFFF;
    font-family: 'Inter', system-ui, 'Segoe UI', Roboto, sans-serif;
    color: #060507;
}

*:focus-visible {
    outline: 2px solid rgba(6,5,7,0.35);
    outline-offset: 2px;
}

/* --- LAYOUT CONTAINER --- */
.page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px; /* Mobile padding */
}

/* --- PAGE TITLE --- */
h1 {
    text-align: center;
    font-size: 36px; /* Mobile */
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #060507;
    margin-top: 40px;
    margin-bottom: 28px; /* Mobile */
}

/* --- BODY COPY BLOCK --- */
.body-copy-block {
    max-width: 760px;
    margin: 0 auto;
}

.body-copy-block p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(6, 5, 7, 0.95);
    margin-bottom: 12px; /* Mobile */
}

.body-copy-block p:last-child {
    margin-bottom: 0;
}

/* --- SOCIAL BUTTONS --- */
.social-buttons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px; /* Mobile */
}

.social-pill {
    display: inline-flex; /* Use inline-flex for better alignment */
    align-items: center; /* Vertically center icon and text */
    gap: 10px; /* Space between icon and text */
    height: 44px;
    padding: 0 28px;
    border-radius: 9999px;
    background-color: transparent;
    border: 1.5px solid rgba(6,5,7,0.12);
    color: #060507;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-pill i.fab {
    font-family: "Font Awesome 5 Brands"; /* Override the global font-family */
    font-weight: 400; /* Font Awesome 5 Brands uses a regular font-weight */
}


.social-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    color: #ffffff;
}

/* Social Media Brand Colors on Hover */
.social-pill.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.social-pill.instagram:hover {
    background-color: #C13584;
    border-color: #C13584;
}

.social-pill.linkedin:hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
}

/* --- FOOTER --- */
footer {
    text-align: left;
    padding: 24px;
    max-width: 1240px;
    margin: 40px auto 0;
}

footer p {
    font-size: 12px;
    color: #5D5257;
}

/* --- TABLET STYLES --- */
@media (min-width: 768px) {
    .page-container {
        padding: 0 40px;
    }
    h1 {
        font-size: 56px;
        margin-bottom: 40px;
    }
    .social-buttons-row {
        margin-top: 36px;
    }
    footer {
        padding: 24px 40px;
    }
}

/* --- DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .page-container {
        padding: 0 64px;
    }
    h1 {
        font-size: 72px;
        margin-bottom: 56px;
    }
    .body-copy-block p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    footer {
        padding: 24px 64px;
    }
}