/* Socials Section */
#social-networks {
    background-color: #fef9f1;
    padding: 70px 0;
    position: relative;
    border-top: 1px solid #e6a902;
    border-bottom: 1px solid #e6a902;
    overflow: hidden;
}

#social-networks::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #e6a902;
    pointer-events: none;
}

#social-networks::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid #e6a902;
    pointer-events: none;
}

/* Background Decorations */
.social-networks__bg-left,
.social-networks__bg-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8; 
    pointer-events: none;
    z-index: 0;
}

.social-networks__bg-left {
    left: -50px;
    width: 300px;
}

.social-networks__bg-right {
    right: 20px;
    width: 350px;
}

.social-networks__title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.social-networks__title h2 {
    font-family: 'Playfair Display', serif; /* Or similar serif font */
    font-size: 36px;
    color: #333;
    font-weight: 500;
}

.social-networks__title h2 span {
    color: #e6a902;
}

.social-networks__divider {
    width: 150px;
    height: 20px;
    margin: 10px auto 30px;
    display: block;
}

.social-networks__container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-network-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-network-item:hover {
    transform: translateY(-5px);
}

.social-network-item__icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 1px solid #e6a902;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(230, 169, 2, 0.1);
    transition: all 0.3s ease;
}

.social-network-item:hover .social-network-item__icon {
    box-shadow: 0 8px 25px rgba(230, 169, 2, 0.2);
    border-color: #333;
}

.social-network-item__icon i {
    font-size: 45px;
    color: #333;
}

.social-network-item__name {
    font-size: 20px;
    color: #555;
    font-weight: 500;
}

@media (max-width: 768px) {
    .social-networks__container {
        gap: 20px;
    }
    .social-network-item__icon {
        width: 85px;
        height: 85px;
    }
    .social-network-item__icon i {
        font-size: 38px;
    }
    .social-networks__title h2 {
        font-size: 28px;
    }
    
    .social-networks__bg-left {
        width: 150px;
        left: -30px;
        opacity: 0.4;
    }
    
    .social-networks__bg-right {
        width: 180px;
        right: -20px;
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .social-networks__container {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .social-network-item__icon {
        width: 65px;
        height: 65px;
        margin-bottom: 8px;
    }

    .social-network-item__icon i {
        font-size: 28px;
    }

    .social-network-item__name {
        font-size: 12px;
    }
}

/* Skeleton for socials */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loadingSocials 1.5s infinite;
}

.skeleton-text {
    height: 15px;
    width: 60px;
    border-radius: 4px;
}

@keyframes loadingSocials {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-social-item {
    pointer-events: none;
}
