/* HERO BANNER */
.hero-banner {
    position: relative;
    width: 100%;
    height: 60vh;   /* adjust as needed */
    overflow: hidden;
}

/* The hero image */
.hero-banner .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* crop properly */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Black tint overlay */
.hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* adjust tint darkness */
    z-index: 2;
}

/* Text on top of everything */
.hero-banner .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
}

.hero-banner .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-banner .hero-text p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hero-banner {
    background-image: url("images/TwistedBannerImg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 900px;
    background-position: 0 center;
}