/* Hero Slider Styles - Converted from React Component */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 4;
    max-width: 800px;
    width: 90%;
    padding: 2rem;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: slideInUp 1s ease-out 0.4s both;
    text-decoration: none;
    display: inline-block;
}

.slide-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 5;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 2rem;
}

.arrow-right {
    right: 2rem;
}

/* Dot Indicators */
.dots-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.dot {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.dot.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.dot-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
}

.dot-spinner-track {
    stroke-dasharray: 126;
    stroke-dashoffset: 0;
}

.dot-spinner-bar {
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
    animation: dotProgress 5s linear infinite;
    transform-origin: center;
    transform: rotate(-90deg);
}

.dot.active .dot-spinner-bar {
    animation: dotProgress 5s linear infinite;
}

.dot-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 1;
}

/* Play/Pause Button */
.play-pause-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    transform: translateY(-2px);
}

.scroll-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dotProgress {
    0% {
        stroke-dashoffset: 126;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Empty State */
.hero-slider-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #f8fafc;
    color: #64748b;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .arrow {
        width: 50px;
        height: 50px;
    }
    
    .arrow-left {
        left: 1.5rem;
    }
    
    .arrow-right {
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .arrow-left {
        left: 1rem;
    }
    
    .arrow-right {
        right: 1rem;
    }
    
    .dots-container {
        bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .dot {
        width: 40px;
        height: 40px;
    }
    
    .dot-spinner {
        width: 40px;
        height: 40px;
    }
    
    .scroll-down {
        bottom: 1.5rem;
        left: 1rem;
    }
    
    .play-pause-btn {
        bottom: 1.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .dots-container {
        gap: 0.5rem;
    }
    
    .dot {
        width: 32px;
        height: 32px;
    }
    
    .dot-spinner {
        width: 32px;
        height: 32px;
    }
    
    .dot-label {
        font-size: 0.65rem;
    }
}
