/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: rgb(211, 231, 85);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 250;
  font-style: normal;
  scroll-behavior: smooth;
  font-size: 85%;
}

a {
  text-decoration: none;
  color: inherit;

}


h2 {
}


/* BANNER */

.banner {
  position: relative;
  height: 100vh;
  background: url('images/banner.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  overflow: hidden;
  box-shadow: 0 4px 7px -2px rgba(0, 0, 0, 0.1);
}


/* Title */
.title-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1.5s ease-out 0.5s forwards;
}

.title-wrapper h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  font-weight: normal;
}

.black {
  color: #000;
}

.white {
  color: #fff;
}


/* Keyframes */
@keyframes zoomOut {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Zoom Effect */
.banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('images/banner.jpg') no-repeat center center/cover;
  z-index: 1;
  animation: zoomOut 2s ease-out forwards;
  transform: scale(1.1);
}

/* Ensure content overlays the ::before */
.banner {
  position: relative;
  overflow: hidden;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0.5; /* match your default opacity */
    transform: translateY(0);
  }
}

/*WELCOME SECTION*/

.welcome-section {
  padding: 2rem 2rem .5rem;
  color: #111;
}

.welcome-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-section-title {
  font-weight: normal;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.welcome-section-text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
}


/*METHOD SECTION*/

.method-section {
  padding: 4rem 2rem;
}


.method-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.method-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto .2rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.method-subtitle {
  margin-top: .5rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 350;
}


.method-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.method-title-2 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.method-text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: .5rem;
  text-align: left
}

/*SECTION QUOTE*/

.quote-section {
  padding: 1rem 1rem;
}

.quote-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border: .1em solid black;
  padding: 1.5em;
  border-radius: 16px;
  box-shadow: 0 4px 7px -2px rgba(0, 0, 0, 0.3);
}

.quote-text {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  line-height: 1.5;
  font-weight: 310;
}

/*INFO SECTION*/

.info-section {
  padding: 4rem 2rem;
}


.info-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.info-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto .2rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.info-subtitle {
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: .5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 350;
}


.info-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.info-text-container {
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 350;
  margin-bottom: 3rem;
}

.info-text-2 {
  margin-left: 1.5rem;
}

.info-text-bottom {
  max-width: 1000px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: left;
  font-weight: 250;
  margin-bottom: 1rem;
  font-style: italic;
}


/*ABOUT SECTION*/

.about-section {
  padding: 4rem 2rem;
}


.about-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto .2rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.about-subtitle {
  margin-top: .5rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 350;
}


.about-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-text {
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 350;
  margin-bottom: .5rem;
}


/* BANNER BOTTOM */

.banner-bottom {
  position: relative;
  height: 100vh;
  background: url('images/banner.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  overflow: hidden;
  box-shadow: 0px -4px 8px -3px rgba(0, 0, 0, 0.1);
}

.title-wrapper-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1.5s ease-out 0.5s forwards;
}

.title-wrapper-bottom p {
  font-size: 2.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  font-weight: normal;
}

.black-bottom {
  color: #000;
}


.white-bottom {
  display: block;
  color: #fff;
  text-transform: none;
  font-size: 2.3rem;
  margin-top: 1rem;
}

.email {
transition: ease-in .5s;
}

.tel {
  transition: ease-in .5s;
}

.email:hover {
color: black;
opacity: 50%;
}

.tel:hover {
color: black;
opacity: 50%;
}


/*IMPRESSUM & DATENSCHUTZ INDEX*/

.impressum {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  opacity: 50%;
  opacity: 0; /* Start hidden */
  animation: fadeIn 1s ease-out 1s forwards; /* delay to come after title */
}


.imp {
transition: ease-in .5s;
}

.dat {
transition: ease-in .5s;
}

.imp:hover {
  color: white;
}

.dat:hover {
  color: white;
}



/*ARROW BACK 2 TOP*/

.arrow {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  font-size: 2rem;
  font-family: inherit;
  font-weight: 300;
  opacity: 50%;
  opacity: 0; /* Start hidden */
  animation: fadeIn 1s ease-out 1s forwards; /* delay to come after title */
  transition: .5s;
}

.arrow:hover {
  color: white;
}


/*IMPRESSUM & DATENSCHUTZ SEITEN*/

.impressum-body {
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 350;
  margin: 2rem 2rem;
}

.datenschutz-body {
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 350;
  margin: 2rem 2rem;
  max-width: 800px;
  text-transform: lowercase;
}

/*JS SCROLL EFFECT*/

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



/*Responsive*/

@media only screen and (max-width: 600px) {
.title-wrapper h1 {font-size: 1.7rem;}
.title-wrapper-bottom p {font-size: 1.7rem;}
.white-bottom {font-size: 1.8rem;}
.cat-button {padding: .7rem; font-size: 1.4rem; margin-left: .4rem; margin-right: .4rem;}
html {font-size: 90%;}
}
