/* Fonts */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat/Caveat-VariableFont_wght.ttf ");
}

:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

.Schreibschrift {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.0rem;
  color:yellow;
}

/* Global Colors */
:root {
  --headline: #DA251D;
  --main-blau: #333399;
  --Schrift-dunkel:#32353a;
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --accent-color: #e84545;
  --accent-color-rgb: 232, 69, 69;
  --heading-color: #32353a;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/* Allgemein */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--headline);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--main-blau);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:var(--main-blau);
  font-family: var(--heading-font);
  font-size: 2.0rem;
}

.text_blau {
  color:var(--main-blau);
}


/* Standardheader (optional) */
#header {
  transition: background-color 0.3s, border-bottom 0.3s;
}

/* Header, wenn gescrollt */
#header.scrolled {
  background-color: #fff; /* Weißer Hintergrund */
  border-bottom: 1px solid #ccc; /* Unterer Border */
}

/*  Header */
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 5px 0; */
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header h1,
.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color:var(--main-blau);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--headline);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-rgb), 0.85);
}



/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #d83535;
}


.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
  color: var(--main-blau);
  font-weight: bolder;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: darkblue; /* Optionale Hover- bzw. Focus-Farbe */
}



/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--headline);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* Sektion Hero */
.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 600px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0); 
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: yellow;
  margin: 5px 0 0 0;
  font-size: 2rem
}

.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.hero p {
  color: yellow;
  margin: 5px 0 0 0;
  font-size: 1.25rem
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* Section */

section {
  padding: 140px 0;
}

/* === Google ===*/
.img-bg {
  position: absolute;
  overflow: hidden;
  right: 0px;
  bottom: 0;
  width: 50vw;
}

.btn-round {
  border-radius: 30px;
}


.text-hell {
  color: #CBCBCB;
}
/* Hilfsklassen */

.d-relative {
  position: relative;
}


/* Sektionen */
.Sektion2,
.Sektion4,
.Sektion7 {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  /* position: relative; */
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.Sektion_bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.Sektion2:before,
.Sektion4:before,
.Sektion7:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.Sektion2 .container,
.Sektion4 .container,
.Sektion7 .container {
  position: relative;
  z-index: 3;
}

.Sektion2 p {
  color: var(--default-color);
}

.Sektion2 .card,
.Sektion4 .card {
  padding: 10px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9); /* Halbtransparentes Weiß */
}

.rotate_left {
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.Sektion2 .card h1,
.Sektion4 .card h1 {
  font-weight: 700;
  color: var(--headline);
  text-align: center;
}

.Sektion2 .card h2,
.Sektion4 .card h2 {
  font-size: 1.5rem;
  color: var(--headline);
  text-align: center;
}

.Sektion2 .card p,
.Sektion4 .card p {
  color: var(--Schrift-dunkel);
}

.Sektion2 .card p a,
.Sektion4 .card p a {
  color: var(--headline);
}

.Sektion2 .card p a:hover,
.Sektion4 .card p a:hover {
  color: var(--main-blau);
}

/* Benutzerdefinierte CSS-Regeln für den Pressed-Effekt */
.HoverEffekt {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.HoverEffekt:hover {
  box-shadow: none;
  transform: translateY(5px); /* Einen leichten Versatz nach unten hinzufügen */
}

/* Modale */
.modal-header h1,
.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4 {
  font-family: var(--heading-font);
  font-size: 2.0rem;
  color: var(--headline);
}

.modal-body h2,
.modal-body h3,
.modal-body h4 {
  font-size: 1.5rem;
}

/* Footer */
.Footer {
  background-color: var(--main-blau);
}

.Footer div,
.Footer a {
  color: white;
}



.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Abstand zwischen den Thumbnails */
}

.gallery a {
  display: inline-block;
  width: 200px; /* Breite der Thumbnails */
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.hotline-box {
  position: fixed;
  top: 50%;               /* vertikale Mitte */
  right: 10px;            /* kleiner Abstand zum rechten Rand */
  transform: translateY(-50%);
  background: #fff;        /* weißer Hintergrund */
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* dezenter Schatten */
  z-index: 1000;
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}