html {
    scroll-behavior: smooth;
}
.hero-season, .hero-standard {
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-standard {
    background-color: #f3f4f6;
    color: #333;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.offer-badge {
    padding: 10px 25px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-hero {
    background: white;
    color: black;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: transform 0.3s;
    display: inline-block;
}
.btn-hero:hover {
    transform: scale(1.05);
}
.animate-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
#outstanding {
    scroll-margin-top: 75px;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-season, .hero-standard { height: 60vh; }
}