/* css/hero.css (v2) */

.main-hero {
    position: relative;
    background: linear-gradient(to right,
            var(--pp-red) 0%,
            var(--pp-red) 50%,
            var(--pp-blue) 50%,
            var(--pp-blue) 100%);
    color: var(--pp-white);
    padding: 6rem 1rem;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-content .full-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    /* your existing white heading */
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--pp-white);
    letter-spacing: 1px;
}

/* Hero slogan in regular white text */
.hero-content .slogan {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    /* normal, not italic */
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--pp-yellow);
    /* yellow only here */
}


.hero-content .subtagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    /* italic here */
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--pp-white);
    /* white */
    margin-top: 0.5rem;
}