/* ===========================
   Social Icons on Carousel
   Minimal & Elegant - Photos are the hero
   =========================== */

.carousel-social-icons {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.carousel-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.carousel-social-icons a:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: var(--color-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Individual icon colors on hover */
.carousel-social-icons a:hover .fa-instagram {
    color: #E4405F;
}

.carousel-social-icons a:hover .fa-facebook-f {
    color: #1877F2;
}

.carousel-social-icons a:hover .fa-youtube {
    color: #FF0000;
}

.carousel-social-icons a:hover .fa-whatsapp {
    color: #25D366;
}

/* ===========================
   Footer Social Icons
   =========================== */

.social-links-footer {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .carousel-social-icons {
        bottom: 2rem;
        gap: 1rem;
    }
    
    .carousel-social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-social-icons {
        bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .carousel-social-icons a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .social-links-footer {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links-footer a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-links-footer {
        gap: 1rem;
    }
    
    .social-links-footer a {
        width: 40px;
        height: 40px;
    }
}

/* ===========================
   Alternative: Minimal Line Style
   (Uncomment to use instead)
   =========================== */

/*
.social-sidebar a::before {
    display: none;
}

.social-sidebar a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.social-sidebar a:hover::after {
    width: 100%;
}
*/

