
/* Globale Formatierung #############################################################################################################*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414;
}

/*Link Interaktion  ############################################################################################################# */
a {
  color: #ffffff; 
  text-decoration: none; 
}

/* Link-Stile beim Hovern */
a:hover {
  color: #696969; 
  text-decoration: none; 
}

/* Besuchte Link-Stile */
a:visited {
  color: #ffffff;
  text-decoration: none; 
}

/* Header ###################################################################################################################### */
header {
    background-color: #242424;
    color: #ffffff;
    text-align: center;
    font-family: "Lucida Console", "Courier New", monospace;
    padding:2px;
}

@media (width <= 1000px) {
  header {
    font-size:30px;
  }
}
/* Navigationsmenü ############################################################################################################# */
.navbar ul {
  list-style-type: none;
  background-color: #2b2b2b;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  border: 1px solid #363636;
}

.navbar li {
  display: inline-block;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-align: center;
}

.navbar a:hover {
  background-color: #222222;
}

.unterstrichen {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 7px;
}

.menu-toggle {
  color: #242424;
  background-color: #242424;
}

/* Desktop-Version (größer als 1000px) */
@media (min-width: 1001px) {
  .menu-container {
    display: none; /* Versteckt den Container in der Desktop-Version */
  }
}


/* Mobile Ansicht: Verstecke die Navigation & füge das Hamburger-Menü hinzu */
@media (max-width: 1000px) {
  /* Flex-Container für Icon & Home */
  .menu-container {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    border: 2px solid #363636;
    position: relative;
    padding: 10px 20px;
  }

  /* Hamburger-Icon bleibt links */
  .menu-toggle {
    font-size: 60px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 5px 0px 5px 40px;
  }

  /* Home-Titel exakt in der Mitte der gesamten Navbar */
  .menu-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 45px;
    text-align: center;
    width: max-content;
  }

  /* Dropdown-Menü für Mobile Ansicht */
  .nav-links {
    font-size: 45px;
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2b2b2b;
    position: absolute;
    top: 150px; /* Etwas höher für besseren Abstand */
    left: 0;
    padding: 0;
    z-index: 1000; /* Stellt sicher, dass es über anderen Inhalten liegt */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    display: block;
    text-align: center;
    padding: 10px;
  }
}

/* Funktionalitäten ########################################################################################################################################################*/

.spacer1 {
    height: 15vw;
}

.spacer2 {
    height: 5vw;
}

.spacer3 {
    height: 2vw;
}

.spacer4 {
  height: 10px;
}

.spacer5 {
  height: 65vh;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:20px;
}

/* TEST ################################################################################################################################################################### */



/* Impressum ############################################################################################################################################################# */

.impressum{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:20px;
  font-size:10px;
}


/* HOME CSS STUFF ########################################################################################################################################################*/

.homebox {
    display: flex;
    align-items: center;
    width: 75vw;
    max-width: 1120px;
    padding: 40px 30px 40px 20px;
    background: #2b2b2b;
    border-radius: 24px;
    border: 2px solid #383838;
  }
  
  .homeboxbild {
    width: 28vw;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 30px;
    box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
    border: 2px solid #383838;
  }
  
  .homeboxh2 {
    color:#ffffff;
  }
  
  .homeboxh3 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
  }
  
  .homeboxp {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height:22px;
    text-align: left;
  }
  
  @media (width <= 1000px) {
    .homebox {
      margin: 0 40px;
      padding-left: 50px;
      padding-right: 50px;
      width: 100%;
      text-align: center;
      flex-direction: column;
      border: 4px solid #383838;
    }
  
    .homeboxp {
      font-size: 35px;
      color: #ffffff;
      margin-bottom: 24px;
      line-height: 35px;
      text-align: left;
    }

    .homeboxh2 {
      margin-right: 0;
      font-size: 26px;
    }
  
    .homeboxbild {
      margin: 0px 0 30px 0;
      width: 100%;
      height:auto;
      max-width: 1000px;
    }

    .image2 {
      margin: 10px;
      width: 95vw;
    }
  }


