html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1f1f1f;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: white;
  text-decoration: none;
}

.error {
  color: red;
}

.success {
  color: greenyellow;
  text-align: center;
  font-weight: bold;
}

/*------------- Global Grid ---------------*/

.grid {
  display: grid;
  grid-template-columns: 100vw;
  grid-template-rows: minmax(100px, auto);
}

/*------------- Global Navigation ---------------*/

.navigation {
  display: flex;
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 90px;
  align-items: center;
  /*border-bottom: 1px solid rgb(45, 21, 110);
  color: rgb(45, 21, 110);*/
  z-index: 9999;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  background: rgb(12, 10, 62);
  background: linear-gradient(
    90deg,
    rgba(12, 10, 62, 1) 9%,
    rgba(91, 10, 141, 1) 50%,
    rgba(12, 10, 62, 1) 91%
  );
}

.innerNav {
  width: 1366px;
  margin: 0 auto;
  display: flex;
  height: 100px;
  align-items: center;
}

.navigation .logo {
  flex: 2;
  height: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo .imgContainer {
  height: 100%;
  width: auto;
  margin-left: 6vw;
}

.logo img {
  display: inline-block;
  width: auto;
  height: 100%;
}

/*------------- Desktop Navigation ---------------*/

.navigation .menu {
  flex: 3;
  display: none;
  height: 100%;
  text-align: right;
  padding-right: 1rem;
}

.menu a {
  color: #fada73;
  text-decoration: none;
}

.menu a:hover {
  color: #fada73;
  text-decoration: none;
}

.menuul {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.menuul .menuli {
  list-style: none;
  height: 90px;
  line-height: 100px;
  padding: 0 1rem;
}

.menuli a {
  height: 100%;
}

.menuli:hover {
  background: rgba(0, 0, 0, 0.2);
}

/*------------- Desktop Navigation END ---------------*/

/*------------- Mobile Navigation ---------------*/

.navigation .toggle {
  flex: 1;
  padding-right: 6vw;
  right: 0;
  cursor: pointer;
  z-index: 2;
}

.toggle .toggleContainer {
  display: inline-block;
}

.momenu {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  height: 89vh;
  top: 90px;
  color: white;
  padding: 0;
  background-color: rgba(34, 16, 75, 1);
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-200px);
  z-index: 9998;
}

.momenu.active {
  display: flex;
  transition: 0.5s;
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}

.momenu .momenul {
  margin-top: 5vh;
  padding: 0;
}

.momenu .momenli {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  font-size: 2rem;
  width: 100%;
  height: 4rem;
  list-style: none;
  text-align: center;
  padding: 2rem 0;
  box-sizing: border-box;
}

.momenu .momenli:hover {
  background-color: rgba(5, 5, 5, 0.4);
}

.momenli a {
  text-decoration: none;
  color: white;
}

/* Mobile Navigation Toggle Animation */

.navigation .toggle .lines {
  width: 40px;
  height: 3px;
  margin: 8px 0;
  background-color: rgb(255, 205, 0);
  border-radius: 3px;
  transition: 0.5s;
  display: block;
}

.navigation .toggle.active .lines:nth-child(1) {
  transform: rotateY(180deg) rotateZ(-45deg) translate(-10px, 10px);
}

.navigation .toggle.active .lines:nth-child(2) {
  transform: translateX(-50px);
  opacity: 0;
}

.navigation .toggle.active .lines:nth-child(3) {
  transform: rotateY(180deg) rotateZ(45deg) translate(-10px, -10px);
}

/* Mobile Navigation Animation End*/

/*------------- Mobile Navigation END ---------------
#####################################################
#####################################################
####################################################*/
/*------------- Content Section ---------------*/

.backgrIMG {
  display: flex;
  width: 100%;
  height: 300px;
  background-image: url(./bilder/casino.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.backgrIMG img {
  width: 100%;
  height: 100%;
}

.nameContainer {
  display: flex;
  width: 100vw;
  height: 50px;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: #1f1f1f;
}

.nameContainer .nameTitle {
  color: #ffe758;
  font-size: 1.5rem;
  font-weight: bold;
}

.ctheaderText {
  color: #fef9b6;
  font-size: 1.1rem !important;
}

.content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100vw;
  min-height: 10vh;
  max-width: 1366px;
  margin: 0 auto;
}

#kontaktformular {
  background-color: #323131;
}

.content a {
  color: white;
  text-decoration: none;
}

.content a:hover {
  color: white;
  text-decoration: none;
}

.content a:focus {
  color: white;
  text-decoration: none;
}

#sectionHeader {
  margin-top: 50px;
}

