/* ============================================
   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: 580px;
    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: 550px;
    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;
}

/* ============================================
   INTRO
   ============================================ */

/* Intro highlight block – harmonious with the page */
.intro-highlight {
    background: #F9F9F9;
    padding: 2rem 2rem;
    border-left: 4px solid #3B9E6A;
    margin: 48px auto;
    max-width: 800px;
    border-radius: 0 8px 8px 0;
}

.intro-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2C2C2C;
    margin: 0;
    font-weight: 400;
    max-width: 800px;
}

/* Optional: add a subtle serif touch to the first line */
.intro-highlight p:first-of-type::first-line {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #1B4D3E;
}

