/* Styling for the contact container within the .contact-page */
.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: var(--bg-color, #fff);
    transition: all 0.3s ease;
}

.contact-page * {
    text-decoration: none !important;
}

/* Contact Section Header */
.contact-page h2 {
    font-size: 1.5rem;
    margin-top: 10px;
    text-align: left;
    width: 100%;
    color: var(--text-color, #000);
}

/* Contact Description Text */
.contact-page p {
    font-size: 1rem;
    color: var(--text-color-secondary, #666);
    text-align: right;
}

/* Styling for each contact item (email, resume, etc.) */
.contact-item {
    margin: 5px 0;
    display: flex;
    gap: 5px;
    transition: all 0.3s ease;
}

/* Email Link Styling */
.contact-page .contact-link {
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    color: var(--text-color, #fff);
}

/* Resume Button Styling */
.contact-page .resume-btn {
    color: var(--text-color, #f0f0f0);
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--bg-card, #333);
    transition: all 0.3s ease;
}

/* Resume Button Hover Styling */
.contact-page .resume-btn:hover {
    background-color: var(--blue-accent, #007bff);
    color: var(--text-color, #fff);
}

/* Social Media Icons (interactive) */
.contact-page .social-links {
    display: inline-flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

.contact-page .social-icon {
    font-size: 30px;
    transition: transform 0.3s, color 0.3s;
    color: var(--text-color-secondary, #333);
}

/* Hover effect for social media icons */
.contact-page .social-icon:hover {
    transform: scale(1.2);
    color: var(--blue-accent, #007bff);
}


/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .contact-page {
        padding: 10px;
    }

    .contact-link, .resume-btn {
        font-size: 16px;
    }

    .social-links {
        flex-direction: row;
    }
}