.ctheader {
  display: flex;
  width: 100vw;
  min-height: 50px;
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  background: rgb(133, 0, 92);
  background: linear-gradient(
    90deg,
    rgba(133, 0, 92, 1) 0%,
    rgba(201, 0, 0, 1) 100%
  );
}

.cardContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.ctCard {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  min-height: 5vh;
  margin-bottom: 30px;
  transition: 0.5s;
  border: 10px solid #4e4e4e;
}

.noborder {
  border: none !important;
}

#jobCard {
  margin: 0 10px;
}

.cardHeader {
  color: #fef9b6;
  padding: 1rem 1rem;
  background-color: #4e4e4e;
  font-size: 1.5rem;
}

.cardDescription {
  flex: 5;
  background-color: #353535;
  padding: 1rem;
  font-size: 1.1rem;
  color: #c2c2c2;
}

.cardDescription pre {
  padding: 0;
  margin: 0;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: pre-line;
}

.ctCardMap {
  display: flex;
  width: 100%;
  height: 250px;
}

#budingenmap {
  background-image: url(./bilder/budingenmap.jpg);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}

#florstadtmap {
  background-image: url(./bilder/florstadtmap.jpg);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}

#dietzenbachmap {
  background-image: url(./bilder/dietzenbachmap.jpg);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}

.ctCardTitle {
  display: flex;
  width: 100%;
  height: 50px;
  color: rgba(64, 9, 121, 1);
  justify-content: center;
  text-align: center;
  background-color: rgb(223, 222, 222);
}

.ctCardTitleText {
  display: flex;
  height: 100%;
  color: rgba(64, 9, 121, 1);
  text-align: center;
  align-items: center;
}

.ctCardDesc {
  flex-basis: 100%;
  min-height: 60px;
  background-color: rgb(223, 222, 222);
  padding: 10px;
  text-align: center;
  color: black;
}

.routeBildContainer {
  display: flex;
  width: 100%;
  height: 50px;
  flex-direction: row;
  align-items: center;
}

.route {
  flex: 1;
  height: 50px;
  background-color: #2e2794;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
}

.route img {
  width: 100%;
  height: 50px;
}

.route a {
  color: white;
}

.gallery {
  flex: 1;
  height: 50px;
  background-color: #7735a0;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
}

.gallery img {
  width: 100%;
  height: 50px;
  color: white;
}

.gallery a {
  color: white;
}

/*----------------------
------Job Page ---------
-------------------------*/

.ctJob {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.ctJobHead {
  display: flex;
  width: 100%;
  height: 60px;
  padding: 1rem;
  background-color: rgb(228, 228, 228);
  align-items: center;
}

.ctJobHeadText {
  text-align: center;
  font-weight: bold;
  color: rgba(64, 9, 121, 1);
}

.ctJobDesc {
  min-height: 400px;
  padding: 1rem;
}

/*----------------------
------Job Page END---------
-------------------------*/

/*----------------------
------Kontakt Page ---------
-------------------------*/

#contactCard {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  height: auto;
  background-color: #323131;
  z-index: 2;
  margin-bottom: 50px;
  -webkit-appearance: none;
}

.formContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#kontaktformular {
  flex: 5;
  color: #c2c2c2;
  width: 90%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

#kontaktformular input {
  padding: 1.1rem;
  background-color: #bdbdbd;
  border: none;
}

textarea {
  background-color: #bdbdbd;
  padding: 20px;
  resize: vertical;
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

input[type="submit"] {
  background-color: #00c0d4 !important;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-appearance: none;
}

#kontaktformular label {
  padding: 10px;
}

#kontaktdetails {
  flex: 2;
  width: 90%;
  min-height: 300px;
  color: #c2c2c2;
  font-size: 1.1rem;
  border-top: solid 2px #c2c2c2;
  padding: 2rem;
}

#kontaktdetails h3 {
  margin: 0;
  padding: 0;
}

