/* Custom Font */
@font-face {
    font-family: 'Respondent';
    src: url('../media/fonts/respondent.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 56vh;
    overflow: hidden;
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 0;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide-left,
.slide-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-title {
    font-family: 'Respondent', cursive;
    font-size: 4.55rem;
    font-weight: 600;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0 20px;
    line-height: 1.2;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    box-sizing: border-box;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.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;
    transform: scale(1.2);
}

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


/* Series Section - Hidden */
.series-section {
    display: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 40vh;
    }
    
    .slide-title {
        font-size: 3.25rem;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-left {
        height: 100%;
    }
    
    .slide-right {
        display: none;
    }
    
    .slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 32vh;
    }
    
    .slide-title {
        font-size: 2.6rem;
        padding: 0 15px;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-left {
        height: 100%;
    }
    
    .slide-right {
        display: none;
    }
}
