﻿/* Hero section */
.hero {
    position: relative;
    background: #000;
    color: #fff;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    .hero img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        opacity: 0.55;
    }

    .hero .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .hero h1 {
        font-weight: 800;
        font-size: 2.2rem;
        text-shadow: 0 0 8px #000;
    }
/* Base (mobile-first / small screens) */
.stat-badge {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: .5rem;
    padding: .4rem .75rem;
    margin: .25rem;
    color: #fff;
    font-size: .75rem; /* smaller default */
}

.stat-label {
    color: gray;
    font-size: .75rem;
    font-weight: bold;
}

/* Large screens (992px and up) */
@media (min-width: 992px) {
    .stat-badge {
        padding: .6rem 1.125rem;
        font-size: 2rem; /* bigger for desktop */
    }

    .stat-label {
        font-size: 1rem; /* larger label text */
    }
}
