
.hero {
    height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    @media (max-width: 1199.98px){
        height: 70vh;
    }
    @media (max-width: 767.98px){
        height: 50vh;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /*transition: opacity 1s ease-in-out;*/
    display: flex;
    align-items: center;
    justify-content: center;
    video{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-weight: 600;
    @media (max-width: 1199.98px){
        font-size: 28px;
    }
    @media (max-width: 767.98px){
        font-size: 18px;
    }
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    @media (max-width: 1199.98px){
        font-size: 16px;
    }
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}
