/* Social Floating Icons CSS */
.social-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #FF80AB; /* Ροζ χρώμα - αντιστοιχεί στο accent-color του site */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-floating a:hover {
    background-color: #F06292; /* Σκούρο ροζ για hover - αντιστοιχεί στο accent-color-dark του site */
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.social-floating i {
    font-size: 20px;
}

/* Προσαρμογή για κινητές συσκευές */
@media (max-width: 768px) {
    .social-floating {
        top: auto;
        bottom: 20px;
        right: 20px;
        flex-direction: row;
    }
} 