.container3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height:10vh;
    color:#ffffff;
}

.gallery2 {
    
    margin-right:310px;
    margin-left: 310px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image2 {
    margin: 10px;
    width: 95vw;
    max-width: 378px;
}

.linkbutton {
    
  text-align: center;
  background-color: #2b2b2b; 
  border: 4px solid #383838;
  width: 60vw;
  max-width: 400px;
  height: 7vh;
  font-size: 22px;
  color:#ffffff;
  border-radius: 24px;
  
}


.linkbutton:hover {
  background-color: #131313; 
}

@media (width <= 1000px) {
  .image2 {
    margin: 10px;
    max-width: 90vw;
  }

  .linkbutton {
    
    text-align: center;
    background-color: #2b2b2b; 
    border: 4px solid #383838;
    max-width: 95vw;
    height: 4vh;
    font-size: 38px;
    color:#ffffff;
    border-radius: 24px;
    
  }
  
}

@media (width < 1600px) {

  .linkbutton {
    
    text-align: center;
    background-color: #2b2b2b; 
    border: 4px solid #383838;
    max-width: 95vw;
    height: 8vh;
    font-size: 38px;
    color:#ffffff;
    border-radius: 24px;
    
  }
}
/* Artwork CSS ##################################################################################################################################################*/

.artworkcard {
  display: flex;
  align-items: center;
  width: 85vw;
  max-width: 1150px;
  padding: 40px 30px 40px 20px;
  background: #2b2b2b;;
  border-radius: 24px;
  border: 2px solid #383838;
  justify-content: center;
}

@media (width <= 1000px) {
  .artworkcard {
    display: flex;
    align-items: center;
    width: 85vw;
    max-width: 1150px;
    padding: 40px 30px 40px 20px;
    background: #2b2b2b;;
    border-radius: 24px;
    border: 4px solid #383838;
    justify-content: center;
  }
  
}

.artbox {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 8px;
}

.gallery3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  width: 90vw;
}

.image {
    width: 90vw;
    max-width: 580px;
    cursor: pointer; 
}

.image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.image img:hover {
    transform: scale(1.1);
}

@media (width <= 1000px) {
  .image {
    width:900px;
    max-width: 95vw;
    height:auto;
    cursor: pointer; 
  }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    padding-top: 10px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal img {
    max-width: 80vw;
    height: auto;
    width: 100vw;
    margin: auto;
    display: block;
}

.modal .close {
  color: rgb(190, 190, 190);
  font-size: 60px; /* Verdoppelt die Schriftgröße auf 60px */
  font-weight: bold;
  position: absolute;
  top: -5px;
  right: 10px;
  cursor: pointer;
}
#caption {
    color: white;
    text-align: center;
    margin: 10px 0;
    display: block;
}

#modal img {
    max-height: 95vh;
    width: auto;
    display: block;
    margin: auto;
}

#caption {
  color: #ffffff;
  text-align: left; /* Ändere die Ausrichtung auf links */
  margin: 10px; /* Füge einen Außenabstand hinzu */
  position: absolute;
  top: 10px; /* Abstand vom oberen Rand */
  left: 10px; /* Abstand vom linken Rand */
}

/* Stil für die Modal-Navigation */
.modal-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
}

