/* Hero Banner Styles */
.hero-banner-item {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    margin: 0 1rem;
    border-radius: var(--radius-2xl);
    /* Subtle glass effect for text clarity */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero-banner-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-banner-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
}

.hero-banner-btn {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-banner-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-banner-item {
        min-height: 20vh !important;
    }

    .hero-banner-content {
        padding: 2rem 1.5rem;
        width: 90%;
    }
}

/* Specific optimization for ultra-mobile screens (down to 300px) */
@media (max-width: 320px) {
    .hero-banner-item {
        min-height: 20vh !important;
    }

    .hero-banner-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }

    .hero-banner-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-banner-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }
}
