@charset "UTF-8";
/* CSS Document für no more ink */

/* Farben und Hintergrundfarben als Variablen */
:root {
  --background-color: rgb(250, 250, 250);
  --text-color: rgb(21, 56, 116); /* blue from Logo */
  --highlight-color-orange: rgb(246, 161, 98); /* orange */
  --highlight-color-pink: rgb(217, 177, 193); /* pink */
  --highlight-color-lightblue: rgb(113, 125, 177); /* lightblue */
  --highlight-color-yellow: rgb(255, 235, 200); /* yellow from Logo */
  --footer-background-color: rgb(255, 235, 200); /* yellow from Logo */
  --footer-text-color: rgb(21, 56, 116); /* blue from Logo */
}

html, body {
  height: 100%;
}

body {
  font-family: gelica, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.4;
  background-color: var(--background-color);
  color: var(--text-color);
  text-align: left;
  overflow: scroll;
  -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

h1 {
  font-family: gelica, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.0rem;
  color: var(--text-color);
}

h2 {
  font-family: gelica, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text-color);
}

h3 {
  font-family: gelica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--text-color);
}

.red_font {
  color: var(--highlight-color-orange);
}

a {
  color: var(--highlight-color-orange);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--highlight-color-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

a:hover::after {
  width: 75%;
}

/* CSS-Klasse für Abstand zwischen den einzelnen Blöcken */
.etwas_mehr_abstand {
  margin-bottom: 100px;
}

.box_round_shadow {
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.logo_small {
  max-height: 300px;
}

.logo_xsmall {
  max-width: 150px;
}

#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  min-height: 100px;
  font-size: 1.1rem;
  width: 100%;
}

#footer a {
  color: var(--footer-text-color);
  text-decoration: none;
}

#footer a:hover {
  color: var(--footer-text-color);
  text-decoration: none;
}

.video-background {
  position: relative;
  max-width: 100%;
  aspect-ratio: 1 / 1; /* Höhe = Breite */
  overflow: hidden;
  border-radius: 1vw;
}

.video-background video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;

  
}


@media only screen and (min-width: 992px) {
.nomoreinkvideo {
  max-width: 80%;
  border-radius: 30px;
}}

@media only screen and (max-width: 992px) {
.nomoreinkvideo {
  max-width: 95%;
  border-radius: 10px;
}}

@media only screen and (min-width: 992px) {
.nomoreinkvideo_portrait {
  min-height: 300px;
  height: 60vh;
  max-height: 600px;
  border-radius: 30px;
}}

@media only screen and (max-width: 992px) {
.nomoreinkvideo_portrait {
  height: 60vh;
  border-radius: 10px;
}}


.headline {
  font-weight: 500;
  font-style: italic;
  font-size: 1.8rem;
  text-align: center;
  color: var(--highlight-color-orange);
}

.book_now {
  text-align: center;
  background-color: var(--highlight-color-yellow);
  border: none;
  border-radius: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Animation für die schwankende Bewegung */
@keyframes sway {
  0%, 100% {
      transform: rotate(0deg);
  }
  25% {
      transform: rotate(-2deg);
  }
  75% {
      transform: rotate(2deg);
  }
}

/* Schwank-Effekt aktivieren */
.book_now {
  animation: sway 4s infinite ease-in-out;
}

.btn {
  border: none;
  font-weight: 200;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--text-color);
  text-align: left;
}

.btn:hover {
  background-color: var(--highlight-color-yellow);
  border: none;
  color: var(--text-color);
  text-decoration: none;
}

.blog-post {
  max-height: 7em; 
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.fade-out {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em; /* Höhe des Fade-Out */
  background: linear-gradient(to bottom, rgba(250, 250, 250,0), rgba(250, 250, 250,1));
  transition: opacity 0.3s ease;
}
  .read-more, .read-less {
  display: block;
  margin-top: 10px;
  cursor: pointer;
        }
.read-less {
  display: none;
}

.small {
  font-size: 0.9rem;
}