.modal-prev,
.modal-next {
  font-size: 50px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.modal-prev {
  left: 0.3em; /* Positioniere die linke Pfeil 10px vom linken Rand */
}

.modal-next {
  right: 0.3em; /* Positioniere die rechte Pfeil 10px vom rechten Rand */
}

@media (width <= 1000px) {
  .modal img {
    height: auto;
    max-width: 95vw;
    margin: auto;
    display: block;
}

.modal .close {
  color: rgb(190, 190, 190);
  font-size: 100px; /* Verdoppelt die Schriftgröße auf 60px */
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 10px;
  cursor: pointer;
}

.modal-prev,
.modal-next {
  font-size: 100px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#caption {
  color: #ffffff;
  text-align: left; /* Ändere die Ausrichtung auf links */
  margin: 10px; /* Füge einen Außenabstand hinzu */
  position: absolute;
  top: 10px; /* Abstand vom oberen Rand */
  left: 10px; /* Abstand vom linken Rand */
  font-size: 50px;
}

}

/* Projects Stuff ############################################################################################################################# */

.card {
    display: flex;
    align-items: center;
    width: 80vw;
    max-width: 650px;
    padding: 40px 30px 40px 20px;
    background: #2b2b2b;;
    border-radius: 24px;
    border: 2px solid #383838;
  }

  

  .card img {
    max-width: 200px;
    width: 28vw;
    height: 200px;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 30px;
    box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
    border: 2px solid #383838;
  }

  .card img {
    max-width: 200px;
    width: 28vw;
    height: 200px;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 30px;
    box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
    border: 2px solid #383838;
  }
  
  .card h2 {
    font-size: 22px;
    margin-right: 30px;
    color: #ffffff;
  }

  .card h2:hover {
    color: #bdbdbd;
  }
  
  .card h3 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .card p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
  }
  
  .card button {
    border: 0;
    background:#1b1b1b;
    color: #ffffff;
    font-family: inherit;
    padding: 16px 26px;
    font-size: 16px;
    border: 2px solid;
    border-color: #383838;
    border-radius: 40px;
  }
  
  .card button:hover {
    background:#111111; 
    color: #8f8f8f;
  }

  @media (width <= 1000px) {
    .card {
      display: flex;
      align-items: center;
      width: 1000px;
      max-width: 85vw;
      padding: 40px 30px 40px 20px;
      background: #2b2b2b;;
      border-radius: 24px;
      border: 4px solid #383838;
    }

    .card h2 {
      font-size: 35px;
      margin-right: 30px;
      color: #ffffff;
    }
  
    .card img {
      max-width: 200px;
      width: 28vw;
      height: 200px;
      object-fit: cover;
      margin-left: 30px;
      margin-right: 30px;
      box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
      border: 2px solid #383838;
    }
    
    .card button {
      border: 0;
      background:#1b1b1b;
      color: #ffffff;
      font-family: inherit;
      padding: 16px 26px;
      font-size: 25px;
      border: 4px solid;
      border-color: #383838;
      border-radius: 40px;
    }
    
  }

  @media (width <= 740px) {
    .card {
      margin: 0 40px;
      padding-left: 50px;
      padding-right: 50px;
      width: 100%;
      text-align: center;
      flex-direction: column;
    }

    .card h2 {
      margin-right: 0;
      font-size: 26px;
    }
  
    .card img {
      margin: -10px 0 30px 0;
      width: 50vw;
      height: 20vh;
      max-width: 1000px;
    }
  }


/* Projekt Sub Seiten Inhalte ####################################################################################################################### */

.projektheader {
    text-align: left;
    color:#ffffff;
    border: 2px solid #383838;
    width: 90vw;
    max-width: 500px;
    height: auto;
    line-height: 2px;
    background-color: #2b2b2b;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 10px;
    padding:15px;
    border-radius: 24px;
}

.ueberschrift3 {
    margin-bottom: 30px;
}

/* Event Stuff ######################################################################################################################################### */

.eventcard {
  display: flex;
  align-items: center;
  width: 80vw;
  max-width: 850px;
  padding: 40px 30px 40px 20px;
  background: #2b2b2b;;
  border-radius: 24px;
  border: 2px solid #383838;
  justify-content: center;
}

.eventcard2 {
  display: flex;
  align-items: center;
  width: 85vw;
  max-width: 1150px;
  padding: 40px 30px 40px 20px;
  background: #2b2b2b;;
  border-radius: 24px;
  border: 2px solid #383838;
  justify-content: center;
}

.eventcardheader {
color: #ffffff;
text-align: center;
}

.eventcardtextueberschrift {
  color: #ffffff;
  text-align: center;
  text-decoration:underline;
  text-decoration-color:#ffffff;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px
  }

.eventcardtext {
  color: #ffffff;
  }

.eventcardtext2 {
color: #ffffff;
text-align: justify;
}

