/* CSS for the Contact Section */

@import url(style.css);

.contact-column {
    padding: 15px;
}

.contact-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    text-align: center;
    height: 100%;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    font-size: 2rem;
    color: var(--highlight);
    margin-bottom: 15px;
}

.contact-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.contact-box h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--highlight);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--highlight);
}

.contact-link i {
    font-size: 1.1rem;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    padding: 10px 0;
}

.contact-final-line {
    height: 1px;
    width: 100%;
    background-color: var(--highlight);
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-column {
        margin-bottom: 20px;
    }
}