body {
    overflow-x: hidden;
    background-color: #FFFFFF; 
}

.custom-text-color {
    color: rgba(191, 148, 71, 1);
}

.custom-background-color {
    background-color: rgba(191, 148, 71, 1);
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
}

.custom-background-color2 {
    background-color: rgba(191, 148, 71, 1);
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
}

.custom-background-color3 {
  background-color: rgba(191, 148, 71, 1);
  background-image: linear-gradient(to bottom, #ffffff, #ffffff);
}

.navbar-transparent {
  background-color: rgba(255, 255, 255, 0) !important;
}

.custom-background-color4 {
  background-color: rgba(191, 148, 71, 1);
}

.iframe-container {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* Dieses CSS entfernt den Rahmen des iframe und passt die Größe an */
.iframe-container iframe {
  width: 100%;
  height: 100%;
}

#header-div
{
	z-index: 1111;
}

.navbar {
    font-size: 24px;
}

.bg-white {
  background-color: white !important;
  border-bottom: 2px solid #bf9447;
}

.custom-link {
  color: #000000;
  text-decoration: none; 
}

.filler
{
  position: fixed;
  top:25px;
  width: 100%;
  height:63px;
  background-color: rgba(255, 255, 255, 1);
  z-index: 1010;
}

.navbar-toggler {
  position: fixed; /* Stellt sicher, dass der Hamburger-Button seine Position beibehält */
  top: 40px; /* Anpassung der vertikalen Position */
  right: 22px; /* Anpassung der horizontalen Position */
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none; /* Versteckt den Hamburger-Button auf großen Bildschirmen */
  }
}

#nav1 
{
	position: fixed;
	border: 0;
	padding: 0;
  padding-bottom:15px;
	top: -15px;
	width: 100%;
	background-color: rgba(255, 255, 255, 1);
	z-index: 1010;
}

#nav1::after
{
	content: '';
	position: absolute;
	top: 62%;
	left: 0;
	border-right: 100vw solid transparent;
	border-top: 70px solid rgba(255, 255, 255, 1);  
}

#nav1::before {
  content: '';
  position: absolute;
  top: 63.2%; 
  left: 0;
  border-right: 120vw solid transparent;
  border-top: 70px solid rgba(191, 148, 71, 1);
}

.image-container {
    position: relative;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100vw solid transparent;
    z-index: 1001;
}

#triangle2 {
    bottom: 0; 
    border-bottom: 70px solid rgba(255, 255, 255, 1); 
	border-left: 100vw solid transparent;
}

#triangle1 {
    bottom: 0;
	left: -18vw;
    border-bottom: 75px solid rgba(191, 148, 71, 1);
	border-left: 120vw solid transparent;
    z-index: 999; 
}

.navbar-brand img {
	padding-right: 17%;
	padding-top: 15%;
	width: 299px;
	height: 133px;
}

.fixed-height-image {
  height: 75vh;
  object-fit: cover;
}

.custom-overlay {
    background: rgba(0, 0, 0, 0.2); 
    padding: 50px; 
    text-align: center;
    color: white; 
}

.custom-card {
    background: rgba(191, 148, 71, 0.75); 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s; 
    top: -5rem;
}

.custom-card:hover {
    transform: scale(1.1); 
}

/*First button*/
.btn-primary {
    background-color: #776565; 
    border-color: #bf9447;
}

.btn-primary:hover {
    background-color: #bf9447; 
    border-color: #bf9447;
}

/*Second button*/
.btn-primary2 {
    background-color: #6a8385; 
    border-color: #bf9447;
}

.btn-primary2:hover {
    background-color: #bf9447; 
    border-color: #bf9447;
}


.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    animation: fadeIn 0.3s ease; /* Dauer und Übergangsfunktion anpassen */
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .p-7 {
    padding: 7rem !important;
  }

  .cardcustom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .cardcustom:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }

  .cardcustom img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
  }

  .cardcustom-title {
    font-size: 1.5rem;
  }

  .cardcustom-text {
    color: #666;
  }

  .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
  }