/**
 * CJ Slides Styles
 */

/* Import Lato font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');

.cj-slides-container {
    position: relative;
    width: 100%;
    max-width: 903px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
}

.cj-slides-wrapper {
    position: relative;
    width: 100%;
    height: 572px;
    overflow: hidden;
    box-sizing: border-box;
}

.cj-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    box-sizing: border-box;
}

.cj-slide.active {
    display: flex;
}

.cj-slide-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cj-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cj-slide-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.cj-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #472B20;
    padding: 30px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

/* Desktop content background color - can be customized in plugin settings */
.cj-slides-container .cj-slide-content {
    background-color: #472B20;
}

.cj-slide-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-family: 'Lato', sans-serif;
}

.cj-slide-description {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-family: 'Lato', sans-serif;
}

.cj-slide-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.cj-slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cj-slide-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cj-slide-button-primary {
    background-color: #D05E2D;
    color: #ffffff;
}

.cj-slide-button-primary:hover {
    background-color: #b84e25;
    color: #ffffff;
}

.cj-slide-button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cj-slide-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cj-slides-pagination {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.cj-slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CE8E20;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cj-slide-dot.active {
    background-color: #DCE4C9;
}

.cj-slide-dot:hover {
    opacity: 0.8;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .cj-slides-container {
        max-width: 360px;
    }
    
    .cj-slides-wrapper {
        height: auto;
        min-height: 228px;
    }
    
    .cj-slide {
        position: relative;
        flex-direction: column;
        height: auto;
    }
    
    .cj-slide-image-container {
        width: 100%;
        height: 228px;
        flex-shrink: 0;
        position: relative;
        background-color: #f0f0f0;
        margin: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .cj-slide-image {
        object-fit: contain;
        width: 100%;
        height: 100%;
        object-position: center;
    }
    
    .cj-slide-content {
        position: relative;
        background-color: #472B20;
        padding: 20px;
        flex-shrink: 0;
        width: 100%;
        margin: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Mobile content background color - can be customized in plugin settings */
    .cj-slides-container .cj-slide-content {
        background-color: #472B20;
    }
    
    .cj-slide-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .cj-slide-description {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .cj-slide-buttons-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cj-slide-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    
    .cj-slide-button {
        flex: 1;
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cj-slides-pagination {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        padding: 0;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .cj-slides-container {
        max-width: 100%;
    }
    
    .cj-slides-wrapper {
        height: 450px;
    }
    
    .cj-slide-title {
        font-size: 32px;
    }
    
    .cj-slide-description {
        font-size: 16px;
    }
}

