body{
  font-family: "Cutive Mono", monospace;
  font-weight: 400;

    background-image: url('papier.jpg');
    background-size: cover;          
    background-repeat: no-repeat;     
    background-position: center;
    background-attachment: fixed;     /* scrollt nicht mit */
    background-color: #f8f8f0;        
}





h1{
    margin margin-top: 20px ;
    font-size: 35px;
    text-align: center;
    color: #b4b534;

}

h2{
    margin-top: 5px ;
    font-size: 25px;
    text-align: center
}
h3{
font-family: "Cutive Mono", monospace;
font-size: 35px;
  font-weight: 400;
  font-style: normal;
  text-align: center
}

#logo{
  width: 100%;               


}

.navbar {
  padding: 10px;
  position: relative;
}

.header {
  position: relative;
  text-align: center;
  padding: 20px 20px 20px; 
}

/*Menü*/

.menu{
    z-index: 1000;
    position: fixed; /*nicht absolute weil sonst nicht immer sichtbar*/
    top:50px;
    right: 20px;
    background: #b4b534;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none; 
    flex-direction: column;
    align-items: center;
    transform: translateY(-10px);
    opacity: 0;
     transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.menu.show{
    display: flex; 
    transform: translateY(0);
    opacity: 0.95;
}

.menu-btn{
    position:fixed;
    top:20px;
    right:20px;
    background:#b4b534;
    opacity: 0.95;
    border: none; 
    font-size: 35px; 
    z-index: 1000;
    border-radius: 12px;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.menu-btn.active{
    color:#4c720e
}

.menu-btn:hover{
    transform: scale(1.04);
    color: #4c720e
}

.menu:hover{
    transform: scale(1.04);
}

.menu a{
    padding: 10px 20px;
    color: black;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    
}

.menu a:hover{
    background:  #4c720e;
}

/*Zurück-Button*/

.Zurück i{
  
    position: fixed; 
    z-index:1000;
    top: 20px;
    left: 20px; 
    display: flex; 
    flex-direction: column;
    align-items: center;
    transform: translateY(-10px);
    opacity: 0.95;
     transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    font-size: 35px;
    color:#b4b534;
}

.Zurück i:hover{
    transform: scale(1.04);
    color:#4c720e;
}





/*Bilderreihe oben*/

.bilderreihe_oben{
    display: flex;
  gap: 40px; 
  justify-content: center; 
  margin-top: 20px;
   margin-left: 200px;
  margin-right: 200px; 
}

.bilder_oben{
     display: flex;
  flex-direction: column;
  align-items: center; 
}

.bilder_oben img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px; 
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.bilder_oben img:hover{
    transform: scale(1.04);

}



.bilder_oben  p {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center
}

/*Infos*/
.ordnung_infos{
  justify-content: center; 
  margin-top: 20px;
  margin-left: 200px;
  margin-right: 200px; 
   display: grid;                    
  grid-template-columns: 100px 1fr; /* Erste Spalte: 100px (Schlagwort), zweite Spalte: Rest (Text) */
  column-gap: 20px;                 
  align-items: start; 
}

.infos_schlagwort p {
    font-size: 20px;
    font-weight: 700;
    color: #b4b534;
}

/*Linkleiste*/



.Linkleiste{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
      margin-left: 200px;
  margin-right: 200px; 
}

/*Fette Henne*/
.kontakt_element i{
    font-size: 35px;
    color: #b4b534;
}

.kontakt_element a i {
    transition: inherit;
    color: inherit; 
}

.kontakt_element a{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #b4b534;
    font-size: 25px;
    font-weight: 700;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}



.kontakt_element a:hover{
    color: #4c720e; 
    transform: scale(1.04);

}


/*Geschichte*/
.geschichte{
  justify-content: center; 
  margin-top: 20px;
  margin-left: 200px;
  margin-right: 200px; 
  }
  .geschichte img{
    width: 870px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  }

  .geschichte img:hover{
    transform: scale(1.04);
}

/*Das gewisse etwas*/
.etwas{
  justify-content: center; 
  margin-top: 20px;
  margin-left: 200px;
  margin-right: 200px; 
  }

  .etwas a{
    color: black;
    text-decoration: none;
    display: inline-block;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  }

  .etwas a:hover{
    transform: scale(1.04);
  }

  .events{
  justify-content: center; 
  margin-top: 20px;

   display: grid;                    
  grid-template-columns: 100px 1fr; /* Erste Spalte: 100px (Schlagwort), zweite Spalte: Rest (Text) */
  column-gap: 20px;                 
  align-items: start; 
}

.events_schlagwort p {
    font-size: 20px;
    font-weight: 700;
    color: #b4b534;
}



/*Bilder und Videos unten*/
.bilderreihe_unten{
    display: flex;
  gap: 40px; 
  justify-content: center; 
  margin-top: 40px;
   margin-left: 200px;
  margin-right: 200px; 
}

.videos_unten{
     display: flex;
  flex-direction: column;
  align-items: center; 
}


.bilder_unten{
    display: flex;
  flex-direction: column;
  align-items: center; 
}

.bilder_unten img {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease; 
}

.videos_unten video {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px; 
     transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.bilder_unten img:hover{
    transform: scale(1.04);
}

.videos_unten video:hover{
    transform: scale(1.04);
}


/*Footer*/



.footer{
    background: #b4b534;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    display: flex;
    gap: 80px;
    height: 100px;
    border-radius: 12px;
    opacity: 0.95;
     transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.footer:hover{
    transform: scale(1.04);
}

.footer a {
   text-decoration: none; 
   color: black;
    transition:  transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.footer a:hover{
    transform: scale(1.04);
    color:#4c720e
}


