/**
 * Hero Banner Widget Styles
 */

.hero-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    overflow: hidden;
    padding: 220px 0 100px 0;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 60px 0;
}

/* Animation States */
.hero-banner-heading,
.hero-banner-subheading,
.hero-banner-button {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-banner-wrapper.animate .hero-banner-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-banner-wrapper.animate .hero-banner-subheading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-banner-wrapper.animate .hero-banner-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-banner-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner-subheading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 50px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #C9302C;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 48, 44, 0.3);
}

.hero-banner-button:hover {
    background-color: #A52A26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 48, 44, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-banner-wrapper {
        padding: 170px 0 90px 0;
    }

    .hero-banner-content {
        padding: 50px 0;
    }

    .hero-banner-heading {
        font-size: 2.4rem;
    }

    .hero-banner-subheading {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-wrapper {
        min-height: 50vh;
        padding: 140px 0 80px 0;
    }

    .hero-banner-content {
        padding: 40px 0;
        text-align: center;
    }

    .hero-banner-heading {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-banner-subheading {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .hero-banner-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-wrapper {
        min-height: 40vh;
        padding: 120px 0 70px 0;
    }

    .hero-banner-content {
        padding: 30px 0;
    }

    .hero-banner-heading {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-banner-subheading {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .hero-banner-button {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}
