.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section video.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.3);
    pointer-events: none;
}

.hero-section > *:not(video) {
    position: relative;
    z-index: 2;
    color: var(--color-salbeigrün);
}

#hero-section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3vh;
    margin-top: 10vh;

    max-width: 40vw;

   
}


.hero-section-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
width: 40vw;
    margin-top: 2rem;
    text-align: center;
}



.hero-section-contact-parent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-button {
    background: transparent;
    border: 2px solid var(--color-edelweiß);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin: 0.5rem 1rem 0.5rem 0;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    outline: none;
    color: var(--color-edelweiß);
}


.gallery-button-hero {
    
    display: block;
    background-color: transparent;
   
    border-radius: 2rem;
   padding: 1rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
        border: 2px solid var(--color-edelweiß);
        color: var(--color-edelweiß);
}



.gallery-button-hero:hover {
    background-color: var(--color-edelweiß);
    border-color: var(--color-champangergold);
     color: var(--color-champangergold);
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.16);
  
}




.contact-button:hover,
.contact-button:focus {
    background-color: var(--color-edelweiß);
    border-color: var(--color-champangergold);
     color: var(--color-champangergold);
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.16);
}