:root {
  --primary-color: #c9341b;
  --secondary-color: #444443;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

.head-logo {width:252px;
           height:130px;
           margin-top:0%;}

.navbar {
  background-color: #FFFFFF;
  border-bottom:4px solid #c9341b;
}

.navbar-brand,
.nav-link {
  color: #444443 !important;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding:0px;
}

.navbar-nav .nav-link {
  margin: 0 10px; /* Abstand links und rechts */
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #c9341b;
  transition: width 0.3s ease;
  margin: auto;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  text-decoration:none;
  color: #c9341b !important;
}


.carousel-caption {
  background-color: rgba(68, 68, 67, 0.75);
  padding: 1rem;
  border-radius: 10px;
}

h1 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600; /* nicht zu fett, nicht zu dünn */
  letter-spacing: 0.5px; /* leichte Weite wie im Logo */
  text-transform: uppercase; /* optional: gleiche Wirkung wie im Logo */
}

h2 {font-size: 2rem;
    text-align: center;}

.content-section {
  padding: 2rem 0;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 0 15px;
  z-index: 10;
}

.carousel-control-prev {
  left: 8%;
}

.carousel-control-next {
  right: 8%;
}

.custom-carousel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.custom-carousel-icon:hover {
  transform: scale(1.1);
}

.custom-carousel-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.head-content {margin-bottom:1%;}

.yellow-bg {background-color: #444443;}

.yellow-content {margin-bottom:-20px;
                 padding:20px;
                 text-align: center;
                color:#FFFFFF;}


/* Hintergrund für ganze Zeile */
.info-section {
  background-color: #f9f9f9; /* sanftes Hellgrau */
}

/* Box-Styling */
.info-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

/* Icon-Farbe */
.icon-highlight {
  color: #c9341b;
}

.btn-primary {
  color: #fff;
  background-color: #c9341b;
  border-color: #c9341b;
}

.btn-primary:hover {
  color: #fff;
  background-color: #c9341b;
  border-color:#c9341b;
}

.btn-direction,
.btn-review {
  background-color: #444443;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-direction:hover,
.btn-review:hover {
  background-color: #444443;
  text-decoration: none;
  color: #c9341b;
}

.btn-direction i,
.btn-review i {
  font-size: 16px;
}

.gallery-thumb-large {
  height: 350px; /* Größere Höhe als vorher */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-thumb-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.carousel-control-prev {
  background-color: #444443;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.carousel-control-next {
  background-color: #444443;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

ul.checklist {
  list-style: none;        /* Standard-Bullets ausblenden */
  padding: 0;
  margin: 0;
}

ul.checklist li {
  position: relative;
  padding-left: 1.8em;     /* Platz fürs Häkchen */
  margin-bottom: 0.5em;
}

ul.checklist li::before {
  content: "✔";            /* Unicode-Häkchen */
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Häkchen in deiner Hauptfarbe */
  font-weight: bold;
}


.footer {
  background-color: #c9341b; /* dunkelblau, passend zum Logo */
  color: white;
  padding-top: 20px;
  padding-bottom:10px;
  font-size: 0.9rem;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.3rem;
  text-decoration: none;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.8rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight:bold;
}

.footer-line {border-top: 1px solid #FFF;
             width:auto;
             max-width:30%;
             margin-left:0%;}

.footer-link {color:#FFFFFF;
              text-decoration: none;}         

.footer-link:hover {color:#FFFFFF;
                   text-decoration: none;}  
                   
.content-link {color:#c9341b;
                text-decoration: none;}   

.content-link:hover {color:#c9341b;
                    text-decoration: none;}    

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  font-size: 18px;
  background-color: #444443;
  color: #111;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background-color: #fff;
  color: #444443;
}
          

 @media (max-width: 768px) and (orientation: portrait) {

 .navbar-toggler {padding: .25rem .6rem;
                  font-size: 1.25rem;
                  line-height: 1;
                  background-color: #444443;
                  border: none;
                  border-radius: .25rem;
                  margin-top: 40px;
                  margin-right: 5%;}
            
 .navbar-toggler-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 background-repeat: no-repeat;
 background-position: center;
 background-size: 100% 100%;
 width: 30px;
 height: 30px;}

  h1 {font-size: 1.5rem;}

  .footer {background-color: #c9341b;
           color: white;
           padding-top: 20px;
           padding-bottom: 10px;
           font-size: 0.9rem;
           padding-left: 5%;}

  .img-fluid {max-width: 100%;
              height: auto;
              margin-bottom: 3%;}
      
            
 }