
@import './fonts.css';


/*!!! ALLGEMEINE EINSTELLUNGEN !!!*/
a {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #777777;
}

body {
  font-family: 'Work sans', sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

main {
  padding: 0 90px;/* 90px Abstand links und rechts */
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  main {
    padding: 0 20px; 
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
}






/*!!! GESAMTER HEADER !!!*/
header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  box-sizing: border-box;
  text-decoration: none;
  color: black;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  /*border: 1px dashed blue; */
}

@media (max-width: 1000px) {
  header {
    padding: 0 30px; 
  }
}

.header-left {
  display: flex;
  align-items: center;
  margin-left: -0.625rem;
  /*border: 1px dashed blue; */
}

.header-right {
  display: flex;
  gap: 2.375rem;
  align-items: center;
  justify-content: flex-end;
  margin-right: -0.625rem;
  /* border: 1px dashed blue; */
}

.header-item {
  display: inline-block;
  padding: 0 0px;
  align-items: center;
}

header a:hover {
  color: #777777;
}





/*!!! GESAMTER FOOTER !!!*/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px 10px;
  margin-left: -0.625rem;/* Gleiche Verschiebung wie im Header */
  margin-right: -0.625rem;
  box-sizing: border-box;
  text-align: left;
  height: 3.125rem;
  font-size: 0.75rem;
  /*border: 1px dashed blue; */
}

@media (max-width: 1000px) {
  footer {
    padding: 0 30px; 
  }
}

.footer-left {
  display: flex;
  gap: 0.813rem;
  align-items: center;
  /* border: 2px dashed red; */
}

.footer-image-container {
  display: flex;
  align-items: center;
}

.footer-image {
  width: 1.5rem;
  height: 0.75rem;
  /* border: 1px solid black; */
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.313rem;
  /* border: 2px dashed orange; */
}

footer.contact-footer {
  position: relative;
  margin-top: calc(100vh - 300px);
}

footer.about-footer {
  position: relative;
  margin-top: calc(100vh - 500px);
}

footer.Imprint-footer {
  position: relative;
  margin-top: calc(100vh - 400px);
}






/*!!! GESAMTE INDEX-PAGE !!!*/
.video-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  /* background-color: aqua; */
}

/* Das Video selbst */
.video-container video {
  position: absolute;
  top: 42%;/*Viduellen ausgleich*/
  left: 51%;
  transform: translate(-50%, -50%);
  width: 321.875rem;
  height: 12.313rem;
  object-fit: contain;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  /* border: 1px dashed blue;*/
}

.arrow {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.huhu {
  margin: 0;
  margin-bottom: 4.375rem;
  box-sizing: border-box;
  /*border: 1px dashed red; */
}

.index-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);/* 4 Spalten */
  gap: 9% 5%;/* 5%(zwischen Reihen) 2%(zwischen Spalten) */
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 13.75rem;/*Da habe ich den abstand zum Fotter*/
}

.index-gallery a {
  display: block;
  position: relative;
}

.index-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Leere Spalten unsichtbar machen */
.index-gallery a.empty {
  visibility: hidden;
}

@media (max-width: 1000px) {
  .index-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .index-gallery a:nth-child(4),
  .index-gallery a:nth-child(7) {
    display: none;
  }
}

.index-gallery a {
  display: block;
  position: relative;
  overflow: hidden;
}

.index-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.index-gallery a:hover img {
  transform: scale(1.1);
  /* 10% Zoom */
}





/*!!! GESAMTE ABOUT-PAGE !!!*/
.Foto-Andi {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.Foto-Andi img {
  width: 295px;
  height: 442px;
  object-fit: cover;
}

.about-image {
  grid-column: 10 / span 3;
  justify-self: end;
  margin-top: -3vh;
  /*border: 1px dashed violet;*/
}

.about-image img {
  width: 100%;
  max-width: 300px;
  min-width: 150px;
  height: auto;
  margin: 0;
  vertical-align: top;
}

.about {
  margin-top: 10vh;
  padding: 0 90px;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .about {
    padding: 0 20px; 
  }
}

.about-page {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.25rem;
  align-items: start;
  box-sizing: border-box;
  position: relative;
}

.about-headline {
  grid-column: span 7;
  align-self: start;
  margin-bottom: 0.25rem;
  /*  border: 1px dashed red; */
}

.about-text {
  grid-column: span 7;
  align-self: start;
  margin: 0px 0 0 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
  /*border: 1px dashed blue; */
}

.arrow-about {
  display: none;
}






/*!!! GESAMTE CONTACT-PAGE !!!*/
.contact {
  margin-top: 10vh;
}

main.contact h1 {
  margin-bottom: 0.25rem;
  /*border: 1px dashed red;  */
}

main.contact h2 {
  margin-top: 1.375rem;
  margin-bottom: 0.25rem;
  /* border: 1px dashed blue; */
}

main.contact h3 {
  margin-top: 1.375rem;
  margin-bottom: 0.25rem;
  /*border: 1px dashed burlywood;*/
}

.contact p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1.063rem;
}

