/**
 * Frontend styles for Yearben Slider
 */

.yearben-slider-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Background Image */
.yearben-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

/* Red Circle Decoration */
.yearben-slider-red-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #dc2626;
    border-radius: 50%;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.9;
}

/* Main Content */
.yearben-slider-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 60px;
    min-height: 600px;
    align-items: center;
    box-sizing: border-box;
}

/* Left Side */
.yearben-slider-left {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 40px;
}

/* Red Bar */
.yearben-slider-red-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 300px;
    background-color: #dc2626;
}

/* Text Content */
.yearben-slider-text {
    padding-left: 40px;
    color: #fff;
    width: 100%;
}

.yearben-slider-text-item {
    display: none;
}

.yearben-slider-text-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.yearben-slider-subtitle {
    font-size: 18px;
    color: #dc2626;
    margin-bottom: 16px;
    font-weight: 500;
    display: none;
}

.yearben-slider-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px 0;
    max-width: 500px;
    color: #fff;
}

.yearben-slider-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 450px;
}

/* Navigation Dots */
.yearben-slider-dots {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.yearben-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.yearben-slider-dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.3);
}

.yearben-slider-dot.active {
    background-color: #dc2626;
    border-color: #dc2626;
}

/* Right Side */
.yearben-slider-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    height: 500px;
}

/* Image Slider */
.yearben-slider-images {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 450px;
}

.yearben-slider-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.yearben-slider-image-item.active {
    opacity: 1;
    pointer-events: auto;
}

.yearben-slider-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.yearben-slider-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* No slides message */
.yearben-slider-no-slides {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .yearben-slider-content {
        flex-direction: column;
        padding: 40px 30px;
        min-height: auto;
    }
    
    .yearben-slider-left {
        padding-right: 0;
        padding-bottom: 30px;
        width: 100%;
    }
    
    .yearben-slider-right {
        padding-left: 0;
        width: 100%;
        height: 400px;
    }
    
    .yearben-slider-images {
        height: 350px;
    }
    
    .yearben-slider-title {
        font-size: 32px;
    }
    
    .yearben-slider-description {
        font-size: 18px;
    }
    
    .yearben-slider-red-circle {
        width: 200px;
        height: 200px;
        left: 50%;
        top: 30%;
    }
}

@media (max-width: 640px) {
    .yearben-slider-container {
        min-height: auto;
    }
    
    .yearben-slider-title {
        font-size: 24px;
    }
    
    .yearben-slider-description {
        font-size: 16px;
    }
    
    .yearben-slider-red-bar {
        height: 200px;
    }
    
    .yearben-slider-text {
        padding-left: 25px;
    }
    
    .yearben-slider-right {
        height: 320px;
    }
    
    .yearben-slider-images {
        height: 280px;
    }
    
    .yearben-slider-red-circle {
        width: 150px;
        height: 150px;
    }
}
