/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    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: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 0 5%;
    padding-bottom: 1rem;
}

.hero-content {
    width: 100%;
    padding-bottom: 0;
}

.hero-description {
    text-align: center;
    margin-bottom: 1rem;
}

.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 {
        min-height: 50vh;
    }

    .hero .container {
        height: 50vh;
        padding-bottom: 1.5rem;
    }

    .hero-description p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-arrow i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
    }

    .hero .container {
        height: 45vh;
    }

    .hero-description p {
        font-size: 0.85rem;
    }
}