/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* From the :root element you can easily change the colors of the design, its size and so on. */
:root {

  /* You can change the font family in the whole design here. (You need to add the font family to the codes.) */
  --font_family: 'Inter', sans-serif;

  /* You can change the font size here, is proportional to all texts. */
  --font_size: 16px;

  /* You can change the background color by typing the color code. (If you do not enter a background-image image, the background-color will be active.) */
  --background_color: #000;
  --background_image: url("../img/wallpaper.jpg");

  /* You can change the frame thickness and color of the picture by typing the number of pixels and the color code. */
  --image_border_color: #000;
  --image_border_px: 3px;

  /* You can change the width and size of the picture by typing the number of pixels. */
  --image_width: 140px;
  --image_height: 140px;

  /* You can change the colors of the title and description section by typing the color codes. */
  --title_color: #fff;
  --description_color: #f1c40f;

  /* You can change the colors of social media icons by changing the color code. */
  --svg_color: #fff;

  /* You can change the background, text color and active color of the menu by changing the color codes. */
  --menu_background_color: #0e0e0e;
  --menu_text_color: #fff;
  --menu_active_text_color: #f1c40f;

  /* You can change the button's background, text color and active color by changing the color codes. */
  --button_background_color: #0e0e0e;
  --button_text_color: #fff;
  --button_text_hover_color: #f1c40f;

  /* You can change the background, text color and active color of the text field by changing the color codes. */
  --textarea_background_color: #0e0e0e;
  --textarea_text_color: #fff;
  --textarea_link_text_color: #f1c40f;

  /* You can change the background, text color and active color of the footer area by changing the color codes. */
  --footer_background_color: #0e0e0e;
  --footer_text_color: #fff;
  --footer_link_text_color: #f1c40f;
}

/* Container für das Video im Hintergrund */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Video hinter den anderen Inhalten platzieren */
}

/* Style das Video */
#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Das Video wird skaliert, um den gesamten Container auszufüllen */
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* Positionierung des Videos in der Mitte */
}

/* Inhalt, der über dem Video angezeigt wird */
.content {
  position: relative; /* Relative Positionierung, damit es über dem Video liegt */
  z-index: 1; /* Sicherstellen, dass der Inhalt über dem Video ist */
  color: #f1f1f1;
  padding: 20px;
}

/* Button */

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

#enterButton {
  padding: 20px 40px;
  font-size: 24px;
  cursor: pointer;
  background: -o-linear-gradient(315deg, #003366, #005e3a);
  background: linear-gradient(135deg, #003366, #005e3a); /* Dunkelblau und dunkelgrün Farbverlauf */
  color: #fff; /* Textfarbe */
  border: none; /* Kein Rand */
  border-radius: 50px; /* Abgerundete Ecken */
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Tieferer Schatten für mehr Tiefe */
  -webkit-transition: background 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s; /* Übergangseffekte */
  font-weight: bold; /* Fett für bessere Lesbarkeit */
  letter-spacing: 1px; /* Kleinere Buchstabensetzung für besseren Look */
  text-transform: uppercase; /* Großbuchstaben für einen modernen Look */
}

#enterButton:hover {
  background: -o-linear-gradient(315deg, #002244, #004d35);
  background: linear-gradient(135deg, #002244, #004d35); /* Dunkelblau und dunkelgrün Farbverlauf beim Hover */
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05); /* Skaliert den Button beim Hover */
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Erhöhter Schatten beim Hover */
}

#enterButton:active {
  background: -o-linear-gradient(315deg, #001a33, #003f2d);
  background: linear-gradient(135deg, #001a33, #003f2d); /* Dunkelblau und dunkelgrün Farbverlauf beim Klicken */
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); /* Normalisieren */
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Reduzierter Schatten beim Klicken */
}

.video-container video {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}

/* Info Icon */

.info_icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.info_icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.info_icon a:hover::after {
  content: attr(title);
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 100;
}

/* Basic Codes */

body {
  font: var(--font_size) var(--font_family);
  font-weight: 400;
  line-height: 1.5;
  background: var(--background_color) var(--background_image) no-repeat center;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex_column_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_row_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_no_wrap_row_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Logo, Title and Description Codes */

.header_img {
  padding-top: 1em;
}

.header_img img {
  height: var(--image_height);
  width: var(--image_width);
  border: var(--image_border_px) solid var(--image_border_color);
  border-radius: 50%;
  margin-bottom: 0.5em;
}

.header_text h1 {
  color: var(--title_color);
  font-size: 2em;
}

.header_text h2 {
  color: var(--description_color);
  font-size: 1.5em;
}

/* Social Media Icons Codes */

.header_svg_list {
  padding-top: 1em;
}

.header_svg_item {
  width: 2.1em;
  height: 2.1em;
  cursor: pointer;
}

.header_svg_item:hover {
  -webkit-transform: scale(1.10);
      -ms-transform: scale(1.10);
          transform: scale(1.10);
  -webkit-transition: 0.10s ease;
  -o-transition: 0.10s ease;
  transition: 0.10s ease;
}

.header_svg_item + .header_svg_item {
  margin-left: 1em;
}

.header_svg_item svg {
  fill: var(--svg_color);
}

/* Menu Codes */

#header_nav_menu_item_1 {
  color: var(--menu_active_text_color);
}

#header_nav_menu_item_2,
#header_nav_menu_item_3 {
  color: var(--menu_text_color);
}


.header_nav_menu_list {
  padding-top: 1em;
  margin-left: 1em;
  margin-right: 1em;
}

.header_nav_menu_item {
  color: var(--menu_text_color);
  background-color: var(--menu_background_color);
  text-align: center;
  list-style-type: none;
  cursor: pointer;
  padding: 0.5em;
  border-radius: 0.3em;
  cursor: pointer;
  -webkit-transition: 0.10s ease;
  -o-transition: 0.10s ease;
  transition: 0.10s ease;
  font-size: 1.1em;
}

.header_nav_menu_item + .header_nav_menu_item {
  margin-left: 0.4em;
}

/* Menu Container Codes */

main {
  margin-bottom: auto;
}

#main_section_container_2, #main_section_container_3 {
 display: none;
}

.main_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_text_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 41em;
  margin-top: 1em;
  padding: 0.8em;
  border-radius: 0.3em;
  min-height: 3.7em;
  text-align: center;
}

.main_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 41em;
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
}

.main_small_button_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main_small_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_small_a_item + .main_small_a_item {
  margin-left: 10px;
}

.main_small_button_item:hover,
.main_button_item:hover {
  color: var(--button_text_hover_color);
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: 0.10s ease;
  -o-transition: 0.10s ease;
  transition: 0.10s ease;
}

.main_small_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: calc(41em / 2 - 5px);
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
}

/* Footer Codes */

.footer_div_item {
  color: var(--footer_text_color);
  background: var(--footer_background_color);
  padding: 1em;
  margin-top: 1.5em;
}

.footer_a_item {
  color: var(--footer_link_text_color);
  text-decoration: none;
}

/* Responsive Codes */

@media (max-width: 768px) { 
  .main_text_item {
    width: 92vw;
  }

  .main_small_button_item {
    width: calc(92vw / 2 - 5px);;
  }

  .main_button_item {
    width: 92vw;
  }
  
  .header_h_item {
    width: 92vw;
    text-align: center;
  }
  
}