p {
    font-size: larger;
    font-family: 'Work Sans', sans-serif;
}
h1{
    font-family: 'Oswald', sans-serif;
}


html {
    scroll-behavior: smooth;
}


@media only screen and (max-width: 36rem) {
  .burger {
    display: block !important; 
    visibility: visible !important;
  }

  .menu {
    display: block; 
  }
}


/* Header Oben */

:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 96%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 9%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(5, 71%, 39%);
  --color-red-100: hsl(0, 61%, 39%);
  --color-red-200: hsl(349, 100%, 50%);
  --color-red-300: hsl(155, 62%, 37%);
  --color-red-400: hsl(0, 0%, 100%);
  --color-red-500: hsl(142, 100%, 74%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  align-content: center;
  height: auto;
  padding: 1rem 2rem;
  background-color: #ffce74;
}

.brand img {
   height: 100px;
   width: auto;
   display: block;
    object-fit: contain;
}



.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 3rem 2rem;
  background: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.45s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: inherit;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  text-transform: uppercase;
  color: var(--color-black-500);
  transition: all 0.35s ease-in-out;
}

.menu-link:hover {
  outline: none;
  color: var(--color-red-400);
}

@media only screen and (min-width: 36rem) {
  .menu {
    position: relative;
    justify-self: end;
    top: 0;
    left: inherit;
    width: auto;
    height: auto;
    padding-block: 0;
    background: none;
    box-shadow: none;
    transition: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .burger {
    display: none;
    visibility: hidden;
  }
}












/* Bild über uns */




/* --- FULLSCREEN HERO LOGIK --- */
/* --- FULLSCREEN HERO --- */
/* --- FULLSCREEN PARALLAX HERO --- */
.hero-container {
    width: 100%;
    /* Berechnet die Höhe: 100% vom Bildschirm MINUS die Header-Höhe */
    height: calc(100vh - 80px); 
    
    /* Schiebt den Container unter den fixierten Header */
    margin-top: 80px; 
    
    position: relative;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/titelbild.jpeg');
    
    /* 'fixed' bleibt für den Effekt, aber wir zentrieren es */
    background-attachment: fixed; 
    background-position: center top; /* 'top' sorgt dafür, dass dein Kopf oben nicht abgeschnitten wird */
    background-repeat: no-repeat;
    background-size: cover; 
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); 
}


.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(165, 42, 42, 0.6); 
    border-radius: 50%;
    transition: background 0.3s ease;
}

.scroll-down-btn:hover {
    background: rgba(165, 42, 42, 0.9);
}

.arrow-down {
    width: 18px;
    height: 18px;
    border-right: 3px solid #ffce74; /* Dein Gelb-Ton */
    border-bottom: 3px solid #ffce74;
    transform: rotate(45deg);
    margin-top: -5px; /* Optische Zentrierung */
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(10px) rotate(45deg); }
    60% { transform: translateY(5px) rotate(45deg); }
}


#ueber-uns-inhalt {
    scroll-margin-top: 80px; 
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .parallax-bg {
        /* WICHTIG: fixed Hintergrundbilder funktionieren auf iOS/Handys oft nicht gut */
        /* 'scroll' ist auf dem Handy flüssiger */
        background-attachment: scroll; 
    }
    
    .hero-container {
        height: 85vh; /* Etwas kürzer auf Handys, damit man merkt, dass es weitergeht */
    }
}





/* text über valerian */




/* --- SEKTION: ÜBER MICH (ROT) --- */

.valerian-section {
  background-color: brown;
  width: 100%;
  position: relative;
  overflow: hidden; 
  padding: 60px;
}

.valerian-content-wrapper {
  max-width: 1100px;         
  margin: 0 auto;            
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
  gap: 60px; 
  padding: 0 40px;
  position: relative;        
}

.content-left {
  flex: 1;
  padding-top: 10px;
}

.content-left h1 {
  font-size: 3.5rem; 
  margin-bottom: 25px;
  color: #FFFAE6; 
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-left p {
  line-height: 1.8; 
  font-size: 1.2rem;
  color: rgba(255, 250, 230, 0.9); 
  max-width: 650px;
  font-weight: 300; 
}

.valerian-section .image-right {
  flex: 0 0 auto;
}

.valerian-section .image-right img {
  width: 100%;
  max-width: 350px; 
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  display: block;
  box-shadow: var(--shadow-large);
  transition: transform 0.4s ease;
}




/* --- RESPONSIVE OPTIMIERUNG (Mobile Fix) --- */

@media (max-width: 850px) {
  .valerian-section {
    padding: 60px 20px;
  }

  .valerian-content-wrapper {
    flex-direction: column; /* Stapelt Text und Bild */
    align-items: center;    /* Zentriert den gesamten Inhalt */
    text-align: center;     /* Zentriert den Text */
    gap: 50px;
  }

  .content-left p {
    margin: 0 auto; 
    font-size: 1.1rem;
  }

  .valerian-section .image-right {
    width: 100%;            /* Container nutzt volle Breite */
    display: flex;
    justify-content: center; /* Bild im Container mittig */
  }

  .valerian-section .image-right img {
    max-width: 300px;       /* Bildgröße auf Handy */
    margin: 0 auto;         /* Zusätzliche Absicherung für Zentrierung */
  }

 
}

/* Der Traktor */
#traktor {
  position: absolute;
  bottom: -60px;  
  left: -250px;   
  width: 115px;   
  height: auto;
  z-index: 10;   
  transition: transform 0.1s linear; 
}