/* Month header */
.kalenderheader {
  padding: 30px;
  max-width: 1000px;
  background: #242424;
  text-align: center;
  border: 1px solid #363636;
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center; /* Zentriere den Text vertikal */
  justify-content: center; /* Zentriere den Text horizontal */
  line-height: 25px;
}

.kalenderheader ul {
  text-align: center; /* Zentriere den Text innerhalb des ul-Elements */
  
}

.kalender {
  width: 900px;
  background: #ffffff;
  
  color: #000000;
}

.kalendertabelle {
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
  border: 1px solid #363636;
}

td {
  border: 1px solid black;
  padding: 8px;
  text-align: center;
  background-color: #6d6c6c;
  color:#ffffff;
}

th {
  padding: 8px;
  text-align: center;
  background-color: #2b2b2b;
  color:#ffffff;
  
}

.legendenbox {
  display: inline-block;
  width: 20px; /* Breite der Box */
  height: 20px; /* Höhe der Box */
  background-color: #0ac032;
  margin-right: 5px; /* Optional: Abstand zwischen der Box und dem Text */
  vertical-align: middle;
}

.legendenbox2 {
  display: inline-block;
  width: 20px; /* Breite der Box */
  height: 20px; /* Höhe der Box */
  background-color: #ee0d0d;
  margin-right: 5px; /* Optional: Abstand zwischen der Box und dem Text */
  vertical-align: middle;
}

.legendenbox3 {
  display: inline-block;
  width: 20px; /* Breite der Box */
  height: 20px; /* Höhe der Box */
  background-color: #0d7cd6;
  margin-right: 5px; /* Optional: Abstand zwischen der Box und dem Text */
  vertical-align: middle;
}

.frei {
padding: 5px;
background-color: #079125;
}

.nichtfrei {
  padding: 5px;
  background-color: #c71010;
}

.event {
  padding: 5px;
  background-color: #0969b8;
}

@media (width <= 1000px) {
  .eventcard {
    display: flex;
    align-items: center;
    width: 900px;
    max-width: 85vw;
    padding: 40px 30px 40px 20px;
    background: #2b2b2b;;
    border-radius: 24px;
    border: 4px solid #383838;
    justify-content: center;
  }

  .eventcardtext h2 {
    font-size: 40px;
  }

  .eventcardtext p {
      font-size: 35px;
  }

  .kalenderheader {
  font-size: 32px;
  line-height: 38px;
  }

  th {
    font-size: 25px;
  }

  td {
    font-size: 25px;
  }

}

@media screen and (max-width: 768px) {
  .eventcard {
    width: 75%;
    padding: 20px;
  }

  .kalender {
    width: 100%;
    overflow-x: auto;
  }

  .kalenderheader {
    font-size: 38px;
  }

  .kalendertabelle {
    font-size: 28px;
  }
}
/* KontaKt Stuff ##################################################################################################################################### */

.contactheader {
    text-align: center;
    color:#ffffff;
    border: 4px solid #383838;
    width: 80vw;
    max-width: 500px;
    max-height: 50px;
    padding: 10px;
    background-color: #2b2b2b;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 24px;
    text-decoration:underline;
    text-decoration-color:#ffffff;
    text-underline-offset: 7px;
    text-decoration-thickness: 1px
}

.contactheader2 {
  text-align: center;
  color:#ffffff;
  border: 4px solid #383838;
  width: 80vw;
  max-width: 500px;
  max-height: 50px;
  padding: 10px;
  background-color: #2b2b2b;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 24px;
}

.contactheader2:hover {
  background-color: #131313; 
}

@media (width <= 1000px) {
  .contactheader {
    width: 1000px;
    height: 100px;
    max-width: 90vw;
    max-height: 8vh;
    text-align: center;
    line-height: 100px;
    font-size: 36px;
  }

  .contactheader2 {
    width: 1000px;
    height: 100px;
    max-width: 90vw;
    max-height: 10vh;
    text-align: center;
    line-height: 100px;
    font-size: 36px;
}
}



/* Footer-Stil */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