.contact a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1.063rem;
}

.contact p.ort {
  position: relative;
  top: calc(90vh - 250px);
  right: 0;
  text-align: right;
  font-weight: 500;
  font-size: 0.938rem;
  /*border: 1px dashed red; */
}






/*!!! GESAMTE IMPRINT-PAGE !!!*/
.Imprint {
  margin-top: 10vh;
  padding: 0 5.625rem;
  box-sizing: border-box;
}

/* Grid-Layout */
.Imprint-Page {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.25rem;
  align-items: start;
  box-sizing: border-box;
}

.Überschrift {
  grid-column: span 12;
  margin-bottom: 1.375rem;
}

.Top {
  grid-column: span 7;
  margin-bottom: 0.25rem;
}

/* Textabsätze */
.Imprint-Text1 {
  grid-column: span 7;
  font-size: 0.938rem;
  font-weight: 500;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 1.375rem;
}

.Imprint-Text1 a {
  text-decoration: underline; 
  color: inherit; 
}

.Überschrift2{

  grid-column: span 12;
  margin-bottom: 1.375rem;
}




@media (max-width: 1000px) {
  .Imprint{
    padding: 0 20px; 
  }
}





/*!!! GESAMTE WORK-PAGE !!!*/
.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;/* davor hatte ich einfach nur top das center wenn wieder mittig sein soll*/
  margin-top: 4vh;
  flex-shrink: 0;
  width: auto;
  height: calc(100vh - 150px);/* 85vh :ich glaube das muss mit calc gemacht werden index???*/
  /*border: 1px dashed red; */
}

.custom-slider img {
  height: 100%;
  max-height: calc(100vh - 150px); /* max-heigth 8vh vor calc hatte ich Maximal 80% der Viewport-Höhe */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.pagination {
  display: none;
}

.left-cursor {
  cursor: url(/image/linke_seite.svg), pointer;
}

.right-cursor {
  cursor: url(/image/Group.svg), pointer;
}

.Pfeil {
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

/* Container für die gesamte Work-Page */
.Work-Page {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.25rem;
  box-sizing: border-box;
  grid-template-rows: auto auto;
  align-items: flex-start;
}

/* Container für Titel und Datum */
.Text-Container {
  grid-column: 10 / 13; /* Dieser Container geht von der 10. bis zur 12. Spalte (12+1) */
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.25rem;
  align-items: flex-start;
  /* border: 1px dashed red; */
}

.Titel {
  grid-column: 1 / 8;/* Titel über 7 Spalten */
  justify-self: start;
  text-align: left;
  margin: 0;
  padding: 0;
  /*border: 1px dashed blue; */
}

.Datum {
  grid-column: 8 / 13;/* Datum über 5 Spalten */
  justify-self: end;
  text-align: right;
  margin: 0;
  padding: 0;
  /* border: 1px dashed green; */
}

.Beschreibung {
  grid-column: span 7;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding: 0;
  /* border: 1px dashed purple; */
}


@media (max-width: 900px) {
  .Text-Container {
    grid-column: 1 / -1; /* Container über die gesamte Breite */
    grid-row: 1; 
    display: flex; 
    flex-wrap: nowrap; 
    align-items: center; 
    gap: 10px; /* Horizontaler Abstand zwischen h1 und h2 */
  }

  .Titel {
    flex: 0; 
    text-align: left; 
    white-space: nowrap; 
    font-size: 16px; 
    /*border: 1px dashed blue; */
  }

  .Datum {
    flex: 0; 
    text-align: left; 
    font-size: 14px; 
    margin-left: 15px;
    /*border: 1px dashed red; */
  }

  .Beschreibung {
    grid-column: 1 / -1; 
    grid-row: 2; 
    text-align: left;
    margin-top: 10px; 
    font-size: 14px; 
  }
}



.Work-Page h1,
.Work-Page h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.063rem;
}

.Beschreibung {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
}

.zurück h4 {
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 200px;
}
