html, body {
    margin: 0;
    padding: 0;
    padding-top: 150px;
    width: 100%;
    height: 100%;
    background-image: url("Background_White_.png");
    background-size: cover; /* oder 'cover' für volle Fläche */
    background-repeat: no-repeat;
    background-position: center top; /* oder 'center center' */
    background-color: rgba(255, 255, 255, 0.85);
    color: #4B2A14;
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    display: block;
    scroll-behavior: smooth;
    }

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    background-color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
}

header {
  position: fixed;               /* Header bleibt oben fixiert */  
  top: 0px;  
  left: 50%;
  transform: translateX(-49.35%);
  width: 1220px;
  height: 175px;
  display: flex;
}

.header-bg {
  background-image: url("Nature2.png");
  width: 1200px;
  height: 175px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  animation: zoomBg 15s ease-in-out infinite alternate;
 
}

@keyframes zoomBg {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}

.header-text {
  flex: 1;                        /* nimmt den verbleibenden Platz ein */
  font-size: clamp(24px, 5vw, 40px);               /* groß */
  font-weight: bold;              /* fett */
  color: #ffffff;                 /* dein Braunton */
  text-align: left;               /* linksbündig */
  position:relative;
  top: 110px;   /* hebt den Text höher */
  z-index: 3;
}

header img {
    position: absolute; /* Logo wird auf dem Hintergrund platziert */
    top: 0;
    right: 0;
    height: 175px; /* Höhe des Logos */
    max-width: 1225px;
    z-index: 2;/* Logo liegt über dem Bild */
    }

ul {
  list-style: none;   /* entfernt die Punkte */
  padding: 0;         /* entfernt den linken Einzug */
  margin: 0;          /* optional: entfernt Standardabstand */
}

/* HORIZONTALES MENÜ */
.menu {
    position: fixed;
    top: 175px;
    height: 20px;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
  }

.menu ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.3s;
}

.menu ul li a:hover {
    background-color: #ffffff;
    color: #616060;
    border-radius: 5px;
}

.menu-placeholder {
  height: 10px;         /* reserviert den Platz */
}

.webplayer-bar {
  background-color: #4B2A14;       /* brauner Balken */
  color: #fff;                  /* weiße Schrift */
  display: flex;                /* nebeneinander */
  align-items: center;          /* vertikal mittig */
  padding: 20px 18px;
  font-size: 1rem;
  cursor: pointer;
  position: fixed;   /* bleibt kleben */
  top: 215px;         /* Höhe des Headers */
  width: 1163px;
  z-index: 998;       /* über dem Content */
  border-radius: 10px;
}

.play-icon {
  font-size: 1.2rem;            /* Größe des Play-Zeichens */
  color: #fff;                  /* Play-Zeichen weiß */
  background-color: transparent;/* keine Füllung */
  border: 2px solid #fff;       /* weißer Rand */
  border-radius: 50%;           /* macht den Kreis */
  width: 40px;                  /* Kreisbreite */
  height: 40px;                 /* Kreishöhe */
  display: flex;                /* Flexbox aktivieren */
  align-items: center;          /* vertikal zentrieren */
  justify-content: center;      /* horizontal zentrieren */
  margin-right: 15px;           /* Abstand zum Text */

  padding-left: 4px; /* schiebt das Symbol etwas nach rechts */
}

@media (max-width: 1220px) {
  
  html, body {
    padding-top: 75px;   /* entfernt den Abstand */
  }
  
  header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 65px;
    background-image: none;
    background-color: #ffffff;
    display: flex;              /* Flexbox behalten */
    flex-direction: column;     /* Elemente untereinander */
    align-items: center;    /* linksbündig */
    justify-content: center;
    padding: 0px;              /* kleiner Innenabstand */
    border-radius: 0;
    overflow: visible;
    z-index: 9999;
  }

  .header-bg{
    width: 100%;
    height: 65px;
    display: none
  }

  header img {
    position: static;
    height: 100%;
    max-height: 65px;
    width: auto;
    display: block;
  }

  .header-text {
    text-align: left;
    margin: 0;                  /* direkt unter dem Logo */
    display: none;
  }

    .menu{
      position: static;
      top: auto;
      flex-direction: column;
      justify-content: flex-start;
      display: none;
    } 

    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .menu ul li {
        width: 100%;
        text-align: center;
    }

    .menu ul li a {
        display: block;
        padding: 12px;
    }
  h1, h2{
    
  }
  section {
  position: relative;  
  text-align: justify;   /* Text im Blocksatz */
  max-width: 90%;      /* maximale Textbreite */
  margin: 0 auto;        /* zentriert den Absatz */
  padding-left: 20px; 
}
.webplayer-bar {
  background-color: #4B2A14;       /* brauner Balken */
  color: #fff;                  /* weiße Schrift */
  display: flex;                /* nebeneinander */
  align-items: center;          /* vertikal mittig */
  padding: 5px 10px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;       /* über dem Content */
  border-radius: 0px;
  position: fixed;  /* oder static */
  top: 65px;           /* entfernt die feste Höhe */
  width: 100%;         /* passt sich der Bildschirmbreite an */
}

}