@media (max-width: 850px) {
  /* ... deine anderen Mobile-Styles (zentriertes Bild etc.) ... */

  #traktor {
    display: block; /* Falls dort noch 'none' stand, bitte zu 'block' ändern */
    bottom: 10px;   /* Etwas höher, damit er auf kleinen Bildschirmen nicht verschwindet */
    width: 80px;    /* Etwas kleiner für das Handy-Display */
  }
}
/* --- RESPONSIVE OPTIMIERUNG FÜR ÜBER MICH --- */

@media (max-width: 850px) {
  .valerian-section {
    padding: 60px 20px;
  }

  .valerian-content-wrapper {
    flex-direction: column; /* Stapelt Text und Bild */
    text-align: center;
    gap: 40px;
  }

  .content-left p {
    margin: 0 auto; /* Zentriert den Textblock */
  }

  .valerian-section .image-right img {
    max-width: 280px; /* Etwas kleiner auf Handys */
    margin: 0 auto;
  }

  #traktor {
    display: none; /* Traktor auf Mobile ausblenden, um Überlappungen zu vermeiden */
  }
}


/* youtube video */

.video-section-container {
  width: 100%;

  padding: 80px 20px; 
  
  display: flex;
  justify-content: center; 
  align-items: center;     
  
  /* Hintergrundbild */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('img/wald.jpg'); 
  background-size: cover;
  background-position: center;
  
  background-attachment: scroll; 
  background-repeat: no-repeat;
  
  min-height: 400px; 
}

.video-inner-wrapper {
  width: 100%;
  max-width: 800px; 
  margin: 0 auto;
}

.video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



/* auftrite */




.auftritte-section {
  background-color: #ffce74; 
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.auftritte-wrapper {
  max-width: 1200px; 
  width: 100%;
  display: flex;
  align-items: stretch; 
  gap: 60px;
}

.auftritte-content {
  flex: 1; 
  min-width: 300px;
}


.auftritte-section .image-right {
  flex: 2; 
  display: flex;
}

.auftritte-section .image-right .rounded-img {
  max-width: none;    
  width: 100%;
  height: 100%;
  object-fit: cover;  
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}


.section-title {
  color: brown;
  margin-bottom: 30px;
  font-size: 2.5rem;
}



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

.auftritte-liste a {
  display: block; 
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}

.auftritte-liste li {
 
  padding: 20px 25px 20px 0; 
  border-bottom: 1px solid rgba(165, 42, 42, 0.2);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}


.auftritte-liste a:hover li {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.01);
  padding-left: 15px; 
  border-bottom-color: brown;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.auftritte-liste a:hover .datum {
  color: #8B4513; 
}

.datum {
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  color: brown;
  font-size: 1.3rem;
}

.ort {
  font-family: 'Work Sans', sans-serif;
  color: #333;
}

/* tour mit moritz */


/* .tour-section {
  background-color: #fff;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.tour-wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}


.tour-section .rounded-img {
  max-width: 400px; 
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}

.tour-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background-color: brown;
  color: white !important;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.tour-button:hover {
  transform: scale(1.05);
  background-color: #8B4513;
} */

/* Mobile Optimierung */
/* @media (max-width: 768px) {
  .auftritte-wrapper, .tour-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .auftritte-wrapper .image-right {
    order: -1; 
  }
} */




/*  presse */


.presse-section {
  background-color:brown; 
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}

.presse-wrapper {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.presse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
  margin-top: 50px;
}

.presse-card {
  background: var(--color-white-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.presse-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.presse-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.presse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presse-info {
  padding: 30px;
  text-align: left;
}

.zeitung-name {
  color: brown;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.presse-info h3 {
  font-family: 'Oswald', sans-serif;
  margin: 10px 0 20px 0;
  font-size: 1.5rem;
  color: var(--color-black-500);
  line-height: 1.2;
}

.presse-link {
  color: brown;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.presse-link:hover {
  color: #8B4513;
  text-decoration: underline;
}


/* --- RESPONSIVE PRESSE --- */

@media (max-width: 768px) {
  .presse-grid {
    grid-template-columns: 1fr; /* 1 Spalte auf Mobile */
  }
  
  .presse-section {
    padding: 60px 20px;
  }
}


/*  kontakt */
.kontakt-section {
  background-color: #ffce74; 
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.kontakt-wrapper {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.kontakt-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  gap: 15px;
}

.kontakt-form input, 
.kontakt-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  background-color: white;
  transition: border-color 0.3s;
}

.kontakt-form input:focus, 
.kontakt-form textarea:focus {
  outline: none;
  border-color: brown;
}

.send-button {
  background-color: brown;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  align-self: center; 
  margin-top: 10px;
}

.send-button:hover {
  background-color: #8B4513;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
  }
}

/* footer */



.main-footer {
  background-color: #fff;
  padding: 60px 20px 30px;
  border-top: 2px solid #ffce74; 
  font-family: 'Work Sans', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Instagramm */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-bottom: 40px;
}

.insta-icon {
  width: 50px; 
  height: auto;
}

.insta-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: brown;
  text-transform: uppercase;
}

.insta-link:hover {
  transform: scale(1.1); 
}


.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-links a {
  color: #666;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: brown;
}

.copyright {
  font-size: 0.8rem;
  color: #aaa;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
  .insta-text {
    font-size: 1.2rem;
  }
}

.gossliwil{
  color: #ffce74;
  
}