/**
 * Socius Elementor Addons - Global Styles
 * 
 * Note: CSS color variables are defined dynamically from the plugin settings.
 * This file contains only the global style classes used across widgets.
 */

 html{
    scroll-behavior: smooth;
    font-size: 16px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Typography Styles */
.socius-h2 {
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    width: fit-content;
}

p.text-size-medium {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
}

/* Button Styles */
.socius-btn {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    letter-spacing: .675px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: all .375s;
}

.socius-btn:hover {
   background-color: var(--primary-dark) !important;
}

/* Video Lightbox Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    width: 800px;
}

.video-lightbox-content iframe,
.video-lightbox-content video {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    background-color: #000;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-lightbox-close:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.socius-btn.btn-white {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary);
}

.socius-btn.btn-white:hover {
    opacity: .8;
}

/* Responsive Styles */


 /* Tablet styles */
@media (max-width: 992px){
   

}

/* Mobile styles */
@media (max-width: 768px) {
    
    .socius-h2 {
        font-size: 1.8rem;
    }
}
