.hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
}

.slideshow {
    height: 100%;
    width: 300%;
    display: flex;
    animation: slideshow 15s infinite;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: url('../images/slide1.jpg');
}

.slide:nth-child(2) {
    background-image: url('../images/slide2.jpg');
}

.slide:nth-child(3) {
    background-image: url('../images/slide3.jpg');
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.slide-content .date {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.slideshow-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.slideshow-nav label:hover {
    background: var(--white);
}

@keyframes slideshow {
    0%, 32% {
        transform: translateX(0);
    }
    33%, 65% {
        transform: translateX(-33.333%);
    }
    66%, 100% {
        transform: translateX(-66.666%);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content .description {
        font-size: 1rem;
    }
}