/**
 * Movie Hero Banner CSS
 * Styles for the movie hero banner/slider
 */

/* Hero Container */
.movie-hero-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

/* Hero Slider */
.movie-hero-slider {
    width: 100%;
    position: relative;
}

/* Hero Slide */
.movie-hero-slide {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Hero Image */
.movie-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center -200px !important;
    background-repeat: no-repeat !important;
}

/* Hero Overlay */
.movie-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

/* Content Overlay */
.movie-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
    color: #fff;
    text-align: left;
}

/* Movie Title */
.movie-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Movie Meta */
.movie-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.movie-hero-meta span {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

/* Movie Description */
.movie-hero-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 800px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Call to Action Button */
.movie-hero-cta {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-right: 15px;
}

.movie-hero-cta:hover {
    background: #e65c00;
    transform: translateY(-2px);
    color: white;
}

.movie-hero-secondary-cta {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(5px);
}

.movie-hero-secondary-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
}

/* Slick Carousel Customization */
.movie-hero-slider .slick-prev,
.movie-hero-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
}

.movie-hero-slider .slick-prev {
    left: 20px;
}

.movie-hero-slider .slick-next {
    right: 20px;
}

.movie-hero-slider .slick-prev:before,
.movie-hero-slider .slick-next:before {
    font-size: 50px;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.movie-hero-slider .slick-dots {
    bottom: 20px;
    z-index: 10;
}

.movie-hero-slider .slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.7;
}

.movie-hero-slider .slick-dots li.slick-active button:before {
    color: #ff6600;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .movie-hero-slide {
        height: 500px;
    }
    
    .movie-hero-title {
        font-size: 36px;
    }
    
    .movie-hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .movie-hero-slide {
        height: 400px;
    }
    
    .movie-hero-content {
        padding: 30px;
    }
    
    .movie-hero-title {
        font-size: 28px;
    }
    
    .movie-hero-description {
        font-size: 14px;
    }
    
    .movie-hero-cta,
    .movie-hero-secondary-cta {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .movie-hero-slide {
        height: 350px;
    }
    
    .movie-hero-content {
        padding: 20px;
    }
    
    .movie-hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .movie-hero-meta {
        margin-bottom: 10px;
    }
    
    .movie-hero-description {
        margin-bottom: 15px;
    }
}
