/**
 * Styles des réseaux sociaux - La Taverne de Pri
 */

/* Container */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

/* Titre */
.social-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #B5A899;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Container icônes */
.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Lien */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(166, 124, 82, 0.1);
    border: 1px solid rgba(166, 124, 82, 0.3);
    border-radius: 50%;
    color: #C4956A;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(166, 124, 82, 0.25);
    border-color: #DAA520;
    color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.social-link:active {
    transform: translateY(-1px);
}

/* Icône SVG */
.social-icon {
    width: 20px;
    height: 20px;
}

/* Couleurs spécifiques au survol */
.social-link[aria-label="Facebook"]:hover {
    color: #1877F2;
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-link[aria-label="Instagram"]:hover {
    color: #E4405F;
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-link[aria-label="TripAdvisor"]:hover {
    color: #00AF87;
    border-color: #00AF87;
    background: rgba(0, 175, 135, 0.1);
}

/* Variante inline (horizontal dans le footer) */
.social-links.inline {
    flex-direction: row;
    gap: 15px;
}

.social-links.inline .social-title {
    margin-right: 5px;
}

/* Variante compacte */
.social-links.compact .social-link {
    width: 36px;
    height: 36px;
}

.social-links.compact .social-icon {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        padding: 15px 0;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

/* Animation d'entrée */
@keyframes socialFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    animation: socialFadeIn 0.5s ease forwards;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }