/* Contact Section */
.contact {
    background-color: #d7d2ca;
}

.contact__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact__info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact__item {
    flex: 1;
    min-width: 200px;
    background: #f2f0ed;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact__item-icon {
    font-size: 2rem;
    color: #6c63ff;
    margin-bottom: 15px;
}

.contact__item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact__item-text {
    color: #666;
}

.contact__social {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.contact__social-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact__social-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*
Used shorthand transition property
*/
.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f2f0ed;
    border-radius: 50%;
    color: #6c63ff;
    font-size: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact__social-link:hover {
    background: #6c63ff;
    color: #fff;
    transform: translateY(-5px); /* small lift effect */
    box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3); /* shadow effect on hover */
}