/* main.css – AutoLeasing.se */

:root {
  --al-primary: #0d6efd;
  --al-bg-gradient: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(13,110,253,0.75));
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f7;
}

/* HERO MED BILD + OVERLAY */

.hero-header {
  position: relative;
  background-image:
    var(--al-bg-gradient),
    url('/assets/img/hero-car.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-header .hero-overlay {
  position: absolute;
  inset: 0;
  /* extra lätt mörkläggning om du vill
  background: rgba(0, 0, 0, 0.15);
  */
}

.hero-header .container {
  position: relative;
  z-index: 1;
}

header .card {
  margin-top: -2rem;
}

@media (max-width: 991.98px) {
  header .card {
    margin-top: 1.5rem;
  }
}

/* NAVBAR */

.navbar-brand span {
  font-size: 1.05rem;
}

/* DEAL CARDS */

#dealsContainer .card {
  border-radius: 0.9rem;
}

#dealsContainer .card-body {
  padding: 1.25rem 1.25rem 1.1rem;
}

.price-highlight {
  line-height: 1;
}

.price-highlight .amount {
  font-size: 1.9rem;
  font-weight: 700;
}

.price-highlight .suffix {
  font-size: 0.9rem;
  color: #6c757d;
}

.badge-fuel {
  background-color: #e9ecef;
  color: #495057;
}

.text-spec {
  font-size: 0.85rem;
}

/* Footer */

footer {
  font-size: 0.9rem;
}

/* Typografi mobil */

@media (max-width: 575.98px) {
  .display-5 {
    font-size: 2rem;
  }

  header .lead {
    font-size: 0.98rem;
  }
}
/* Bild på deal-kort */

.deal-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0.9rem 0.9rem 0 0;
}

.deal-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

