@charset "utf-8";

/* Standart Formate reset */
* {
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.2vw;
}

body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: rgb(0,72,15);
/*  background: rgb(110,24,0); */
/*  background: linear-gradient(118deg, rgba(16,66,85,1) 7%, rgba(210,197,66,1) 84%); */
  color: white;
  font-family: "Helvetica", "Arial", sans-serif;
}
/* Container für den gesamten Inhalt */
.container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
/* HauptKontent în der mitte */
main {
  display: flex;
  flex-direction: column;
  width: 80%;
  
  
}
/* Abstand der Seite Links und Rechts */
.side {
  width: 10%;
}

/************************************ Logo Positionen ***************************************/

.Logos {
  display: flex;
  justify-content: space-between;
  align-items: center; /* aligns items vertically */
  margin-top: 2%;
  margin-bottom: 5%;
}

.NoLogo {
  margin-bottom: 2cm;
}

.Logo1 {
  flex: 0 0 15%; /* this means that the logo will be 15% of the container width, and won't grow or shrink */
}

.Logo2 {
  flex: 0 0 20%; /* this means that the logo will be 20% of the container width, and won't grow or shrink */
}

/* Hauptitel */
h1 {
  font-size: 3vw;
  text-align: center;
}

/* box um beide menus */
.menus {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top:2%;
  margin-bottom: 2%;
  justify-items: center;
  align-items: center;
}
/***************************************** Hauptmenu ************************************/
.menu {
  font-size: 1.2vw;
  display: flex;
  flex-direction: row;
  width: 60%;
  margin-left:20%;
  justify-content: space-between;
  align-self: flex-start;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: white;
  display: flex;
  padding: 5px;
}

.menu a:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: white;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

/********************************* Menu fuer Sprache **************************/
.menu2 {
  justify-content: flex-end;
  align-self: flex-end;
  margin-left: 10%;
  display: flex;
  flex-direction: row;
  width: 20%;
  height: auto;
  align-items: center;
}

/* Bilder von Flaggen */
.menu2 img {
  max-width: 100%;
  max-height: 100%;
  width: 2vw;
  height: auto;
  padding: 5px;
}

/****************************************** Bilder **************************************/


/* Panormabild */
.breitbild {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.5%;
}

.breitbild img {
  width: 100%;
  height: 100%;
}
.galery2 {
  display: flex;
  max-width: 100%;
  height: auto;
  justify-content: space-between;
  margin-bottom: 0.5%;
}

.galery2 img{
  display: flex;
  width: calc(50% - 0.2vw); /* adjust 10px to your desired space */
  height: auto;
/*  height: 550px; */
  object-fit: cover;
}

.galery2 img:not(:last-child) {
  margin-right: 0.2vw; /* adjust 20px to your desired space */
}

.galery3 {
  display: flex;
  max-width: 100%;
  height: auto;
  justify-content: space-between;
  margin-bottom: 0.5%;
}

.galery3 img{
  display: flex;
  width: calc(33% - 0.2vw); /* adjust 10px to your desired space */
  height: auto;
  object-fit: cover;
}

.galery3 img:not(:last-child) {
  margin-right: 0.2vw; /* adjust 20px to your desired space */
}

.BildMitte2 {
  margin-bottom: 0.5vw;
}

.kartentext {
    display:flex;
    justify-content: center;
    align-items: center;
}


.bildtext {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}
.bildtext2 {
  margin-bottom: 2vw;
}

/*************************** Alle Titel ***********************************************/

h2 {
  font-size: 2vw;
  text-align: center;
  color: white;
  margin-bottom: 3%;
}

/* Extra Information program umrandet */
.info {
  border: solid white;
  margin-top: 20px;
  padding: 10px;
  margin-left: 20%;
  margin-right: 20%;
  
}

.info p {
  width: 100%;
  font-size: 1vw;
  margin-bottom: 10px;
  padding: 5px;
}

/************************************************** Program Table ************************************************/
.program {
  display: flex;
  flex-direction: row;
  width: 90%;
  font-size: 1vw;
  margin-bottom: 2%;
  list-style: circle;
  flex-shrink: 1;
  border-bottom: 1px solid white;
  align-self: center;
}

.program2 {
  display: flex;
  flex-direction: row;
  width: 90%;
  font-size: 1vw;
  margin-bottom: 2%;
  list-style: circle;
  flex-shrink: 1;
  align-self: center;
}

/* Program Zeit */

.time {
  text-align: left;
  width: 10%;
}

/* Program Handlung */
.act {
  margin-left: 5%;
  width: 50%;
}
/* Program Ort */
.place {
  text-align: right;
  width: 15%;
}
/* Program Name von der Leitung  */
.what {
  font-size: 0.8vw;
  width: 25%;
  text-align: right;
}

/* Ortschaft vom Infotag und Anreise */
.ort {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

/* Text Bold machen */
.bold {
  font-weight: bold;
  font-size: 1.2vw;
  margin-top: 1%;
  margin-bottom: 1%;
}

.plan {
  display: flex;
  flex-direction: row;
}

/* Link styling bei Ort beschreibung */
.link {
display:flex;
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: white;
  text-decoration-thickness: 2px;
  opacity: 0.8;
  font-size: 1.2vw;
}

.bindestrich {
  margin-left: 5px;
  margin-right: 5px;
}

.googlemap {
	overflow: hidden;
	padding-bottom: 10px;
/*	height: 0; */
  margin-left: 0%;
  margin-right: 0%;

  }
  
 .googlemap iframe {
	margin-top: 3%;
	width: 100%;


  }

  
  #karte {
	display: flex;
	justify-content: center;
  margin-left: 25%;
    margin-right: 25%;
    width: 50%;
    margin-bottom: 0.5%;
  }
  
  #karte img {
	width: 100%;
  }

