 @charset "utf-8";



/* Google-Font „Besley“ importieren */
@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&display=swap');

/*
// <weight>: Use a value from 400 to 900
// <uniquifier>: Use a unique and descriptive class name

.besley-<uniquifier> {
  font-family: "Besley", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

 :root {
    --bg-color: #efece8;
    --text-color: #222222;
    --accent-color: #b3122f;
    --accent-dark: #7d0d22;
    --muted-text: #666666;
    --border-color: #dddddd;
    --max-width: 880px;
 }

 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 }

 html {
    scroll-behavior: smooth;
 }

 body {
    font-family: "Besley", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 100%;
    font-weight: 400;
    margin: 0;
    padding: 0;
    /* „Seiten“-Scroll */
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
 }

 .section {
    /* border-bottom: 1px solid #333;*/
    min-height: 100vh;
    /* mindestens eine Bildschirmhöhe */
    scroll-snap-align: start;
    /* am Anfang „einrasten“ */
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 3.5rem;
 }

 .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
 }


 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: var(--accent-dark)
 }

 h2 {
    font-weight: 900;
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: var(--accent-dark);
 }

 p {
    margin-bottom: 1rem;
    line-height: 1.75;

 }

 a {
    color: var(--accent-color);
    text-decoration: none;
 }

 a:hover {
    text-decoration: underline;
 }

 .subtitle {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
 }

 /* Bilder allgemein */
 img {
    max-width: 100%;
    height: auto;
    display: block;
 }

 /* Vimeo-Wrapper, volle Breite innerhalb der Section */
 .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 */
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
 }

 .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
 }

 /* Pfeil nach unten */
 .scroll-arrow-wrapper {
    margin-top: auto;
    /* schiebt Pfeil nach unten */
    text-align: center;
 }

 .scroll-arrow {
    display: inline-block;
    font-size: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    animation: bounce 1.6s infinite;
    padding-bottom: 0.5rem;
 }

 .scroll-arrow:hover {
    color: var(--accent-dark);
    text-decoration: none;
 }

 @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
       transform: translateY(0);
    }

    40% {
       transform: translateY(6px);
    }

    60% {
       transform: translateY(3px);
    }
 }

 /* QR Bild */
 .qr {
    max-width: 220px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    margin-bottom: 0.5rem;
 }

 footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2rem;
    font-size: 0.8rem;
    color: var(--muted-text);
    text-align: center;
    border-top: 1px solid var(--border-color);
 }

 /* kleine Optimierung für schmale Screens */
 @media (max-width: 600px) {
    .section {
       padding: 1.5rem 1.25rem 3rem;
    }

    h1 {
       font-size: 1.4rem;
    }
 }