/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 5%;
    padding-bottom: 0rem;
}

.hero-content {
    width: 100%;
    padding-bottom: -4rem;
}

.hero-description {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-description p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-arrow {
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-arrow i {
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-arrow i:hover {
    transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-description p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .hero-arrow i {
        font-size: 1.5rem;
    }
    
    .hero .container {
        padding: 0 3%;
    }
}

@media (max-width: 480px) {
    .hero-description p {
        font-size: 0.8rem;
    }
}