html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

section[id] {
  scroll-margin-top: 92px;
}

h1, h2, h3, .navbar-brand {
  font-family: "Oswald", "Trebuchet MS", sans-serif;
}

.navbar .nav-link {
  transition: color .2s ease;
}

.navbar .nav-link.active {
  color: var(--bs-warning) !important;
  font-weight: 600;
}

.hero-section {
  min-height: 70vh;
  background:
    linear-gradient(rgba(20, 18, 16, 0.58), rgba(20, 18, 16, 0.72)),
    url("../img/hero-desktop.webp") center/cover no-repeat;
}

.carousel-cover {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.motif-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.map-wrap {
  height: 100%;
  min-height: 460px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--bs-box-shadow-lg);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 60vh;
    padding: 4rem 0;
    background:
      linear-gradient(rgba(20, 18, 16, 0.58), rgba(20, 18, 16, 0.74)),
      url("../img/hero-mobile.webp") center/cover no-repeat;
  }

  .carousel-cover {
    aspect-ratio: 16 / 10;
  }

  .map-wrap {
    min-height: 320px;
  }
}
