/* Eigene Styles für Hausmeisterservice Orban - jetzt in Grün/Weiß */
body {
  background-color: #f8f9fa;
}

footer {
  font-size: 0.95rem;
}

img[alt="Raymund Orban"] {
  border: 4px solid #0d6efd;
}

.hero-section {
  background: linear-gradient(120deg, #198754 60%, #6fcf97 100%); /* Bootstrap grün + hellgrün */
  position: relative;
  overflow: hidden;
}
.hero-bg {
  background: url('/img/hero-bg-pattern.svg') repeat;
  opacity: 0.08;
  z-index: 1;
}
.hero-img {
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 8px 32px rgba(25,135,84,0.15);
}
.hero-img:hover {
  transform: scale(1.05) rotate(-2deg);
}
.btn-primary, .btn-outline-light, .btn-light {
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn-primary, .btn-primary:active, .btn-primary:focus {
  background-color: #0C7E34 !important;
  border-color: #0C7E34 !important;
}
.btn-primary:hover, .btn-outline-light:hover, .btn-light:hover {
  box-shadow: 0 8px 24px rgba(25,135,84,0.2);
  filter: brightness(1.08);
}
.card {
  border-radius: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card.hover-shadow:hover {
  box-shadow: 0 8px 32px rgba(25,135,84,0.12);
  transform: translateY(-6px) scale(1.03);
}
section {
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.list-group-item {
  background: transparent;
  border: none;
  font-size: 1.1rem;
}
.navbar, .navbar.bg-primary, .bg-primary {
  background-color: #0C7E34 !important;
  border-color: #0C7E34 !important;
}
.text-primary {
  color: #0C7E34 !important;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  
  .card {
    margin-bottom: 15px;
  }
  
  .card-body {
    padding: 15px;
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card-text {
    font-size: 0.9rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-toggler {
    padding: 0.4rem 0.8rem;
  }
  
  .nav-link {
    padding: 0.5rem 0;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-img {
    max-width: 100%;
    height: auto;
  }
  
  /* Verbesserte Touch-Interaktion für mobile Geräte */
  .card.hover-shadow:hover {
    transform: none;
  }
  
  .card.hover-shadow:active {
    transform: scale(0.98);
  }
  
  /* Bessere Lesbarkeit auf kleinen Bildschirmen */
  p {
    line-height: 1.6;
  }
  
  /* Optimierte Buttons für Touch-Geräte */
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    min-height: 44px; /* Mindesthöhe für Touch-Targets */
  }
  
  /* Verbesserte Abstände für mobile Ansicht */
  section {
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
  }
  
  /* Optimierte Icon-Größen */
  .bi {
    font-size: 1.8rem;
  }
} 