@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;
  }

  /* ===== ABOUT HERO SECTION ===== */
.about-hero{
    background: linear-gradient(180deg, #0b5d45, #0e6a50);
    padding: 140px 0 90px;   /* space for your fixed nav + bottom spacing */
    overflow: hidden;
  }
  
  .about-hero__inner{
    width: min(1250px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: center;
    gap: 70px;
  }
  
  /* Left image */
  .about-hero__media{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  
  .about-hero__media img{
    width: 500px;
    height: auto;
    display: block;
  }
  
  /* Right text */
  .about-hero__title{
    font-family: Karantina, sans-serif;
    font-size: 120px;
    letter-spacing: 3px;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 26px;
    white-space: nowrap;
  }
  
  .about-hero__p{
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    max-width: 720px;
    margin-bottom: 28px;
  }
  
  /* ===== Mobile ===== */
  @media (max-width: 820px){
    .about-hero{
      padding: 120px 0 60px;
    }
  
    .about-hero__inner{
      grid-template-columns: 1fr;
      gap: 24px;
      text-align: center;
    }
  
    .about-hero__media{
      justify-content: center;
    }
  
    .about-hero__media img{
      width: min(340px, 85vw);
    }
  
    .about-hero__title{
      font-size: 78px;
      white-space: normal; /* allow wrap on small screens */
    }
  
    .about-hero__p{
      font-size: 16px;
      max-width: 44ch;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 18px;
    }
  }
  
  /* ===== EXPERIENCE SECTION ===== */
.experience{
    background: linear-gradient(180deg, #0b5d45, #0e6a50);
    padding: 60px 0 80px;
  }
  
  .experience__inner{
    width: min(1200px, 92%);
    margin: 0 auto;
  }
  
  /* Title */
  .experience__title{
    font-family: Karantina, sans-serif;
    font-size: 90px;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
  }
  
  /* Grid */
  .experience__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  /* Cards */
  .exp-card{
    background: #9fb8b2;
    border-radius: 10px;
    padding: 40px 28px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 320px;
  }
  
  /* Icon */
  .exp-card__icon{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 22px;
  }
  
  /* Heading */
  .exp-card__heading{
    font-family: Antonio, sans-serif;
    font-size: 50px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 14px;
  }
  
  /* Text */
  .exp-card__text{
    
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.6px;
    color: #ffffff;
    font-weight: 600;
    max-width: 32ch;
  }
  
  /* ===== Mobile ===== */
  @media (max-width: 820px){
    .experience__title{
      font-size: 64px;
      margin-bottom: 30px;
    }
  
    .experience__grid{
      grid-template-columns: 1fr;
      gap: 20px;
      justify-items: center;
    }
  
    .exp-card{
      min-height: auto;
      padding: 30px 22px;
      
    }
  
    .exp-card__heading{
      font-size: 46px;
    }
  }
  /* ===== CV SECTION ===== */
.cv-section{
    background: #9fb8b2;
    padding: 70px 20px 90px;
    text-align: center;
  }
  
  .cv-section__inner{
    width: min(900px, 92%);
    margin: 0 auto;
  }
  
  .cv-section__text{
    font-family: Antonio, sans-serif;
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
    text-transform: uppercase;
  }
  
  /* Button */
  .cv-btn{
    display: inline-block;
    margin-top: 10px;
    padding: 18px 70px;
    background: #0b5d45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-family: Antonio, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700;
  }
  
  /* Mobile */
  @media (max-width: 820px){
    .cv-section__text{
      font-size: 22px;
    }
  
    .cv-btn{
      font-size: 16px;
      padding: 14px 50px;
    }
  }
  
  /* ===== MY BACKGROUND ===== */
.background{
    background: linear-gradient(180deg, #0b5d45, #0e6a50);
    padding: 70px 0 90px;
  }
  
  .background__inner{
    width: min(1100px, 92%);
    margin: 0 auto;
  }
  
  .background__title{
    font-family: Karantina, sans-serif;
    font-size: 90px;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: 2px;
  }
  
  /* GRID */
  .background__grid{
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 32px;
    align-items: stretch;
  
    grid-template-areas:
      "t1 i1"
      "i2 t2"
      "t3 i3";
  }
  
  /* Place items */
  .bg-box--t1{ grid-area: t1; }
  .bg-img--i1{ grid-area: i1; }
  
  .bg-img--i2{ grid-area: i2; }
  .bg-box--t2{ grid-area: t2; }
  
  .bg-box--t3{ grid-area: t3; }
  .bg-img--i3{ grid-area: i3; }
  
  /* TEXT BOXES */
  .bg-box{
    background: #9fb8b2;
    border-radius: 10px;
    padding: 22px 22px;
    color: #fff;
    
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
  }
  
  .bg-box p{ margin: 0 0 12px 0; }
  .bg-box p:last-child{ margin-bottom: 0; }
  
  /* Make the small text box sit nicely */
  .bg-box--t3{
    display: flex;
    align-items: center;
    min-height: 140px;
  }
  
  /* IMAGES */
  .bg-img{
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
  }
  
  /* Shark: fill the row height */
  .bg-img--i1{
    height: 100%;
    min-height: 260px;
  }
  
  /* Ski: make it taller */
  .bg-img--i2{
    height: 100%;
    min-height: 420px; /* adjust for how tall you want it */
  }
  
  /* Funny image */
  .bg-img--i3{
    height: 100%;
    min-height: 260px;
  }
  
  /* ===== Mobile ===== */
  @media (max-width: 820px){
    .background__title{ font-size: 60px; }
  
    .background__grid{
        grid-template-columns: 1fr;
        grid-template-areas:
          "i1"
          "t1"
          "i2"
          "t2"
          "i3"
          "t3";
      }
  
    .bg-img--i1,
    .bg-img--i2,
    .bg-img--i3{
      min-height: 220px;
    }
  
    .bg-box--t3{
      min-height: auto;
    }
  }
  /* ===== FINAL CTA SECTION ===== */
.contact-cta{
    background: #9fb8b2;
    padding: 90px 20px 100px;
    text-align: center;
  }
  
  .contact-cta__inner{
    width: min(1000px, 92%);
    margin: 0 auto;
  }
  
  /* Title */
  .contact-cta__title{
    font-family: Karantina, sans-serif;
    font-size: 110px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 30px;
    white-space: nowrap;
  }
  
  /* Text */
  .contact-cta__text{
    font-family: Antonio, sans-serif;
    font-size: 28px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .contact-cta__text--wide{
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Buttons */
  .contact-cta__buttons{
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 35px;
  }
  
  .cta-btn{
    background: #0b5d45;
    color: white;
    text-decoration: none;
    font-family: Antonio, sans-serif;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 20px;
    padding: 18px 70px;
    border-radius: 12px;
    display: inline-block;
  }
  
  /* ===== Mobile ===== */
  @media (max-width: 820px){
  
    .contact-cta__title{
      font-size: 70px;
      white-space: normal;   /* ensure wrapping */
      line-height: 0.95;
      padding: 0 10px;       /* prevents edge touching */
    }
  
    .contact-cta__text{
      font-size: 22px;
    }
  
    .contact-cta__buttons{
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
  
    .cta-btn{
      width: 260px;
      text-align: center;
    }
  }
  
  .section-divider{
    height: 120px;
    background: #0b5d45; /* same green as your site */
  }