* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: white;
  scroll-behavior: smooth;
}



/* Header Styling */
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  width: 180px;
  height: auto;
}

/* Navigation */
nav {
  display: flex;
  gap: 16px;
}

.navLink {
  color: red;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  padding: 5px 10px;
}

.navLink:hover {
  color: #000;
}

/* Hamburger Style */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/images/heroimage.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 30px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 2s ease-in-out;
}

.subtext {
  font-size: 1.4rem;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
  color: white !important;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  text-transform: uppercase;
}

.cta-btn.primary {
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

/* Hover Effekt */
.cta-btn.primary:hover {
  background: linear-gradient(
    135deg,
    #ff0000,
    #8b0000
  ); /* Helleres Rot für Hover */
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(255, 0, 0, 0.7);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  background: linear-gradient(135deg, #0b1e2d, #5e6977);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 60px 5%;
  background-color: #fff;
}

.about-text {
  flex: 1;
  max-width: 600px;

}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
  color: #222;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;

}

.about-stats {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #8b0000, #000000);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(138, 23, 8, 0.2);
  text-align: center;
  color: white;
  max-width: 350px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}

.service-section {
  text-align: center;
  padding: 60px 5%;
}

.service-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.service-header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.service-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  width: 300px;
  text-align: center;
  padding-bottom: 20px;
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-box h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  color: #222;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.highlights-section {

  padding: 80px 5%;
  background: none;
  text-align: center;
}

.highlights-section-h3{
  margin-top: 3rem;
 margin-bottom: 3rem;
  font-size: 2.5rem;
color: black;
}

.container {
width: 100%;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: black;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.highlight-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
 
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

.service-card {
  border-radius: 16px;
  border: 1px solid #8b0000;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  max-width: 400px;
}

.service-icon {
  color: red;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; /* kleinerer Abstand */
  padding: 1rem;
  max-width: 1800px;
  margin: 0 auto;
}





.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
}

.card-text {
  font-size: 0.95rem;
  color: black;
  line-height: 1.5;
}

.about-us {
  padding: 60px 20px;
  text-align: center;
}

.about-us .container {
  max-width: 1200px;
  margin: auto;
}
.about-us h4 {
  font-size: 2.5rem;
  margin-bottom: 20px;
color: black;
}
.about-us p {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
}
.about-us .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.about-us .highlight-box {
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}
.about-us .highlight-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white !important;
 
}
.about-us .highlight-box p {
  font-size: 14px;
}

.impressum-box {
  color: white;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.impressum-box p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.impressum-box a {
  color: #ccc;
  text-decoration: underline;
}


.highlight-box p  {
  color: white !important;
}
.about-us .button-container {
  margin-top: 30px;
}
.about-us .icon {
  font-size: 40px;
  color: white;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-button {
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
  color: white;
  margin-top: 15px;
  border: none;
  padding: 10px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.about-us .cta-btn {
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}


.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 0;


  text-align: center;
  width: 100%;
}

.footer-container {


  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(
    135deg,
    #8b0000,
    #000000
  ); /* Dunkelrot zu Schwarz */
  padding: 20px;
}
.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}
.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
color: #fff;
  
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 5px 0;
}
.footer-section ul li a,
.footer-section p a {
color: #fff;
  text-decoration: none;
  line-height: 2rem;
}
.footer-section p {
color: #fff;
  
}
.footer-section ul li a:hover,
.footer-section p a:hover {
  color: #888;
}

.steps-section {
  padding: 80px 24px;
  background: #f8f8f8;
}

.steps-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  font-weight: 700;
}

.steps-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-box {
  border-radius: 16px;
  border: 1px solid #8b0000;
  padding: 32px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-box h3, p {
  color: black;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, #8b0000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}



.kontakt-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-section h2 {
  font-size: 28px;
  margin-bottom: 30px;

}

.kontakt-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.kontakt-info {
  flex: 1;
  min-width: 300px;
}

.kontakt-info p,
.kontakt-info a {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-decoration: none;
}

.kontakt-info h3 {
  margin-top: 30px;
  font-size: 18px;
  color: #111;
}

.cta-btn.red {
  display: inline-block;
  margin-top: 20px;
  background: #c00;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn.red:hover {
  background: #900;
}

.kontakt-formular {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kontakt-formular input,
.kontakt-formular textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  border-color: #c00;
  outline: none;
}

.kontakt-formular label {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt-formular button {
  background: #222;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.kontakt-formular button:hover {
  background: #000;
}



 /* Sehr große Screens: 4 Spalten ab 1400px */
@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); 
    max-width: 100%; 
    gap: 1rem;      
  }
}






/* Sehr große Screens: 4 Spalten ab 1400px */



@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  nav.open {
    display: flex;
    max-height: 500px; 
    padding: 20px 24px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hamburger {
    display: flex;
  }

  .about-us .grid {
    flex-direction: column;
    align-items: center;
  }

  footer {
    display: flex;
    width: 100%;
  }

  .about-text h2 {
    font-size: 30px;
    width: 100%;
  }

  .card-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }

  .about-section {
    display: flex;
    flex-direction: column !important;
  }

    .kontakt-container {
    flex-direction: column;
  }

  .kontakt-formular button,
  .cta-btn.red {
    width: 100%;
  }
}
