:root {
  --och-green: #006400;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Merriweather", serif;
}

.hero-bg {
  background-image: image-set(
    url("assets/hero-mobile.avif") type("image/avif"),
    url("assets/hero-mobile.webp") type("image/webp"),
    url("assets/WhatsApp Image 2026-02-15 at 22.57.07.jpeg") type("image/jpeg")
  );
  background-position: center 20%;
}

@media (min-width: 768px) {
  .hero-bg {
    background-image: image-set(
      url("assets/hero-desktop.avif") type("image/avif"),
      url("assets/hero-desktop.webp") type("image/webp"),
      url("assets/WhatsApp Image 2026-02-15 at 22.57.10.jpeg") type("image/jpeg")
    );
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #16a34a;
  outline-offset: 2px;
}

#mobileMenuBtn:focus-visible {
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.25);
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-block;
  padding: 0.6rem 0;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.step-indicator {
  background-color: #f3f4f6;
  color: #4b5563;
}

.step-indicator--active {
  background-color: var(--och-green);
  color: #ffffff;
}

.menu-line {
  height: 0.18rem;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--och-green);
  transition: all 0.3s ease;
}

.header-shell {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .header-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
}

#mobileMenuBtn.is-active .menu-line:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

#mobileMenuBtn.is-active .menu-line:nth-child(2) {
  opacity: 0;
}

#mobileMenuBtn.is-active .menu-line:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

