.bv-hero-section {
    background-image: url('https://burschenvereinehrenkranz.de/images/hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
    color: white;
}

.bv-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://burschenvereinehrenkranz.de/static/images/newestgrouppicture.JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.bv-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.bv-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1300px;
    display: flex;
    gap: 2rem;
    padding: 0 20px;
    animation: slideInUp 1s ease-out;
}

.bv-hero-firstPanel {
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    text-align: left;
    padding: 15px 20px 15px 20px;
    border-radius: 25px;
}

.bv-welcome-message {
    font-size: 25px;
    font-weight: bold;
}

.bv-welcome-message-name {
    color: #349254;
}

.bv-hero-firstPanel-text1 {
    font-size: 20px;
    font-weight: bold;
}

.bv-hero-firstPanel-text2 {
    font-size: 20px;
    font-weight: lighter;
}

.bv-hero-secondPanel {
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 20px 30px 20px 30px;
    border-radius: 25px;
}

.bv-hero-secondPanel-image {
    max-width: 150px;
    height: auto;
}

.bv-hero-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.bv-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bv-hero-actions {
    display: flex;
    flex-direction: column;
}

.bv-hero-button {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bv-hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.bv-hero-button:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.bv-hero-button:hover::before {
    left: 100%;
}

@media screen and (min-width: 1085px) {
    .bv-hero-section {
        background-position: 0 -100px;
    }
}

@media screen and (max-width: 900px) {
    .bv-hero-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin-top: 4rem;
    }

    .bv-hero-firstPanel,
    .bv-hero-secondPanel {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
    }

    .bv-hero-secondPanel-image {
        max-width: 150px;
        margin: 0 auto;
    }

    .bv-hero-icons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .bv-hero-section {
        padding: 1rem;
        background-position: center;
    }
}

@media screen and (max-width: 600px) {
    .bv-hero-content {
        gap: 0.75rem;
    }

    .bv-hero-firstPanel,
    .bv-hero-secondPanel {
        padding: 1rem;
        border-radius: 15px;
        font-size: 0.9rem;
    }

    .bv-hero-secondPanel-image {
        max-width: 120px;
    }

    .bv-hero-icons {
        gap: 0.5rem;
    }
}