/* ==========================================================================
   >>- HERO BLOCK STYLES
   ========================================================================== */

@media screen and (min-width: 1200px) {
    .block-hero {
        min-height: 90vh;
    }   
}

@media (min-width: 1400px) {
    #page .row:has(.block-hero) {
        padding-left: 26vw;
        padding-right: 26vw;
    }
}

.hero {
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    color: white;
    width: 100%;
}

.hero-content {
    margin: auto;
    padding: 50px 0 100px 0;
}

.hero-content .hero-badge {
    display: inline-block;
    background: rgba(215, 169, 60, .15);
    border: 1px solid gold;
    padding: 8px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    font-weight: bold;
}

.hero h1 .gelb {
    color: #d7a93c;
}

.hero h1 .weiss {
    color: white;
}

.hero p {
    margin-top: 25px;
    max-width: 700px;
    font-size: 1.15rem;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- CTA Button Components --- */
.btn {
    padding: 15px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease; 
    display: inline-block;
}

.btn-primary {
    background: #d7a93c;
    color: black;
    border: none;
}

.btn-primary:hover {
    background-color: #d7a93c;
    color: black;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background-color: inherit;
}

.btn-secondary:hover {
    color: black;
    background: white;
    border-color: white;
}

/* Clean Hover Pop-Up Animation Elements */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
}

@media screen and (max-width: 500px) {
    .hero-badge {
        font-size: 13px;
    }
}