/* ============================================
   HERO (Julius Baer – clean, minimal)
   ============================================ */
.hero {
    position: relative;
    background-image: url('../img/hero-bg.jpg');  /* <-- HERE */
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    padding: 220px 0;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

/* Text with semi-transparent background (inline-block) */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1B4D3E;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: rgba(255, 255, 255, 0.6); /* semi-transparent dark background */
    padding: 0.2em 0.3em;
    border-radius: 4px;
    text-shadow: none;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 10px;
    color: #4A4A4A;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    padding: 0.2em 0.2em;
    border-radius: 4px;
    text-shadow: none;
}

/* Button remains solid (no background needed) */
.hero .btn-primary {
    background-color: #1B4D3E;
    border-color: #1B4D3E;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: block;
    width: fit-content;
    margin: 32px auto 0 auto;
}


.hero .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
}
