/**
 * Video Content Slider - Frontend Styles
 */

/* Wrapper */
.vcs-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Inner Container - Flexbox Layout */
.vcs-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Content Area - Left Side */
.vcs-content {
    flex: 0 0 45%;
    max-width: 45%;
    box-sizing: border-box;
}

/* Logo */
.vcs-logo {
    margin-bottom: 20px;
}

.vcs-logo img {
    max-width: 100%;
    height: auto;
}

/* Header Text (alternative to logo) */
.vcs-header-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Title */
.vcs-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px 0;
    padding: 0;
    transition: opacity 0.3s ease;
}

/* Description */
.vcs-description {
    font-size: 16px;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.vcs-description p {
    margin: 0 0 10px 0;
}

.vcs-description p:last-child {
    margin-bottom: 0;
}

/* Video Area - Right Side */
.vcs-video-area {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

/* Navigation */
.vcs-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vcs-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.vcs-nav-btn:hover {
    opacity: 0.8;
}

.vcs-nav-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.vcs-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Video Container */
.vcs-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Aspect Ratios */
.vcs-video-container.vcs-aspect-16-9 {
    padding-bottom: 56.25%; /* 16:9 */
}

.vcs-video-container.vcs-aspect-4-3 {
    padding-bottom: 75%; /* 4:3 */
}

.vcs-video-container.vcs-aspect-21-9 {
    padding-bottom: 42.86%; /* 21:9 */
}

.vcs-video-container.vcs-aspect-1-1 {
    padding-bottom: 100%; /* 1:1 */
}

.vcs-video-container iframe,
.vcs-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Counter */
.vcs-counter {
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

/* Fade Animation */
.vcs-fade-out {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.vcs-fade-in {
    opacity: 1;
    transition: opacity 0.2s ease-in;
}

/* Responsive */
@media (max-width: 991px) {
    .vcs-inner {
        gap: 30px;
    }

    .vcs-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 2;
    }

    .vcs-video-area {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }

    .vcs-title {
        font-size: 22px;
    }

    .vcs-description {
        font-size: 15px;
    }

    .vcs-logo {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .vcs-inner {
        gap: 20px;
    }

    .vcs-navigation {
        margin-bottom: 10px;
    }

    .vcs-nav-btn {
        font-size: 12px;
        padding: 6px 8px;
    }

    .vcs-title {
        font-size: 20px;
    }

    .vcs-description {
        font-size: 14px;
    }
}
