@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-UltLightIt.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-MediumIt.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Next Slab Pro';
  src: url('adm-fonts/DINNextSlabPro-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-color: #1a2456;
  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'DIN Next Slab Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
}

.site-header {
  padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
}

.logo {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  text-decoration: none;
}

.logo svg,
.logo img {
  height: clamp(24px, 3vw, 36px);
  width: auto;
}

.hero {
  padding: clamp(36px, 7vw, 72px) clamp(20px, 5vw, 60px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  position: relative;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(18px, 3vw, 24px);
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: clamp(12px, 1.8vw, 18px);
}

h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(80px, 12vw, 180px);
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
}

.subhead {
  margin: 0 0 clamp(32px, 5vw, 48px);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.9;
  color: #ffffff;
}

.leaf-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

.leaf-grid li {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .leaf-grid {
    gap: clamp(16px, 4vw, 28px);
  }

  .leaf {
    min-width: clamp(150px, 36vw, 200px);
    max-width: clamp(180px, 40vw, 220px);
  }
}

@media (max-width: 640px) {
  .leaf-grid {
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 6vw, 28px);
  }

  .leaf {
    width: min(320px, 90vw);
    max-width: 100%;
    aspect-ratio: auto;
    padding: clamp(18px, 6vw, 28px);
  }
}

@media (min-width: 1200px) {
  .leaf-grid {
    flex-wrap: nowrap;
  }
}

.leaf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 2 / 1;
  padding: clamp(24px, 3vw, 32px);
  min-width: clamp(180px, 16vw, 220px);
  max-width: clamp(200px, 18vw, 240px);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 16px);
  text-decoration: none;
  background: linear-gradient(135deg, #7bc142 0%, #5fa832 100%);
  border-top-left-radius: clamp(32px, 6vw, 60px);
  border-bottom-right-radius: clamp(32px, 6vw, 60px);
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: all 0.3s ease;
  outline: none;
  overflow: hidden;
}

.leaf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leaf:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.leaf:hover::before {
  opacity: 1;
}

.leaf:active {
  transform: translateY(-2px) scale(1.01);
}

.leaf:focus-visible {
  outline: 3px solid #7bc142;
  outline-offset: 4px;
}

.leaf-label {
  position: relative;
  z-index: 1;
  line-height: 1.3;
  padding: 0 clamp(12px, 2vw, 20px);
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .leaf {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  h1 {
    margin-bottom: 8px;
  }

  .subhead {
    margin-bottom: 32px;
  }
}
  
