/* ======================
   FONTS
   ====================== */

   @font-face {
    font-family: 'Kugile';
    src: url('assets/Kugile.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }
  
  /* Khmer MN is mostly system-based */
  :root {
    --accent: #550000;
    --text-font: 'Kugile', serif;
    --number-font: 'Khmer MN', serif;
  }
  
  /* ======================
     RESET
     ====================== */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--text-font);
    color: var(--accent);
    background: #fff;
    line-height: 1.6;
  }
  
  /* ======================
     HERO
     ====================== */
  
  .hero {
    position: relative;
    height: 100vh;
    background: url(images/Oog_BG1.jpg) center/cover no-repeat;
  }
  
  .logo {
    position: absolute;
    top: 40%; /* Plaats het logo 50% vanaf de bovenkant van de container */
    left: 50%; /* Plaats het logo 50% vanaf de linkerkant van de container */
    transform: translate(-50%, -50%); /* Corrigeer de positie om het logo perfect te centreren */
    width: 50vw; /* Maak het logo responsief door een breedte in viewport-eenheden te gebruiken */
    max-width: 400px; /* Beperk de maximale breedte van het logo */
    height: auto; /* Houd de hoogte proportioneel aan de breedte */
}
  
  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cta {
    margin-top: 150px;
    padding: 14px 28px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.15);
  }
  
  /* ======================
     INTRO
     ====================== */
  
  .intro {
    text-align: center;
    padding: 200px 20px;
  }
    
    @media (min-width: 768px) {
        .fontSize1 {
            font-size: 1rem; /* Grotere lettergrootte voor tablets en grotere schermen */
        }
    }
    
    @media (min-width: 1024px) {
        .fontSize1 {
            font-size: 4rem; /* Nog grotere lettergrootte voor desktops */
        }

        .kleineTekst {
            font-size: 2rem; /* Nog grotere lettergrootte voor desktops */
        }

        .hero {
            position: relative;
            min-height: 100vh;
            background: url(images/BG_Desktop.jpg) center/cover no-repeat;
          }
    }

  .intro h2 span {
    font-style: italic;
  }
  
  .divider {
    width: 60vw;
    height: 2px;
    background: var(--accent);
    margin: 20px auto 30px;
  }
  
  .intro p {
    margin-bottom: 20px;
  }

  .content-bg {
    background-image: url(images/Pattern.jpg); /* jouw PNG */
    background-repeat: repeat;
    background-size: 50vw; /* pas aan voor subtieler/groter */
    background-color: #fff;       /* fallback */
    padding-bottom: 200px;
  }  
  
  /* ======================
     TREATMENTS
     ====================== */
  
  .treatments {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .treatments h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .treatment {
    position: relative;
    margin-bottom: 20px;
  }
  
  .treatment img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .treatment span {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(0,0,0,0.25);
  }
  
  /* ======================
     FOOTER
     ====================== */
  
  .footer {
    background: var(--accent);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 30px;
  }
  
  .footer-left img {
    width: 90px;
    margin-bottom: 10px;
  }
  
  .footer .numbers {
    font-family: var(--number-font);
  }

  .numbersRight {
    margin-top: 90px;
    font-family: var(--number-font);
    text-align: right;
  }
  
  .footer-right {
    width: 80px;
    height: 80px;
    background: #fff;
  }
  
  /* ======================
     RESPONSIVE
     ====================== */
  
  @media (min-width: 768px) {
    .hero {
      height: 100vh;
    }

    .treatments {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  
    .treatments h2 {
      grid-column: span 2;
    }
  }
  