.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1s ease-in-out;
    animation: zoomIn 20s ease-in-out infinite;
    transform: translateX(100%);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.slide-content {
    color: white;
    opacity: 0;
    transform: translateX(100px);
    text-align: center;
}

.slide-content.active {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-in-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(132, 4, 126, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background 0.3s;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}
