@font-face {
      font-family: 'Nohemi';
      src: url('Nohemi-Light.otf') format('opentype');
      font-weight: 300;
    }
    @font-face {
      font-family: 'Nohemi';
      src: url('Nohemi-Medium.otf') format('opentype');
      font-weight: 500;
    }
    @font-face {
      font-family: 'Nohemi';
      src: url('Nohemi-Bold.otf') format('opentype');
      font-weight: 700;
    }

    body {
      margin: 0;
      font-family: 'Nohemi', sans-serif;
      background-color: #cde09a;
      color: #000;
      scroll-behavior: smooth;
    }

    header {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      padding: 2rem;
    }

    header img {
      max-width: 220px;
      margin-bottom: 2rem;
    }

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin: 0.5rem 0;
    }

    h2 {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    p.motto {
      font-style: italic;
      font-weight: 300;
      margin-bottom: 2rem;
    }

    section {
      max-width: 800px;
      margin: auto;
      padding: 3rem 1rem;
    }

    h3 {
      font-weight: 700;
      margin-top: 2rem;
    }

    ul {
      line-height: 1.6;
    }

    footer {
      text-align: center;
      padding: 3rem 1rem;
    }

    .contact-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
  
    .header-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1rem;
    }

    .scroll-indicator {
      font-size: 2rem;
      margin-top: 2rem;
      animation: bounce 2s infinite;
      color: #333;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(10px);
      }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem;
      }

      h2 {
        font-size: 1rem;
      }

      .contact-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
    }
    
    .hero-background {
  background: url('CZ_Xpert_1.svg') no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: auto;
  padding-top: 56.25%; /* maintains 16:9 aspect ratio */
  position: relative;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('CZ_Xpert_1.svg') center center / cover no-repeat;
  z-index: 1;
}





    .hero-background::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, rgba(194, 219, 161, 0) 0%, #c2dba1 100%);
      pointer-events: none;
    }
      background: url('CZ_Xpert_1.svg') no-repeat center center;
      background-size: cover;
      height: 100vh;
      width: 100%;
    }

    .intro-text {
      text-align: center;
      padding: 3rem 1rem 1rem;
    }

    body {
      background-color: #c2dba1;
    }
    
    .intro-wrap {
      max-width: 700px;
      margin: auto;
      padding: 2rem 1rem;
    }

    .intro-text h1 {
      font-size: 2.5rem;
      line-height: 1.2;
    }

    .intro-text h1 span.highlight {
      color: #2d2d2d;
      display: inline-block;
    }

    .intro-text .motto {
      font-size: 1.2rem;
      margin-top: 1.5rem;
    }

    .intro-text .subtext {
      display: block;
      font-size: 1rem;
      color: #444;
      margin-top: 0.5rem;
    }

    @media (max-width: 600px) {
      .intro-text h1 {
        font-size: 2rem;
      }

      .intro-text .motto {
        font-size: 1rem;
      }

      .intro-text .subtext {
        font-size: 0.9rem;
      }
    }
    
    .fade-slide {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideIn 1s ease-out forwards;
    }

    .delay-1 { animation-delay: 0.3s; }
    .delay-2 { animation-delay: 0.6s; }
    .delay-3 { animation-delay: 0.9s; }
    .delay-4 { animation-delay: 1.2s; }

    @keyframes fadeSlideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

    .contact-button:hover {
      transform: scale(1.05);
      background-color: #444;
    }

    section, footer {
      opacity: 0;
      transform: translateY(30px);
      animation: sectionFade 1s ease-out forwards;
      animation-delay: 1.8s;
    }

    @keyframes sectionFade {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .program {
      max-width: 800px;
      margin: auto;
      padding: 3rem 1rem;
    }

    .program-block {
      background: #f7f8f3;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .program-block h4 {
      margin-top: 0;
      font-size: 1.25rem;
    }

    .program-block p {
      margin: 0.5rem 0 0;
      font-size: 1rem;
    }
    
    @media (max-width: 768px) {
      .hero-background {
  background: url('CZ_Xpert_1.svg') no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: auto;
  padding-top: 56.25%; /* maintains 16:9 aspect ratio */
  position: relative;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('CZ_Xpert_1.svg') center center / cover no-repeat;
  z-index: 1;
}





    }
.contact-button[type="submit"],
form input[type="submit"].contact-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
