/* Slides Section Styles */

.slides-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    gap: 0;
}

.slide-image {
    width: 60%;
    height: 100%;
    object-fit: contain;
    background: #000;
    padding: 2rem;
}

.slide-text-container {
    width: 40%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-header {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.slide-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e5e5e5;
    line-height: 1.8;
    text-align: left;
}

.slide-progress {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.progress-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.progress-dot.active:hover {
    transform: scale(1.3);
}

.slide-hint {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: opacity 0.5s ease;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        gap: 0;
    }
    
    .slide-image {
        width: 100%;
        height: 55%;
        padding: 0.5rem;
        object-fit: contain;
    }
    
    .slide-text-container {
        width: 100%;
        height: 45%;
        padding: 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .slide-header {
        font-size: clamp(1.25rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .slide-text {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .slide-progress {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .progress-dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-hint {
        bottom: 3.5rem;
        font-size: 0.75rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-image {
        width: 55%;
        padding: 1.5rem;
    }
    
    .slide-text-container {
        width: 45%;
        padding: 2rem;
    }
}
