/**
 * Global style definitions
 */
.hello-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.hello-container section {
  padding: 20px;
  margin: 10px;
  background: var(--bg-content);
  border-radius: 10px;
}

#wait {
  cursor: wait;
}

#wait * {
  cursor: wait;
}

.navigationbar {
  margin-bottom: 60px;
}

.test {
  background-color: red;
}

.container-bg123 {
  background: purple;
}

.fill {
  min-height: 100%;
  height: 100%;
  background-color: aqua;
}

/* hallo*/
:root {
  --primary-color: #30d5c8;
  --secondary-color: #FFFAF0;
  --background-color: #FFFAF0;
  --text-color: #444;
  --border-color: #ccc;
  --shadow-color: rgba(0, 0, 0, 0.15);
  --font-family-heading: "Montserrat", sans-serif;
  --font-family-body: "Montserrat", sans-serif;
  --transition-duration: 0.3s;
  --faq-background-color: #fdf6e3;
  --hover-background-color: #FFFAF0 !important;
  --accordion-body-background-color: #e0f7fa;
  --accordion-shadow: rgba(0, 0, 0, 0.2);
  --button-hover: #3ed7c8;
  --text-hover-color: #333;
}

.container-height {
  height: 40vh;
  overflow: hidden;
  position: relative;
}

body {
  font-family: var(--font-family-body);
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color) !important;
  margin: 0;
  padding: 0;
}

.faq-title {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-hover-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
  background-color: var(--background-color);
  border-radius: 10px;
}

.accordion-button {
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  padding: 22px 28px;
  text-align: left;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease, box-shadow var(--transition-duration) ease, transform var(--transition-duration) ease;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-image: linear-gradient(to right, #30d5c8, #4ebbbd);
}

.accordion-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.accordion-button:hover::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
  background-color: #FFFAF0;
  color: var(--text-hover-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background-image: linear-gradient(to right, #FFFAF0, #FFFAF0);
}

.accordion-body {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 1.2rem;
  color: #555;
  background-color: var(--accordion-body-background-color);
  padding: 28px;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 20px 20px;
  line-height: 1.6;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: justify;
  background-image: url("https://www.transparenttextures.com/patterns/marble.png");
}

.accordion-item {
  border: none;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px var(--accordion-shadow);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-duration) ease;
}

.accordion-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.accordion-button:hover {
  transform: none;
}

.accordion-collapse.collapse.show {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .accordion-header {
    font-size: 1.6rem;
  }

  .accordion-button {
    font-size: 1.2rem;
    padding: 18px 24px;
  }

  .accordion-body {
    font-size: 1rem;
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .accordion-header {
    font-size: 1.4rem;
  }

  .accordion-button {
    font-size: 1.1rem;
    padding: 16px 20px;
  }

  .accordion-body {
    font-size: 0.9rem;
    padding: 20px;
  }
}
.hero-image {
  height: 20vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.loginButton-Style {
  color: #145674;
}

.spacer {
  height: 30px;
}

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

.carousel {
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-item img {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  object-fit: cover;
  height: 600px;
}

.accordion {
  margin-top: 20px;
}

.accordion-item {
  margin-bottom: 10px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

.carousel-caption input[type=text] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  margin-top: 5px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Times New Roman", Times, serif;
}

.img-Container {
  position: sticky;
  top: 0;
  margin-top: -8vh;
}

a:visited {
  color: white;
}

#stickyBackground {
  background-color: rgba(255, 250, 240, 0.95);
}
