@font-face {
    font-family: 'Karantina';
    src: url('font/Karantina/Karantina-Regular.ttf') format('truetype'); /* Update the path and format */
}
@font-face {
    font-family: 'Antonio';
    src: url('font/Antonio/Antonio-VariableFont_wght.ttf') format('truetype'); /* Update the path and format */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    color: white;
  }
/* ===== Projects Section ===== */
.projects {
    background: #9fb8b2;         /* matches the light green/grey */
    padding: 70px 0 0;
  }
  
  .projects__title {
    text-align: center;
    color: #ffffff;
    letter-spacing: 3px;
    font-size: 120px;
    margin-bottom: 10px;
    font-family: Karantina, sans-serif;
    margin-top: 100px;
  }
  
  /* Each project band */
  .project {
    padding: 60px 0;
  }
  
  .project--light {
    background: #9fb8b2;
  }
  
  .project--dark {
    background: linear-gradient(180deg, #0b5d45, #0e6a50);
  }
  
  /* Inner layout */
  .project__inner {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 70px;
  }
  
  .project__inner--reverse {
    grid-template-columns: 1fr 1.05fr;
  }
  
  .project__inner--reverse .project__media { order: 2; }
  .project__inner--reverse .project__content { order: 1; }
  
  .project__media img {
    width: 600px;
    height: auto;
    display: block;
    margin-left: -80px;
  }
  
  /* Text blocks */
  .project__content {
    color: #ffffff;
    max-width: 520px;
    text-align: center;
  }
  
  .project__content--right { justify-self: start; }
  .project__content--left  { justify-self: start; }
  
  .project__heading {
    letter-spacing: 6px;
    font-size: 60px;
    margin-bottom: 18px;
    font-family: Antonio, sans-serif;
    white-space: nowrap;
  }
  
  .project__text {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 1px;
    margin-bottom: 22px;
    max-width: 460px;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 24px;
    font-weight: 600;
    font-family: Antonio, sans-serif;
  }
  
  .btn--dark {
    background: #0b5d45;
    color: #ffffff;
  }
  
  .btn--light {
    background: #c9d7d3;
    color: #2a2a2a;
  }
  
  @media (max-width: 820px) {
    .projects {
      padding-top: 45px;
    }
  
    .projects__title {
      font-size: 72px;
      letter-spacing: 2px;
      margin-bottom: 18px;
    }
  
    .project {
      padding: 42px 0;
    }
  
    .project__inner,
    .project__inner--reverse {
      grid-template-columns: 1fr;
      gap: 18px;
      text-align: center;
    }
  
    .project__inner--reverse .project__media,
    .project__inner--reverse .project__content {
      order: initial;
    }
  
    .project__media {
      display: flex;
      justify-content: center;
    }
  
    .project__media img {
      width: 92%;
      max-width: 400px;
      height: auto;
    }
  
    .project__content {
      margin: 0 auto;
      max-width: 520px;
    }
  
    .project__heading {
      font-size: 34px;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }
  
    .project__text {
      font-size: 15px;
      line-height: 1.6;
      letter-spacing: 0.4px;
      margin: 0 auto 18px;
      max-width: 44ch;
    }
  
    .btn {
      font-size: 12px;
      padding: 12px 26px;
    }
  }
  
  .section-divider{
    height: 120px;
    background: #0b5d45; /* same green as your site */
  }