/* 
SIMPLE BULLETPROOF CAROUSEL
============================
Minimal, reliable carousel that just works
No complex positioning, no DOM manipulation
*/

.simple-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.simple-carousel .slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.simple-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.simple-carousel .slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    max-width: 500px;
    z-index: 3;
}

.simple-carousel .slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.simple-carousel .slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.simple-carousel .slide-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.simple-carousel .slide-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.simple-carousel .nav-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.simple-carousel .nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.simple-carousel .nav-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.simple-carousel .nav-btn:active {
    transform: scale(0.95);
}

.simple-carousel .slide-indicators {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.simple-carousel .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-carousel .indicator.active {
    background: rgba(255,255,255,0.9);
    transform: scale(1.2);
}

.simple-carousel .indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .simple-carousel .slide-content {
        left: 30px;
        right: 30px;
        max-width: none;
    }
    
    .simple-carousel .slide-title {
        font-size: 2rem;
    }
    
    .simple-carousel .slide-description {
        font-size: 1rem;
    }
    
    .simple-carousel .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .simple-carousel .slide-indicators {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .simple-carousel .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .simple-carousel .slide-title {
        font-size: 1.5rem;
    }
    
    .simple-carousel .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .simple-carousel .slide-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}