/* =========================================================
   EK4Y – FÖRDERMITTELBERATUNG
   Version: 2025-11
========================================================= */

/* HERO */
#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
  }
  #hero img#bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
  }
  #hero .hero-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  #hero .hero-title {
    font-weight: 700;
    font-size: clamp(1.8rem,3vw,2.6rem);
  }
  #hero .hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* Karten */
  .leistungen-card {
    border: none;
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .leistungen-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .leistungen-card .card-body {
    padding: 1.5rem;
    flex: 1;
  }
  .leistungen-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0a5c3e;
    margin-bottom: 1rem;
  }
  .leistungen-card p {
    color: #555;
    line-height: 1.6;
  }
  .leistungen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  
  /* Vorteile */
  .vorteil-box {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .vorteil-box h3 i {
    font-size: 2rem;
    color: #17d68f;
  }
  .vorteil-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: #17d68f;
  }
  .vorteil-box:hover i {
    color: #13b97c;
  }
  .vorteil-box .vorteil-title {
    font-weight: 600;
    color: #000;
    margin: 1rem 0 0.5rem;
  }
  .vorteil-box p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  
  /* Tooltip Styling */
  .tooltip-inner {
    background-color: #111 !important;
    color: #fff !important;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    max-width: 260px !important;
    white-space: normal;
  }
  .tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #111 !important;
  }
  
  /* Für wen */
  #foerderung {
    padding: 4rem 0;
    color: #333;
  }
  #foerderung h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0a5c3e;
    margin-bottom: 1.5rem;
  }
  #foerderung p {
    color: #000;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  #foerderung img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    transition: transform .4s ease, box-shadow .4s ease;
  }
  #foerderung img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
  }
  
  /* Smarte Technik */
  #smarte-technik {
    padding: 4rem 0;
    background: #fff;
  }
  #smarte-technik .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .icon-box {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    border-radius: 1rem;
    min-height: 180px;
  }
  .icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
  }
  .icon-box i {
    color: #17d68f;
    transition: transform .3s;
  }
  .icon-box:hover i {
    transform: scale(1.15);
  }
  .icon-box h5 {
    color: #000;
    font-weight: 600;
    margin-top: 1rem;
  }
  .icon-box:hover h5 {
    color: #17d68f;
  }
  
  /* Responsive */
  @media (max-width: 991.98px) {
    #foerderung, #foerderung-vorteile, #smarte-technik {
      text-align: center;
    }
    #foerderung img {
      margin-top: 2rem;
    }
  }
  