/* styles/contact.css - Contact page specific styles */

.contact-content {
    max-width: 100%;
}

.contact-content h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--text-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 8px 16px rgba(var(--primary-color-rgb), 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 6px 8px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(var(--primary-color-rgb), 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

/* Dark mode adjustments */
.dark-mode .contact-card {
    background-color: #2a2a3e;
}

.dark-mode .card-icon svg {
    color: var(--secondary-color);
}
