/*!
 * Social Media Icons CSS
 * For Curtain Installations website
 */

/* Social Media Icons Container */
.social-media-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0;
    padding-left: 25px;
}

/* Individual Social Media Icon Styling */
.social-icon {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Icon Image Styling */
.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* Hover Effects for Icons */
.social-icon:hover {
    transform: scale(1.1);
}

.social-icon:hover img {
    opacity: 0.8;
}

/* Tooltip Styling for Hover Labels */
.social-icon .tooltip {
    visibility: hidden;
    width: 80px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -40px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

/* Tooltip Arrow */
.social-icon .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show Tooltip on Hover */
.social-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
