/* FULL-WIDTH HERO BANNER */
.banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #fff;
	box-sizing: border-box; /* FIXED */
}

/* BACKGROUND IMAGE */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT OVERLAY */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.banner-buttons {
    margin-top: 2rem;
}

.banner-buttons a {
    margin-right: 1rem;
}
