/* Stile für HTML und Body */

html, body {
  font-family: 'Roboto', sans-serif;
  background-image: url(images/bg.png);
  background-repeat: repeat;
  scroll-behavior: smooth;
  margin:0;
  padding: 0;
}


/* Stile für Header */

header {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background-image: url(images/bg_header.png);
  background-repeat: repeat;
  z-index: 2;
}

.logo {
  margin-left: 15px;
  height: 60px;
  width: 180px;
  background-image: url(images/logo_paris_2023.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 1.0s ease;
  -moz-transition: opacity 1.0s ease-in-out;
  -webkit-transition: opacity 1.0s ease-in-out;
}


/* Menu */

.menu-toggle {
    margin-right: 15px;
    cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 5px 0;
}

.menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-image: url(images/bg_header.png);
  background-repeat: repeat;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
}

@media (max-height: 900px) {
  .menu {
    top: 0;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    justify-content: flex-start;
    align-content: flex-start;
  }
}

.menu.active {
  right: 0;
}

.menu ul {
  list-style: none;
  font-size: 1.2rem;
  font-family: 'Roboto-400', sans-serif !important;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  justify-content: center;
}

.menu li {
  margin: 5px;
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00000;
  cursor: pointer;
}

.menu-item a:link, .menu-item a:visited {
  display: block;
  color: #ffffff;
  text-decoration: none;
  line-height: 145px;
  width: 100%;
}

