﻿
.mud-blazor-overlay {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image .image {
    width: 100%;
    height: 30px;
    position: absolute;
    z-index: 1;
}

.rounded-appbar {
    border-radius: 0 0 3px 3px; /* Nur unten abgerundet */
    overflow: hidden; /* Wichtig bei Elevation/Schatten */
}

.foreground-text {
    position: absolute;
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.great-vibes-regular {
    font-family: "Great Vibes", serif;
    font-weight: 400;
    font-style: normal;
}

.dynamic-text-h1 {
    font-size: clamp(1rem, 2vw + 1em, 4rem);
}

.dynamic-text-h2 {
    font-size: clamp(0.2rem, 0.5vw + 1.0em, 1.5rem);
    display: flow
}

.dynamic-text-h3 {
    font-size: calc(0.3vw + 0.8em)
}

.green-primary {
    color: #9CC294;
}

.green-secondary {
    color: #E6F0E7;
}

.green-third {
    color: #F7FBF7;
}

.imprint-text {
    color: #343434;
}

.headContent {
    padding: 3vh 0;
    justify-content: center;
    background-color: #444444;
    border-radius: 0;
    elevation: 0;
    box-shadow: none;
    z-index: 10
}

.headerBar {
    border-radius: 0px;
    max-height: 40px;
    background-color: #D0D8D0;
}

.expansionPanel {
    font-weight: bold;
    padding: 10px;
    background-color: #D0D8D0;
    color: #343434;
}

@font-face {
    font-family: 'bahnschrift';
    src: url('fonts/bahnschrift.ttf') format('light')
}

@font-face {
    font-family: 'Gastroline';
    src: url('fonts/GastrolineSignature.otf')
}


.caroussel-image {
    height: auto;
    width: auto;
    max-height: 100vw;
    max-width: 100vw;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0.35;
}


.appbar-logo {
    height: 50px;
    width: auto;
    opacity: 1.0;
    padding-left: 5px
}

.fab-mobile {
    display: none;
}

.fab-desktop {
    display: inline-flex;

}

/* Für kleine Bildschirme: Desktop-Version ausblenden, Mobile-Version zeigen */
@media (max-width: 600px) {
    .appbar-logo {
        height: 25px; /* oder z. B. 25px – je nachdem, was passt */
        padding-left: 1px
    }

    .fab-desktop {
        display: none;
    }

    .fab-mobile {
        display: inline-flex;
    }
}
