/* Slider Controls */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    padding: 2rem;
    max-width: 800px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.slide-tag {
    display: inline-block;
    background: rgba(232, 93, 117, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.slide-description {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.slide-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #FFD700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.slide-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide 1: Center Top */
.slide-content-center {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 1400px;
    width: 90%;
    padding: 2.5rem 3rem;
}

.slide-content-center .slide-logo {
    height: 35px;
    width: auto;
    margin-bottom: 1.5rem;
}

.slide-content-center h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.slide-content-center .slide-highlight {
    font-size: 1.8rem;
    margin-top: 1rem;
    color: #E85D75;
    font-weight: 500;
    text-shadow: none;
    background: none;
}

.slide-content-center .slide-subtext {
    margin: 0 auto;
}

/* Slide 2: Header at top */
.slide-content-top-header {
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    text-align: center;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-content-top-header h2 {
    white-space: nowrap;
    text-align: center;
}

/* Slide 2: Description at bottom */
.slide-content-top-description {
    top: 76%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    text-align: center;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Slide 3: Left Side & Shifted Down */
.slide-shifted {
    top: 10%;
}

.slide-content-left {
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
    width: 85%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.slide-content-left h2 {
    font-size: 2.5rem;
}

.slide-content-left .slide-tag,
.slide-content-left h2,
.slide-content-left .slide-description,
.slide-content-left .slide-subtext,
.slide-content-left .slide-highlight {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 2;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn.play-pause {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(232, 93, 117, 0.8);
    font-size: 1.5rem;
}

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

.slider-btn.play-pause:hover {
    background: rgba(232, 93, 117, 1);
    transform: translateX(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

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

.dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero {
        margin-top: 90px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-tag {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-highlight {
        font-size: 1rem;
    }
    
    .slide-subtext {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .slide-content-center {
        top: 10%;
        max-width: 95%;
        padding: 1rem;
    }
    
    .slide-content-center h2 {
        font-size: 1.1rem;
    }
    
    .slide-content-center .slide-logo {
        height: 25px;
        margin-bottom: 0.75rem;
    }
    
    .slide-content-top-header {
        top: 10%;
    }
    
    .slide-content-top-header h2 {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .slide-content-top-description {
        top: 70%;
    }
    
    .slide-content-left {
        top: 35%;
        left: 2%;
        max-width: 96%;
        padding: 1rem;
    }
    
    .slide-content-left h2 {
        font-size: 1.2rem;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
}
