/* Global: padding und border zählen zur Gesamtbreite */
* {
    box-sizing: border-box;
}

/* Grundlayout */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #00137F;

    background: url("bilder/bg.jpg") repeat center top;
}

@supports (background-image: image-set(url("a.webp") type("image/webp"))) {
    body {
        background-image: image-set(
            url("bilder/bg.webp") type("image/webp"),
            url("bilder/bg.jpg") type("image/jpeg")
        );
    }
}

/* Inhaltsbereich */
.page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 1rem;
}

main {
    line-height: 1;
    text-align: center;
}

/* ------------------ BANNER ------------------ */
header.banner {
    text-align: center;
    background-color: white;
    padding: 1rem 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.banner-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin: 0;
}

.banner .subtext {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin: 0;
}

/* Farben für einzelne Wörter */
.highlight-orange {
    color: #FF6A00;
}

.highlight-green {
    color: #74B637;
}

/* ------------------ HERO ------------------ */
.hero-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Bild-Wrapper: begrenzt das Zoom auf das Bild */
.hero-image-wrapper {
    overflow: hidden;       /* verhindert, dass Bild über Container hinausragt */
    width: 100%;
}

/* Bild selbst */
.hero-image-wrapper .hero-image {
    width: 100%;
    height: auto;
    display: block;

    animation: zoom-right-left 12s ease-in-out infinite;
    transform-origin: center center;
}



/* Logo und Badges */
.logo-wrapper {
    position: absolute;
    bottom: -5%;             /* passt den Abstand nach unten an */
    left: 50%;
    transform: translateX(-50%);
    width: 20%;              /* relative Breite zum Container */
    max-width: 150px;        /* maximale Breite */
}

.logo-wrapper .logo {
    width: 100%;             /* passt sich dem Wrapper an */
    height: auto;
    display: block;
}

@keyframes zoom-right-left {
    0% {
        transform: scale(1) translate(0, 0); /* Start */
    }
    25% {
        transform: scale(1.05) translate(1%, 0); /* leicht nach rechts reingezoomt */
    }
    50% {
        transform: scale(1.05) translate(-1%, 0); /* nach links verschoben */
    }

    100% {
        transform: scale(1) translate(0, 0); /* zurück zum Start */
    }
}


/* ------------------ CONTENT ------------------ */
main h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

main h1::before,
main h1::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #CCCCCC;
    margin-bottom: 0;
    margin-top: 0;
}

.Uberschrift { 
    margin-bottom: 0.2em; 
}


main p {
    font-size: clamp(12px, 2vw, 18px);
    margin-bottom: 0rem;
    line-height: 1.2;
}

/* Verschiedene kleine Stilklassen */

.no-bullets { list-style: none; padding-left: 0; margin-left: 0; }

.no-bullets li {
    line-height: 1.2;
    margin-bottom: 0.8em;
    font-size: clamp(12px, 5vw, 16px);
}

.Umbruch { display: inline; }

@media (max-width: 480px) {
    .Umbruch { display: block; }
}

.Umbruch_s { 
display: inline; 
}

@media (max-width: 480px) {
    .Umbruch_s { 
       display: block; 
       font-size: 0.85em;    /* Text nach dem Umbruch ist außerdem kleiner */
}
}

h2 {
    text-align: center;
    font-size: clamp(12px, 5vw, 16px);
    color:  #00137F;
}

h3 {
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(12px, 5vw, 16px);
    color:  #00137F;
}

.preis_raster {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.preis_karte {
    background: white;
    padding: 1rem 1rem;
    text-align: center;
    min-width: 120px;
    flex: 0 0 auto;
}

.preis_karte::before {
    content: attr(data-personen);
    display: block;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 16px);
    margin-bottom: 0.5rem;
}

.preis_karte::after {
    content: attr(data-preise);
    display: block;
    font-size: clamp(12px, 2vw, 16px);
    color: #00137F;
}

p.note1  {							/* Preise ab 80 Personen */
    margin-top: 0;
    margin-bottom: 1;
    font-size: clamp(12px, 2vw, 16px);
}

p.note2  {							/* grauer Änderungen vorbehalten-Text */
    color: #797979;
    margin-top: 1em;
    line-height: 1;
    font-size: clamp(12px, 2vw, 14px);
}

p.note3  {
    font-size: clamp(12px, 5vw, 16px);
    font-weight: bold;
    text-align: justify;
    max-width: 400px; /* maximale Breite 400px */
    margin: 0 auto;    /* zentriert den Absatz, wenn er kleiner als der Container ist */
    margin-bottom: 2rem;
}

p.note3 a.note3-link {
    color: #FF6A00;
    font-weight: bold;
    text-decoration: underline;
}

p.blocksatz  {
    text-align: justify;
    hyphens: auto;
    line-height: 1.4;
}

.blocksatz { list-style: none; padding-left: 0; margin-left: 0; }

p.fingerfood  {
    margin-top: 1rem;
    font-size: clamp(12px, 5vw, 16px);
    line-height: 1.2;
    font-weight: bold;
}

.suppe {
  margin-bottom: 1.5em;
  line-height: 1.5;   
}

.suppe strong,
.suppe {
  display: block;
  line-height: 1.5;
}

h2.ausstattung {
    font-size: clamp(12px, 5vw, 16px);
}

/* ------------------ DECO ------------------ */

.trennlinie {
    width: 30%;
    height: 1px;
    background-color: #ccc;
    margin: 1em 0;
    margin-left: auto;
    margin-right: auto;
}

.trennlinie_preise {
    width: 30%;
    height: 1px;
    background-color: #ccc;
    margin: 2em auto 0 auto; 
}

.sternchen {
    text-align: center;
    font-size: clamp(12px, 5vw, 16px);
    color:  #00137F;
}

.buffet-intro {
    margin: 1em auto 0 auto; 
    max-width: 600px;     /* Breite begrenzen */
    font-size: clamp(12px, 2vw, 14px);
}

.trennlinie_intro {
    width: 30%;
    height: 1px;
    background-color: #ccc;
    margin: 1em auto 0 auto; 
    margin-bottom: 2em;
}