.menu-item a:hover, .menu-item a:active {
  display: block;
  color: grey;
  text-decoration: none;
  background-color: blue;
  line-height: 145px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.menu-item.home a:hover, .menu-item.home a:active {
  border-radius: 90px 0 0 0;
}

.menu-item.med a:hover, .menu-item.med a:active {
  border-radius: 0 0 90px 0;
}

.contact a {
  text-align: center;
  color: #6E0D0F;
  font-size: 1.2rem;
  font-family: 'Roboto-300', sans-serif !important;
  line-height: 2rem;
}

.sm a {
  color: #6E0D0F;
  font-size:1.4em;
  font-family: 'Roboto-400', sans-serif !important;
}

.menu-item {
  width: 145px;
  height: 145px;
  display: block;
}

.menu-item.home {
  width: 145px;
  height: 145px;
  background-image: url("images/bg_1.png");
  border-radius: 90px 0 0 0;
}

.menu-item.sima, .menu-item.lan {
  background-image: url("images/bg_1.png");
}

.menu-item.tjq {
  background-image: url("images/bg_2.png");
}

.menu-item.us {
  background-image: url("images/bg_4.png");
}

.menu-item.tr {
  background-image: url("images/bg_3.png");
}

.menu-item.med {
  background-image: url("images/bg_1.png");
    border-radius: 0 0 90px 0;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-image: url("images/bg_header.png");
  border-radius: 50px;
}

.close-menu .bar {
  width: 30px;
  height: 3px;
  background-color: #6f1e1e;
  position: absolute;
  top: 13px;
  left: 4.5px;
  transform-origin: center;
  transform: translateY(-50%);
}

.close-menu .bar:nth-child(1) {
  transform: rotate(45deg);
}

.close-menu .bar:nth-child(2) {
  transform: rotate(-45deg);
}

.contact {
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Roboto-300', sans-serif !important;
  line-height: 2rem;
}


/* Fonts */

@font-face {
  font-family: 'Roboto-100';
  font-style: normal;
  font-weight: 100;
  src: url('fonts/roboto-v20-latin-100.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/roboto-v20-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-100.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-100.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto-300';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto-400';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto-500';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}


/* Schriftstile */

.container h1, .quote h1 {
	font-size: 1.8em;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Roboto-400', sans-serif !important;
}

.container h2 {
	font-size: 1.6em;
  line-height: 1.6em;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Roboto-400', sans-serif !important;
}

.container p {
	font-size:1.1em;
  line-height: 1.5em;
  font-family: 'Roboto-300', sans-serif !important;
}

.quote p {
	font-size:1em;
  line-height: 1.5em;
  font-family: 'Roboto-300', sans-serif !important;
}

.video p {
	font-size:1.1em;
  line-height: 1.5em;
  font-family: 'Roboto-300', sans-serif !important;
}

/* Stile für Links */

a {
  text-decoration: none;
  transition: opacity 0.7s ease-in-out;
  -moz-transition: opacity 0.7s ease-in-out;
  -webkit-transition: opacity 0.7s ease-in-out;
}

.container a {
  color: #6E0D0F;
  font-size: 1.1em;
  line-height: 1.5em;
  font-family: 'Roboto-400', sans-serif !important;
}

a.bt  {
  font-size: 1.1em;
  line-height: 1.5em;
  display: block;
  width: auto !important;
  border: none;
  border-radius: 25px;
  padding: 10px 20px 10px 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

.foot1 a, .foot2 a {
  color: rgba(255, 255, 255, 0.6);
}

a:hover {
  zoom:1;
  opacity: 0.6;
  transition:0.5s;
}

.menu a:hover {
  opacity: 0.6;
  transition: 0s;
}

.contact a {
  text-align: center;
  color: #6E0D0F;
  font-size: 1.2rem;
  font-family: 'Roboto-300', sans-serif !important;
  line-height: 2rem;
}

/* Liste */

ul, ol {
  font-size: 1.1em;
  line-height: 1.4em;
  display: block;
  font-family: 'Roboto-300', sans-serif !important;
}

ul.first  {
  font-family: 'Roboto-400', sans-serif !important;
  padding-left: 20px;
}

ul.second  {
  padding-left: 20px;
}

ul.third {
  font-size: 1em;
  font-style: italic;
  padding-left: 20px;
}

/* Abstände */

.space {
  display: block;
  height: 10px;
}

.space2 {
  display: block;
  height: 20px;
}

.space3 {
  display: block;
  height: 40px;
}

/* Allgemeine Stile für Container */

.container {
  width: 100%;
  min-width: 350px;
  min-height: calc(100vh - 70px);
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #393131;
}

.video {
  padding-top: 70px;
  position: relative;
  width:100%;
	text-align: center;
  background-color: black;
  color: #cfc6c6;
}

.quote {
  width: 100%;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #393131;
}

/* Stile für Containerinhalte */

.text_center {
	width:33%;
	min-width:350px;
	text-align: center;
}

.text_left {
	width: 33%;
	min-width:350px;
}

iframe {
	aspect-ratio: 16/9;
  max-width:100%;
  min-width: 350px;
  height: calc(100vh - 70px) !important;
}

.gal {
  width: 350px;
  height: 197px !important;
}

/* Startcover */

.img_start {
  width:100vw;
  height: 100vh;
  background-image: url(images/img_start.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media (max-width:1150px) {
  .img_start {
    background-position: top center;
  }
}

.img_taiji {
  width:1200px;
  height: 350px;
  background-image: url(images/header_taiji.svg);
  display: block;
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: 100%;
}

@media (max-width:1150px) {
  .img_taiji {
    background-position: center 40%;
    width: 750px;
    background-size: 100%;
  }
}

@media (max-width:799px) {
  .img_taiji {
    margin-top: 80px;
    background-image: url(images/header_taiji2.svg);
    background-position: center top;
    background-size: 340px;
    width: 350px;
    height:800px;
  }
}

.img_media {
  width:1200px;
  height: 350px;
  background-image: url(images/medien.svg);
  display: block;
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: 100%;
}

@media (max-width:1150px) {
  .img_media {
    background-position: center 40%;
    width: 750px;
    background-size: 100%;
  }
}

@media (max-width:799px) {
  .img_media {
    margin-top: 80px;
    background-image: url(images/medien2.svg);
    background-position: center top;
    background-size: 340px;
    width: 350px;
    height:800px;
  }
}

.img_media_en {
  width:1200px;
  height: 350px;
  background-image: url(images/medien_en.svg);
  display: block;
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: 100%;
}

@media (max-width:1150px) {
  .img_media_en {
    background-position: center 40%;
    width: 750px;
    background-size: 100%;
  }
}

@media (max-width:799px) {
  .img_media_en {
    margin-top: 80px;
    background-image: url(images/medien2_en.svg);
    background-position: center top;
    background-size: 340px;
    width: 350px;
    height:800px;
  }
}

.img_round {
  width: 600px;
}

@media (max-width:799px) {
  .img_round {
    width: 350px;

  }
}

.img_paris {
  width: 100vw;
  height: 100vh;
  background-image: url(images/img_paris.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.img_training {
  width: 100vw;
  height: 100vh;
  background-image: url(images/img_training.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width:799px) {
  .img_training {
    background-position: center top;
  }
}

/* Buttons */

button {
  text-align: center;
  border: none;
  border-radius: 25px;
  padding: 10px 20px 10px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  width: auto;
}

.scroll-down {
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 30px;
  text-decoration: none;
  color: #000;
}

/* Gallery */

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview {
  max-width: 100%;
}

.preview img{
  max-width: 100%;
}

.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 150px;
    height: 150px;
    margin: 5px;
}

.thumbnail-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Footer */

footer {
	position:relative;
	display: flex;
  flex-wrap:wrap;
	justify-content: center;
  align-items: flex-start;
	width:100vw;
	max-width:100%;
	min-width:300px;
  line-height: 2.5rem;
  background-image:url(images/bg_foot.png);
	background-repeat: repeat;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3em;
  font-family: 'Roboto-400', sans-serif !important;
}

.foot0 {
  width:100vw;
  height:70px;
  display: block;
}

.foot1 {
  margin-right: 100px;
	max-width: 100%;
}

.foot2 {
  margin-left: 100px;
	max-width: 100%;
}


@media screen and (max-width: 680px) {
  .foot1, .foot2 {
    margin-right: 10px;
    margin-left: 10px;
}}