h1 {
  font-family: 'Arial', sans-serif; /* Schriftart */
  font-size: 28px;                  /* Schriftgröße */
  color: #4e4e4c;                   /* Schriftfarbe */
  margin-bottom: 20px;
}

h2 {
  font-family: 'Arial', sans-serif; /* Schriftart */
  font-size: 24px;                  /* Schriftgröße */
  color: #e7dacd;                   /* Schriftfarbe */
  text-align: center;
}


.content {
    position: fixed;
    color: #000000; 
    box-sizing: border-box;
}


.content p {
  margin-top: 0;        /* entfernt Standardabstand */
  padding-left: 10px;
}

p {
  line-height: 28px;   /* oder z. B. 24px */
}

.content h2 {
  margin-top: -10px;    /* hebt die Überschrift etwas nach oben */
}

footer {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    background-color: rgba(75, 42, 20, 0.995);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    text-decoration: none !important;
    border-radius: 10px; /* 10px = leicht abgerundet */
    overflow: hidden;
}

.footer-menu {
  list-style: none;       /* keine Punkte */
  padding: 0;
  margin: 0;
  text-align: left;     
  font-size: 0.7em;       /* Schrift etwas kleiner */
}

.footer-menu li {
  margin-bottom: 10px;    /* Abstand zwischen den Menüpunkten */
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;  /* keine Unterstreichung */
}

.footer-menu a:hover {
  text-decoration: underline; /* optional: Unterstreichung beim Hover */
}


.btn {
    background-color: rgba(255, 255, 255, 0.85);
    color: #4b2a14;
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Anpassen, falls nötig */
:root {
  --btn-bg-1: #0d6efd;
  --btn-bg-2: #0a58ca;
  --btn-text: #090000;
  --btn-outline: #0d6efd;
}

/* Overlay: schwarz transparent, zentriert per Flexbox */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;                 /* per JS -> .open */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

/* Karte mittig */
.modal-card {
  background: #ffffff;
  color: #111;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 20px 22px;
  text-align: center;
}

.modal-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.modal-card p {
  margin: 0 0 16px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Link dezent */
.modal-card a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Fallback-Button-Styles (falls deine Button-Klassen nicht übernommen werden) */
.btn-install {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--btn-bg-1), var(--btn-bg-2));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-install:hover { filter: brightness(1.05); }
.btn-install:active { transform: translateY(1px); }

.btn-install.btn-outline {
  background: transparent;
  color: var(--btn-outline);
  border: 2px solid var(--btn-outline);
  box-shadow: none;
}

.square-image {
  width: 169px !Important;
  height: 169px !Important;
  object-fit: cover;     /* Bild wird zugeschnitten, ohne Verzerrung */
  display: block;
  margin: 0 auto;        /* optional: zentriert das Bild */
  float: left;
  margin-right: 25px;

}

.image {
  width: 190px !Important;
  height: 130px !Important;
  object-fit: cover;     /* Bild wird zugeschnitten, ohne Verzerrung */
  display: block;
  margin: 0 auto;        /* optional: zentriert das Bild */
  float: left;
  margin-right: 25px;
  overflow: hidden;
}

.image2 {
  width: 190px !Important;
  height: 130px !Important;
  object-fit: contain;     /* Bild wird zugeschnitten, ohne Verzerrung */
  display: block;
  margin: 0 auto;        /* optional: zentriert das Bild */
  float: left;
}
.Autumn {
  padding: 30px 40px;
  height: 252px;
  color: #fff; /* Textfarbe für Kontrast */
  border-radius: 10px; /* 10px = leicht abgerundet */
  background-image: url("NewYear.png"); /* nur hier */
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: left;

  /* optional: Overlay für bessere Lesbarkeit */
  background-color: rgb(255, 255, 255);
  background-blend-mode: normal;
}

section {
  margin: 75px 0; /* Abstand zwischen den Bereichen */
  scroll-margin-top: 325px; /* Höhe von Header + Menü anpassen */
}


