@charset "UTF-8";
@font-face {
  font-family: Minecraft;
  src: url("./minecraft.otf") format("opentype");
}
body {
  background-image: url("../img/cobbled_deepslate.png");
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
  padding: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.emoji {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #3498db;
}

.card h2 {
  font-size: 1.2em;
  font-family: Minecraft;
  margin: 0.5em 0;
  color: #2c3e50;
}

.card p {
  font-size: 0.9em;
  font-family: Minecraft;
  color: #555;
}

.site-column {
  width: 80%;
  margin-left: 10%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.sub-infos {
  background-color: #3a3a3a;
}

.rounded-image {
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 10vw;
  height: 10vw;
  margin-left: auto;
  margin-right: auto;
}

text {
  font-family: Minecraft;
  font-size: 20px;
  color: white;
  text-align: center;
}

.rounded-image-container {
  width: 18vw;
  margin-top: -7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#imageSlider {
  height: 40vh;
  background-size: cover; /* Ähnlich wie object-fit: cover */
  background-position: center; /* Zentriert das Bild */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  margin-top: 8vh;
  transition: background-image 2s ease-in-out;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: right;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: #3a3a3a;
  color: white;
  border-left: 1px solid #a6a6a6;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}

nav ul li a:hover {
  background: #a6a6a6;
  color: #3a3a3a;
}

nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

nav ul li ul li {
  min-width: 190px;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #3a3a3a;
  height: 50px;
  width: 50px;
  padding-right: 15px;
}

.colum3 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 15px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }
  .rounded-image-container {
    width: 18vw;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .colum3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .rounded-image {
    border-radius: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  nav {
    width: 100%;
    padding: 50px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  margin-right: 10px;
  background: white;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 50px;
  background: #3a3a3a;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  margin: 0 auto;
}

.brand img {
  height: 50px;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 1.4em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  flex-flow: row;
  font-family: Minecraft;
  font-size: 20px;
}

.brand a,
.brand a:visited {
  color: #a6a6a6;
  font-family: Minecraft;
  text-decoration: none;
}

.form-container {
  max-width: 800px;
  margin: 2em auto;
  background: #a6a6a6;
  font-family: Minecraft;
  padding: 2em;
  border-radius: 8px;
  color: #2c3e50;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  margin-bottom: 1em;
}

.form-container label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
}

.form-container input[type=text],
.form-container textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  font-size: 1em;
}

.form-container textarea {
  height: 150px;
  resize: none;
  overflow-y: scroll;
}

.form-container .checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.form-container .checkbox-container input {
  margin-right: 0.5em;
}

.form-container button {
  background-color: #00aeff;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #2980b9;
}

.roundedModImages {
  border-radius: 10%;
  height: 2em;
}/*# sourceMappingURL=main.css.map */