.hero-section {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 50%, #558B2F 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    animation: floatLeaves 20s ease-in-out infinite;
}

@keyframes floatLeaves {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-30px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-welcome {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #2E3B4E;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #2E3B4E;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-btn:hover {
    background: white;
    color: #2E3B4E;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 100% 0 100%;
    animation: float 15s infinite linear;
}

.leaf:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.leaf:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.leaf:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.leaf:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.leaf:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 24s; }
.leaf:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 19s; }
.leaf:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 21s; }
.leaf:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 17s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-welcome {
        font-size: 1.2rem;
    }
}
