/* Contact Page Styles */

/* Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-out;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Card grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards */
.contact-card {
    text-decoration: none;
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 220, 255, 0.2);
    border-color: var(--primary);
}

.contact-card h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin: 0;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-btn {
    margin-top: auto;
    width: 100%;
}

/* Icon wrappers */
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.icon-wrapper svg {
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper svg {
    transform: scale(1.1);
}

.icon-linkedin { background: rgba(0, 119, 181, 0.1); }
.icon-github   { background: rgba(255, 255, 255, 0.1); }
.icon-email    { background: rgba(245, 158, 11, 0.1); }