/* Lexend Deca */
@font-face {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lexend-deca/lexend-deca-v25-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lexend Deca';
  font-weight: 700;
  src: url('../fonts/lexend-deca/lexend-deca-v25-latin-700.woff2') format('woff2');
}

/* Oxygen */
@font-face {
  font-family: 'Oxygen';
  font-weight: 400;
  src: url('../fonts/oxygen/oxygen-v16-latin-regular.woff2') format('woff2');
}

/* Orbitron */
@font-face {
  font-family: 'Orbitron';
  font-weight: 400;
  src: url('../fonts/orbitron/orbitron-v35-latin-regular.woff2') format('woff2');
}


body {
  font-family: 'Oxygen', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Oxygen', sans-serif;
}

.brand-text {
  font-family: 'Lexend Deca', sans-serif;
}


/** --------------------------------------------------------HEADER----------------------------------------------- **/
/* Navbar Container */
#header-nav {
  border: none;
  border-radius: 0;
}

/* Brand-Text (Logo-Name) */
.brand-text {
  position: relative;
  top: 4px;
  font-size: 16px;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  color: #fafafc;
  /* Weiß oben (transparent) */
  transition: color 0.3s ease;
}

/* Allgemeines Navbar-Design */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Zustand beim Scrollen */
.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Links */
.navbar .nav-link {
  color: rgb(248, 246, 246) !important;
  /* Weiß oben */
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #0d6efd !important;
}

/* Wenn gescrollt: Links & Brand werden blau */
.navbar-scrolled .nav-link,
.navbar-scrolled .brand-text {
  color: #0d6efd !important;
}

/* Dropdown-Menü immer weißen Hintergrund */
.navbar .dropdown-menu {
  background-color: #160d2b !important;
  /* zwingend weiß */
  border: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  padding: 0;
  /* optional, um Abstand selbst zu steuern */
  min-width: auto !important;
  /* automatische Breite */
  width: max-content !important;
  /* passt sich an den Inhalt an */
}

/* Dropdown-Items wie Nav-Links */
.navbar .dropdown-menu .dropdown-item {
  color: rgb(248, 246, 246) !important;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: #0d6efd !important;
  background-color: rgba(255, 255, 255, 0.2);
  /* leichter Hover-Effekt */
}

/* Wenn Navbar gescrollt */
.navbar-scrolled .dropdown-menu {
  background-color: #ffffff !important;
  /* Weißer Hintergrund beim Scrollen */
}

.navbar-scrolled .dropdown-menu .dropdown-item {
  color: #0d6efd !important;
  /* Textfarbe beim Scrollen */
}

.navbar-scrolled .dropdown-menu .dropdown-item:hover {
  background-color: rgba(13, 110, 253, 0.1);
  /* Hover-Effekt beim Scrollen */
}

/* Abstand zwischen Dropdown-Items reduzieren */
.navbar .dropdown-menu .dropdown-item {
  padding: 0.03em 1rem !important;
  /* oben/unten kleiner, links/rechts wie gehabt */
}

/** --------------------------------------------------------End HEADER----------------------------------------------- **/
/** -----------------------------------------------------------Body----------------------------------------------- **/



body {
  font-size: 16px;
  color: #120808;
  background-color: transparent;
  font-family: 'Oxygen', sans-serif;
}

/** main **/

.c-item {
  height: 800px;
}

