html {
  scroll-behavior: smooth;
}

body {
  background: #fcf3f0;
  color: #0d1406;
  font-family: "Sora", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.site-logo {
  max-height: 42px;
  width: auto;
}

.soft-card {
  border-radius: 12px;
  box-shadow: 4px 4px 0 #bb3f5b;
}

.soft-image {
  border-radius: 8px;
}

.button-soft,
button.button-soft,
input.button-soft,
form button,
form input[type="submit"] {
  border: 0;
  border-radius: 8px;
  background: #fffaf7;
  color: #0d1406;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08), 2px 2px 0 #0d1406;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-soft:hover,
button.button-soft:hover,
input.button-soft:hover,
form button:hover,
form input[type="submit"]:hover {
  background: #fcf3f0;
  transform: translate(-1px, -1px);
}

.input-soft,
input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
  border: 0;
  border-radius: 6px;
  background: #fffaf7;
  color: #0d1406;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: #bb3f5b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.geo-shape,
.geo-shape-secondary {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.geo-shape {
  width: 190px;
  height: 190px;
  border: 2px solid rgba(43, 85, 0, 0.16);
  border-radius: 12px;
  transform: rotate(10deg);
}

.geo-shape-secondary {
  width: 120px;
  height: 120px;
  background: rgba(187, 63, 91, 0.08);
  border-radius: 9999px;
}

.layer-panel {
  position: relative;
  z-index: 1;
}

.overlap-lift {
  margin-top: -2.5rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: #fffaf7;
  color: #0d1406;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #2b5500;
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #797349;
}

@media (max-width: 767px) {
  .overlap-lift {
    margin-top: 0;
  }
}
