/**
 * SDM Socials - Frontend Styles
 */

.sdm-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.sdm-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sdm-socials a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.sdm-socials .vc_icon_element-icon {
    font-size: 18px;
    line-height: 1;
}

/* Footer Style - Circular Gold Buttons */
.sdm-socials-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.sdm-socials-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #b8986e;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sdm-socials-footer a:hover {
    background-color: #a07f56;
    transform: scale(1.1);
}

.sdm-socials-footer .vc_icon_element-icon {
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
}

/* Responsive - Center align on 880px and below */
@media (max-width: 880px) {
    .sdm-socials,
    .sdm-socials-footer {
        justify-content: center;
    }
}