/* Trenn Linien */
.line {
  width: 100%;
  border-top: 1px solid white;
  margin-bottom: 2%;
  margin-top: 2%;
}

.line2 {
  width: 100%;
  border-top: 1px solid white;
  margin-bottom: 5%;
  margin-top: 5%;
}

.line3 {
  width: 100%;
  border-top: 1px solid white;
  margin-top: 5%;
}

.line4 {
  width: 100%;
  border-bottom: 1px solid white;
}

footer {
  height: 5vw;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

footer p {
  align-content: center;
  font-size: 0.8vw;
}





/************************** only for mobile *************************/

@media (max-width: 700px){

  body {
    font-size: 2.5vw;
  }

  p {
    font-size: 2.5vw;
  }

  .Logo2 {
    margin-right:2%;
  }
  

  /* HauptKontent în der mitte */
  main {
    display: flex;
    flex-direction: column;
    width: 92%;
    justify-content: space-between;
  }
  /* Abstand der Seite Links und Rechts */
  .side {
    width: 4%;
  }
  

  
  /* Hauptitel */
  h1 {
    font-size: 5vw;
    text-align: center;
  }
  

  /* Hauptmenu */
  .menu {
    font-size: 2vw;
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-left:0%;
    justify-content: space-between;
    align-self: flex-start;
    align-items: center;
  }
  
  /* Menu fuer Sprache */
  .menu2 {
    justify-content: flex-end;
    align-self: flex-end;
    margin-left: 10%;
    display: flex;
    flex-direction: row;
    width: 20%;
    height: auto;
    align-items: center;
   
  }
  
  .menu2 img {
    max-width: 100%;
    max-height: 100%;
    width: 4vw;
    height: auto;
    padding: 5px;
  }

  .breitbild{
    display:flex;
    flex-direction: column;
    width:100%;
    margin-bottom: 5px;;

  }

 .galery2 {
    display:flex;
    flex-direction: column;
    width:50%;
  }

  .galery2 img{
    display: flex;
    width: 100%;
    margin-bottom: 0.5vw;
  }
  
  .galery2 img:not(:last-child) {
    margin-right: 0.2vw; /* adjust 20px to your desired space */
  }
  
  .galery {
    display: none;
     object-fit: cover;
    height: 50vh;
 }
  

  
  /* Alle Titel */
  
  h2 {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 10%;
    margin-top: 5%;
  }

  #OrtAnchor{
    margin-bottom: 2%;
    margin-top: 2%;
  }
  
  #MenuAnchor{
    margin-bottom: 2%;
    margin-top: 2%;
  }
  
  /* Extra Information Umrandet */
  .info {
    margin-top: 20px;
    margin-left: 2%;
    margin-right: 2%;
    
  }
  
  .info p {
    width: 100%;
    font-size: 2.5vw;
    margin-bottom: 10px;
    line-height: 2;
  }
  
  /* Program Table */
.program {
  display: flex;
  flex-direction: row;
  width: 80%;
  font-size: 1vw;
  margin-bottom: 2%;
  list-style: circle;
  flex-shrink: 1;
  border-bottom: 1px solid white;
  align-self: center;
}

.program2 {
  display: flex;
  flex-direction: row;
  width: 80%;
  font-size: 1vw;
  margin-bottom: 2%;
  list-style: circle;
  flex-shrink: 1;
  align-self: center;
}

  .act {
    margin-left: 3%;
    width: 50%;
  }
  
  .place {
    text-align: right;
    width: 10%;
  }
  
  .what {
font-size: 1.5vw;
    width: 38%;
    text-align: right;
  }
  
  .bold {
    font-weight: bold;
    font-size: 2.5vw;
    margin-top: 1%;
    margin-bottom: 1%;
  }
  
  
  .link {
    text-decoration-line: underline;
    text-decoration-style: solid;
    color: white;
    text-decoration-thickness: 1px;
    opacity: 0.8;
    font-size: 2.5vw;
  }
  
  .bindestrich {
    margin-left: 5px;
    margin-right: 5px;
  }
  
  .googlemap {
    overflow: hidden;
    padding-bottom: 16.25%;
    height: 0;
    margin-bottom: 5%;
    margin-left: 2%;
  margin-right: 2%;
    }
    
    iframe {
    margin-top: 3%;
    width: 100%;
    }
    
    #karte {
    display: flex;
    justify-content: center;
    margin-left: 2%;
    margin-right: 2%;
    width: 96%;
    }
    
    #karte img {
    width: 100%;
    }
  
    .line3 {
      margin-bottom: 1vw;
      margin-top: 5vw;
    }

 .kartentext {
    justify-content: center;
    align-items: center;
 }

  footer {
    height: 10vw;
    display: flex;
    flex-direction: column;
  }
  
  footer p {
    align-content: center;
    font-size: 2vw;
  }
}