/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px 120px 24px;
    font-family: var(--font-base, 'Inter', sans-serif);
    text-align: center;
}

/* Hero Section */
.contact-hero {
    margin-bottom: 64px;
}

.contact-hero__title {
    font-family: var(--font-display, 'Borel', sans-serif);
    font-size: 48px;
    color: var(--purple-600);
    margin: 0 0 16px 0;
}

.contact-hero__subtitle {
    font-size: 20px;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual Cards */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--purple-600);
}

/* Icon Styling */
.contact-card__icon-wrapper {
    background-color: var(--purple-150, #F4EBFA);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--purple-600); /* For the inline SVG email icon */
}

.contact-card__icon {
    width: 32px;
    height: 32px;
}

/* Text Inside Cards */
.contact-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin: 0 0 8px 0;
}

.contact-card__detail {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 24px 0;
}

.contact-card__action {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-600);
    margin-top: auto; /* Pushes the action text to the bottom if cards vary in height */
}

/* This controls the mail, bluesky, and instagram icons evenly */
.contact-card__icon {
    width: 30px;
    height: 30px;
}

/* Desktop Responsiveness */
@media (min-width: 750px) {
    .contact-grid {
        flex-direction: row;
        justify-content: center;
    }

    .contact-card {
        flex: 1; /* Makes all cards the exact same width */
        max-width: 330px; /* Prevents them from getting too wide on huge screens */
    }
}