
/* =======================
RESET & BASIS
======================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1c1f26;
  background: #ffffff;
}

/* =======================
HEADER
======================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background: #0a2f4f;
}

.logo {
  height: 90px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* =======================
HERO
======================= */

.hero {
  background: linear-gradient(135deg, #0a2f4f, #12233f);
  padding: 100px 20px;
  color: #fff;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* 👈 zentriert */
  max-width: 1100px;
  margin: auto;
  gap: 35px;
}

/* =======================
BILDER LINKS & RECHTS
======================= */

.hero-side {
  position: relative;
  width: 220px;          /* 👈 kleiner */
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;

  /* dezenter Effekt */
  opacity: 0.9;
  filter: brightness(0.9);

  /* Premium Look */
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);

  transition: all 0.3s ease;
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover (optional Effekt) */
.hero-side:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

/* =======================
LABELS
======================= */

.label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
}

.label.after {
  background: #4CB648;
}

/* =======================
TEXT (MITTE)
======================= */

.hero-text {
  max-width: 520px;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;   /* 👈 etwas kompakter */
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text span {
  color: #4CB648;
}

.hero-text p {
  margin-bottom: 20px;
  color: #e6eaf2;
}

/* =======================
BUTTON
======================= */

.btn-primary {
  display: inline-block;
  background: #4CB648;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px 0;
}

.btn-primary:hover {
  background: #3a9b36;
}

/* =======================
TRUST LISTE
======================= */

.trust {
  list-style: none;
  padding: 0;
  color: #e6eaf2;
}

.trust li {
  margin-bottom: 6px;
}

/* =======================
SECTIONS
======================= */

.section {
  padding: 70px 20px;
  text-align: center;
}

.section.alt {
  background: #f4f6fa;
}

/* =======================
GRID
======================= */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.card {
  padding: 25px;
  border: 1px solid #e2e6ef;
  border-radius: 10px;
  background: #fff;
}

.card h3 {
  color: #1F3C73;
}

/* =======================
CTA
======================= */

.cta {
  background: #0a2f4f;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta a {
  margin-top: 20px;
  display: inline-block;
}

/* =======================
FOOTER
======================= */

footer {
  background: #0f1e38;
  color: #cbd4e7;
  text-align: center;
  padding: 30px;
}

/* =======================
MOBILE OPTIMIERUNG
======================= */

@media (max-width: 900px) {

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-side {
    width: 180px;
    height: 260px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

}



/* =======================
REFERENZEN
======================= */

.reference {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ref-box {
  position: relative;
  width: 260px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.ref-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-text {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
}

.ref-full {
  max-width: 900px;
  margin: 30px auto;
}

.ref-full img {
  width: 100%;
  border-radius: 12px;
}

/* =======================
SLIDER
======================= */

.slider {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.slide {
  display: none;
  text-align: center;
  animation: fade 0.5s ease;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* NAVIGATION */
.slider-controls {
  margin-top: 20px;
  text-align: center;
}

.slider-controls button {
  background: #0a2f4f;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.slider-controls button:hover {
  background: #1F3C73;
}

.ref-preview {
  max-width: 1000px;
  margin: 30px auto;
}

.ref-preview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-info {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
}

.contact-info a {
  color: #4CB648;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
}

.contact-info a {
  color: #4CB648;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-highlight {
  margin: 25px auto;
  max-width: 600px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}


``
