/* ==========================================================================
   schernickau // — Website Styles
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

.display-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}

.display-2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
}

.display-7 {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Section: Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1rem 3rem 2rem;
  max-width: 58%;
}

.hero__title {
  color: #fff;
  margin-bottom: -0.5rem;
}

.hero__text {
  color: #f110ab;
}

@media (max-width: 767px) {
  .hero {
    background-attachment: scroll;
  }
  .hero__content {
    max-width: 100%;
    padding: 1rem 1.5rem 3rem;
  }
}

/* ==========================================================================
   Section: Quotes
   ========================================================================== */

.quote {
  background-color: #60abb0;
  padding: 5rem 0;
}

.quote__text {
  text-align: center;
  color: #f110ab;
  font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.quote__author {
  display: block;
  text-align: center;
  color: #000;
  font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Section: Video (Fullscreen Vimeo)
   ========================================================================== */

.video-fullscreen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-fullscreen__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-fullscreen__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Section: Services (3 Cards)
   ========================================================================== */

.services {
  padding: 5rem 0 3rem;
  background: #fff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services__card {
  display: flex;
  flex-direction: column;
}

.services__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.services__title {
  color: #f110ab;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.services__description {
  color: #000;
  text-align: justify;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__img {
    height: 300px;
  }
}

/* ==========================================================================
   Section: Reels
   ========================================================================== */

.reel {
  padding: 1.5rem 0;
  text-align: center;
  background-color: #fff;
}

.reel__title {
  color: #f110ab;
  margin-bottom: 0.5rem;
}

/* Reduce gap between a heading-only reel section and the next section */
.reel + .reel,
.reel + .vita {
  padding-top: 0;
}

.reel__subtitle {
  color: #f110ab;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reel__video {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.reel__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #356859;
  color: #fff;
  border: 2px solid #356859;
}

.reel .btn-primary {
  background-color: #f110ab;
  color: #fff;
  border: 2px solid #f110ab;
}

.reel .btn-primary:hover {
  background-color: transparent;
  color: #f110ab;
  border-color: #f110ab;
}

.btn-primary:hover {
  background-color: #227755;
  border-color: #227755;
}

/* ==========================================================================
   Section: Vita & Auszeichnungen
   ========================================================================== */

.vita {
  padding: 5rem 0 3rem;
  background: #fff;
}

.vita__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vita__heading {
  color: #f110ab;
  margin-bottom: 1rem;
}

.vita__body {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.vita__image img {
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .vita__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: #1a1a1a;
  color: #aaa;
  padding: 3rem 0;
  text-align: center;
}

.footer a {
  color: #f110ab;
}

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

/* ==========================================================================
   Page: Impressum
   ========================================================================== */

.impressum {
  padding: 5rem 0 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.impressum h1 {
  color: #f110ab;
  margin-bottom: 2rem;
}

.impressum h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.impressum p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.impressum a {
  color: #f110ab;
}

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

.impressum__back {
  margin-top: 3rem;
}