.c-image {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/** main **/








.info-section {
  position: relative;
  z-index: 10;
  margin: -40px auto 0 auto;
  width: 95%;
  max-width: 3200px;
  min-width: 300px;
  background-color: white;
  box-shadow: 0 0 20px rgba(1, 19, 1, 0.26);
  border-radius: 1rem;
  padding: 3rem 2rem;
}


.cards-row .card {
  border: none;
  /* entfernt den Card-Rand */
  outline: none;
  /* keine Outline */


}

.cards-row .card img {
  border: none;
  /* kein Rahmen */
  outline: none;
  /* keine Outline */
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  /* Schatten auf das Bild */
  border-radius: 0.5rem;
  /* runde Ecken für Bild */
}




.card {
  height: 100%;
}

.card .row {
  height: 100%;
  display: flex;
  align-items: stretch;
  /* sorgt für gleiche Höhe */
}

.card .col-md-4,
.card .col-md-8 {
  display: flex;
  flex-direction: column;
}

.card .col-md-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* füllt die gesamte Spaltenhöhe */
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.card-title {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.card-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
}

.card-text {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .card .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card .col-md-4,
  .card .col-md-8 {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .card .col-md-4 img {
    width: 200px;
    height: 200px;
    /*  border-radius: 50%;*/
    object-fit: cover;
    margin-bottom: 1rem;
  }

  .card-body {
    align-items: center;
  }
}


/** ----------------------------------------------------------- End Body----------------------------------------------- **/

/** ----------------------------------------------------------- Page ----------------------------------------------- **/


html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.inside {

  height: 100%;
}

/** ----------------------------------------------------------- Page ----------------------------------------------- **/


/** ----------------------------------------------------------- Contact Page ----------------------------------------------- **/



/* ================================
   CONTACT PAGE
================================ */

body.contact-page {
  background:
    linear-gradient(rgba(3, 10, 25, 0.82), rgba(3, 10, 25, 0.9)),
    url('../img/backgroundimage_contact.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #e9f2ff;
}

/* Hero / Seitenkopf */
.contact-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 90px;
}

.contact-page h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero p {
  color: #d6e6ff;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

/* Hauptbereich leicht überlappend */
.content-section {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

/* Karten / Boxen */
.contact-form-box,
.contact-direct-box,
.booking-info-card,
.booking-calendar-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #1f2937;
}

/* Formular */
.contact-page form {
  border-radius: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-page form:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Überschriften in Boxen */
.contact-form-box h3,
.contact-direct-box h3,
.booking-info-card h3 {
  color: #374151;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Labels */
.contact-page .form-label {
  color: #4b5563;
  font-weight: 600;
}

/* Inputs / Textarea */
.contact-page .form-control {
  background-color: rgba(255, 255, 255, 0.7);
  color: #1f2937;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
}

/* Placeholder */
.contact-page .form-control::placeholder {
  color: #9ca3af;
}

/* Fokus */
.contact-page .form-control:focus {
  outline: none;
  border-color: rgba(13, 110, 253, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
  background-color: rgba(255, 255, 255, 0.9);
  color: #111827;
}

/* Kontaktbox Text */
.contact-direct-box p {
  color: #4b5563;
  margin-bottom: 10px;
}

.contact-direct-box .fw-semibold,
.contact-direct-box strong {
  color: #374151;
}

/* Button */
.contact-page .btn-primary {
  background-color: #5d7497;
  border: none;
  color: #ffffff;
  border-radius: 14px;
}

.contact-page .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

/* Booking Section */
.booking-section {
  padding: 80px 0 40px;
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(13, 110, 253, 0.14);
  color: #dbeafe;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.booking-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.booking-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d6e6ff;
  max-width: 760px;
  margin: 0 auto;
}

/* Booking Info */
.booking-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-points li {
  margin-bottom: 14px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}

.booking-meta {
  margin-top: 24px;
  padding: 20px;
  background: rgba(248, 249, 250, 0.9);
  border-radius: 18px;
  color: #6b7280;
  line-height: 1.8;
}

.booking-meta strong {
  color: #374151;
}

/* Kalender */
.booking-calendar-card iframe {
  width: 100%;
  height: 820px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

/* Footer */
footer a {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-page h1 {
    font-size: 2.4rem;
  }

  .booking-title {
    font-size: 2rem;
  }

  .booking-calendar-card iframe {
    height: 760px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .contact-page h1 {
    font-size: 2rem;
  }

  .booking-title {
    font-size: 1.75rem;
  }

  .contact-form-box,
  .contact-direct-box,
  .booking-info-card,
  .booking-calendar-card {
    padding: 24px;
  }

  .booking-calendar-card iframe {
    height: 700px;
  }
}






/* ------------------------- Chat Assistence --------------------------------- */

:root {
  --chat--color--primary: #e74266;
  --chat--color--primary-shade-50: #db4061;
  --chat--color--primary-shade-100: #cf3c5c;

  --chat--color--secondary: #20b69e;
  --chat--color-secondary-shade-50: #1ca08a;

  --chat--color-white: #ffffff;
  --chat--color-light: #f7f8fb;
  --chat--color-light-shade-50: #e8edf5;
  --chat--color-light-shade-100: #cdd5e2;
  --chat--color-medium: #d2d4d9;
  --chat--color-dark: #101330;
  --chat--color-disabled: #bfc5cf;
  --chat--color-typing: #404040;

  --chat--spacing: 1rem;
  --chat--border-radius: 18px;
  --chat--transition-duration: 0.2s;
  --chat--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

  --chat--window--width: 420px;
  --chat--window--height: 680px;
  --chat--window--bottom: 24px;
  --chat--window--right: 24px;
  --chat--window--z-index: 9999;
  --chat--window--border: 1px solid rgba(16, 19, 48, 0.08);
  --chat--window--border-radius: 22px;
  --chat--window--margin-bottom: 0;

  --chat--header-height: auto;
  --chat--header--padding: 1rem 1.25rem;
  --chat--header--background: linear-gradient(135deg, #101330 0%, #1d275c 100%);
  --chat--header--color: #ffffff;
  --chat--header--border-top: none;
  --chat--header--border-bottom: none;
  --chat--header--border-left: none;
  --chat--header--border-right: none;

  --chat--heading--font-size: 1.15rem;
  --chat--subtitle--font-size: 0.92rem;
  --chat--subtitle--line-height: 1.5;

  --chat--message--font-size: 0.96rem;
  --chat--message--padding: 0.9rem 1rem;
  --chat--message--border-radius: 18px;
  --chat--message-line-height: 1.5;
  --chat--message--margin-bottom: 0.75rem;

  --chat--message--bot--background: #ffffff;
  --chat--message--bot--color: #101330;
  --chat--message--bot--border: 1px solid rgba(16, 19, 48, 0.06);

  --chat--message--user--background: var(--chat--color--secondary);
  --chat--message--user--color: #ffffff;
  --chat--message--user--border: none;

  --chat--message--pre--background: rgba(0, 0, 0, 0.04);
  --chat--messages-list--padding: 1rem;

  --chat--toggle--size: 62px;
  --chat--toggle--width: var(--chat--toggle--size);
  --chat--toggle--height: var(--chat--toggle--size);
  --chat--toggle--border-radius: 50%;
  --chat--toggle--background: #20b69e;          /* Hauptfarbe */
  --chat--toggle--hover--background: #1e1ca0;   /* Hover */
  --chat--toggle--active--background: #178f7b;  /* Klick */
  --chat--toggle--color: #ffffff;

  --chat--textarea--height: 56px;
  --chat--textarea--max-height: 30rem;
  --chat--input--font-size: 0.96rem;
  --chat--input--border: 0;
  --chat--input--border-radius: 14px;
  --chat--input--padding: 0.9rem 1rem;
  --chat--input--background: #ffffff;
  --chat--input--text-color: #101330;
  --chat--input--line-height: 1.5;
  --chat--input--placeholder--font-size: 0.95rem;
  --chat--input--border-active: 0;
  --chat--input--left--panel--width: 2.5rem;

  --chat--button--padding: 0.65rem 1rem;
  --chat--button--border-radius: 12px;
  --chat--button--font-size: 0.95rem;
  --chat--button--line-height: 1;

  --chat--button--color--primary: #ffffff;
  --chat--button--background--primary: var(--chat--color--secondary);
  --chat--button--border--primary: none;
  --chat--button--color--primary--hover: #ffffff;
  --chat--button--background--primary--hover: var(--chat--color-secondary-shade-50);
  --chat--button--border--primary--hover: none;

  --chat--button--color--primary--disabled: #ffffff;
  --chat--button--background--primary--disabled: #87c8bd;
  --chat--button--border--primary--disabled: none;

  --chat--button--color--secondary: #ffffff;
  --chat--button--background--secondary: #8a8f99;
  --chat--button--border--secondary: none;
  --chat--button--color--secondary--hover: #ffffff;
  --chat--button--background--secondary--hover: #717680;
  --chat--button--border--secondary--hover: none;

  --chat--button--color--secondary--disabled: #ffffff;
  --chat--button--background--secondary--disabled: #c6cad1;
  --chat--button--border--secondary--disabled: none;

  --chat--close--button--color-hover: var(--chat--color--primary);

  --chat--input--send--button--background: transparent;
  --chat--input--send--button--color: var(--chat--color--secondary);
  --chat--input--send--button--background-hover: rgba(32, 182, 158, 0.08);
  --chat--input--send--button--color-hover: var(--chat--color-secondary-shade-50);

  --chat--input--file--button--background: transparent;
  --chat--input--file--button--color: var(--chat--color--secondary);
  --chat--input--file--button--background-hover: rgba(32, 182, 158, 0.08);
  --chat--input--file--button--color-hover: var(--chat--color-secondary-shade-50);

  --chat--files-spacing: 0.4rem;

  --chat--body--background: #f7f8fb;
  --chat--footer--background: #f7f8fb;
  --chat--footer--color: #101330;
}
/* Zusätzliche Verfeinerung */
.chat-window {
  box-shadow: 0 16px 50px rgba(16, 19, 48, 0.18);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.chat-message {
  max-width: 80%;
  box-shadow: 0 2px 10px rgba(16, 19, 48, 0.05);
}

.chat-footer {
  padding: 0.75rem 1rem 1rem;
}

.chat-input textarea {
  box-shadow: 0 2px 8px rgba(16, 19, 48, 0.06);
}

.chat-input-send-button,
.chat-input-file-button {
  border-radius: 10px;
}

.chat-toggle {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Bot-Nachrichten mit Avatar */
.chat-message-from-bot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom-left-radius: 6px;
}

.chat-message-from-bot::before {
  content: "";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-image: url('/assets/img/ChatLogo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* User-Nachrichten */
.chat-message-from-user {
  border-bottom-right-radius: 6px;
}


/* Header Logo + Text */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo vor dem Titel */
.chat-header::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url('/assets/img/logo.png'); /* dein Logo */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}