#impressum {
  width: 95%;
  margin: 0 auto;
}

#datenschutz {
  width: 95%;
  margin: 0 auto;
}

#datenschutz a {
  white-space: pre-wrap; /* CSS3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}

#datenschutz h1 {
  font-size: 1.7rem;
}

#datenschutz h2 {
  font-size: 1.4rem;
}

/*----------------------
------Kontakt Page END ---------
-------------------------*/

/*
.content .cthead {
  grid-area: 1 / 4 span;
  height: 10vh;
  background-image: url(bilder/casino.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
*/

.secTitle {
  display: flex;
  text-align: center;
  min-height: 50px;
  align-items: center;
  background-color: rgb(211, 211, 211);
  background-repeat: none;
  background-size: cover;
}

.secText {
  flex: 1;
}

.standortContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 5px;
}

.standortCard {
  display: flex;
  height: 70px;
  flex-direction: row;
  align-items: center;
  margin: 5px 0px;
  font-weight: bold;
  color: gray;
  background-color: white;
}

.stadt {
  flex: 3;
  margin-left: 10px;
}

/*------------- Content Section END ---------------*/

/*------------- Gallery START ---------------*/

.galleryGrid {
  display: grid;
  max-width: 180rem;
  grid-template-columns: repeat(auto-fit, minmax(0.5rem, 23rem));
  grid-template-rows: auto;
  justify-content: center;
  grid-gap: 2rem;
  align-items: stretch;
  margin: auto;
  padding: 2rem 1rem;
  margin-top: 100px;
}

.picCard {
  width: 100%;
  overflow: hidden;
}

.picCard img {
  width: 100%;
  height: 100%;
}

/*------------- Gallery END ---------------*/

/*-------------Footer Section ---------------*/

.footer {
  display: flex;
  bottom: 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  min-height: 10vh;
  background: rgb(12, 10, 62);
  background: linear-gradient(
    90deg,
    rgba(12, 10, 62, 1) 9%,
    rgba(91, 10, 141, 1) 50%,
    rgba(12, 10, 62, 1) 91%
  );
  color: white;
}

.footer .designer {
  flex: auto;
  text-align: center;
  padding: 10px;
}

.footer .copy {
  flex: auto;
  text-align: center;
  padding: 10px;
}

.footer .ftmenu {
  flex: auto;
  text-align: center;
  padding: 10px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/*-------------Footer Section END---------------*/

/*------------- Media Queries ---------------*/
@media only screen and (min-width: 1200px) {
  .momenu {
    display: none;
    pointer-events: none;
  }
  .navigation .toggle {
    display: none;
    pointer-events: none;
  }

  .navigation .menu {
    display: flex;
  }

  .backgrIMG {
    display: flex;
    width: 100%;
    height: 400px;
    background-image: url(./bilder/casino.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .nameContainer {
    display: flex;
    width: 50vw;
    height: 100px;
    position: absolute;
    justify-content: center;
    align-items: center;
    background-color: #1f1f1f;
    margin-top: -50px;
    margin-left: 25vw;
  }

  .nameContainer .nameTitle {
    color: #ffe758;
    font-size: 40px;
    font-weight: bold;
  }

  .ctheader {
    width: 100%;
    height: 120px;
  }

  #startHeader.ctheaderText {
    transform: translateY(20px);
    font-size: 0.8rem;
    color: #fef9b6;
  }

  #startHeader.ctheaderText h1 {
    font-size: 1.5rem;
  }

  .cardContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .cardContainer .ctCard {
    flex: 1;
    min-width: 400px;
  }

  .formContainer {
    width: 60%;
    margin: 0 auto;
  }

  .logo .imgContainer {
    margin-left: 3vw;
  }

  .menuul {
    justify-content: flex-end;
  }

  #kontaktdetails {
    border-left: solid 2px #c2c2c2;
    border-top: none !important;
    padding: 4rem;
  }

  #contactCard {
    width: 70%;
    flex-direction: row;
  }

  #impressum {
    width: 70%;
    margin: 0 auto;
  }

  #datenschutz {
    width: 70%;
  }

  #datenschutz h1 {
    font-size: 2.2rem;
  }

  #datenschutz h2 {
    font-size: 1.8rem;
  }
}

/*------------- Media Queries END ---------------*/
