/* Social Links Styles */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    position: relative;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    color: var(--color-white);
}

.social-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.social-link-tooltip {
    display: none;
}

/* Email dropdown styles */
.email-dropdown {
    position: relative;
}

.email-options {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    overflow: hidden;
}

.email-dropdown.active .email-options {
    opacity: 1;
    visibility: visible;
}

.email-option {
    display: block;
    padding: 12px 16px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.email-option:hover,
.email-option:active,
.email-option:focus {
    background: rgba(107, 33, 168, 0.2);
    color: #ffffff;
    outline: none;
}

.email-option-label {
    font-weight: 500;
    margin-bottom: 2px;
}

.email-option-address {
    font-size: 12px;
    opacity: 0.8;
}