/* ============================================================
   main.bundle.css – consolidiert & modernisiert (2025)
   Enthält: Bootstrap ➜ global styles ➜ custom overrides
   ============================================================ */

/* === 1. BOOTSTRAP === */
@import url("bootstrap.min.css");

/* === 2. BASIS-STILE (Layout, Farben, Typography) === */
@import url("style.css");
@import url("style-responsive.css");
@import url("vertical-rhythm.min.css");

/* === 3. PLUGINS (wenn diese Abschnitte auf der Seite existieren) === */
@import url("magnific-popup.css");
@import url("owl.carousel.css");
@import url("splitting.css");
@import url("YTPlayer.css");

/* === 4. CUSTOM STYLES === */
@import url("styles_custom.css");
@import url("demo-main/demo-main.css");

/* === 5. OPTIMIERTE ZUSATZREGELN (hier direkt ergänzt) === */

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #333;
}

/* Hero Fix */
.hero-section {
  background: #f8f9fa;
  padding: clamp(80px, 12vw, 140px) 20px 60px;
}

/* Navbar‑Fix für Sticky Header */
.navbar {
  transition: box-shadow 0.3s ease;
}
.navbar.sticky {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Responsive Helpers */
img {
  max-width: 100%;
  height: auto;
}

/* Buttons einheitlich */
.btn,
.btn-primary {
  background-color: #006272;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn:hover,
.btn-primary:hover {
  background-color: #004F5A;
}

/* Hero Fonts */
.hero-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.tagline {
  color: #666;
}

/* Utility‑Spacing */
.mt-40 {margin-top: 2rem;}
.mb-40 {margin-bottom: 2rem;}

/* End of bundle */


/* === upbyte® Section Fix: Erfolgsgeschichten (Success Stories Hub) === */

.success-stories-hub {
  background: #f8f9fa;
  padding: 80px 0;
}

.success-stories-hub h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-stories-hub .section-descr {
  color: #666;
  margin-bottom: 3rem;
}

.success-story {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  border: 1px solid #e9ecef;
}

.company-highlight {
  text-align: center;
}

.company-highlight img {
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
  filter: grayscale(0);
  transition: filter .3s ease;
}

.company-highlight img:hover {
  filter: grayscale(100%);
}

.company-highlight h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.results {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.metric {
  background: #006272;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
}

.story-content h4 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.story-content p {
  color: #555;
  line-height: 1.6;
}

.project-highlights {
  font-size: .9rem;
  color: #666;
  margin-top: .75rem;
}

/* Contact details under logos */
.contact-details {
  font-size: .9rem;
  color: #666;
  line-height: 1.6;
}

.contact-details a {
  color: #006272;
  text-decoration: none;
}

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

/* === Responsive adjustments === */
@media (max-width: 768px) {
  .success-story {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 24px 16px;
  }
  .company-highlight img {
      margin-bottom: 12px;
  }
  .story-content h4 {
      font-size: 1rem;
      margin-top: 10px;
  }
  .results {
      justify-content: center;
  }
}