/* assets/css/custom.css */

/* Grundschrift */
:root{
  --brand: #0d6efd;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, rgba(13,110,253,.12), rgba(13,110,253,0));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-card {
  border: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-radius: 1rem;
  overflow: hidden;
}

/* Bilder */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Kleine Helfer */
.section-title{
  letter-spacing: .2px;
}
.badge-soft{
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  border: 1px solid rgba(13,110,253,.18);
}
