/* Base social media button styling */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 8px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.email-btn {
    background-color: #dd4b39;
}
.email-btn:hover {
    background-color: #c23321;
}

.linkedin-btn {
    background-color: #0077b5;
}
.linkedin-btn:hover {
    background-color: #005885;
}

.github-btn {
    background-color: #333;
}
.github-btn:hover {
    background-color: #24292e;
}


/* Contact section styles */
.contact-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.contact-link:hover i {
    transform: scale(1.1);
}