     @font-face {
  font-family: 'Userway Dyslexia';
  src: url('../fonts/Userway Dyslexia Font.ttf') format('truetype');
  font-style: normal;
}
 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Userway Dyslexia';
      overflow-x: hidden;
    }

    /* Header */
    header {
        height: 7vh;
      display: flex;
    align-items: center;
    justify-content: center;
      background-color: #bb8a0b;
      color: white;
      font-size: 1.1rem;
    }

    /* Hero Section */
    /* Hero Section */
.age-hero {
  position: relative;
  height: 92vh;
  width: 100vw;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.age-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.age-hero > * {
  position: relative;
  z-index: 2;
}

/* Desktop Background */
@media (min-width: 769px) {
  .age-hero {
    background-image: url("../../assets/images/ppc3.webp");
  }
}

.age-wrapper {
  position: relative;
  display: flex;
  left: 12.5%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Logo */
.age-logo {
  position: relative;
  z-index: 2;
  width: 25vw;
  max-width: 300px;
  min-width: 80px;
  bottom: 5%;
}

/* Popup */
.age-popup {
  position: relative;
  background: rgba(255, 255, 255, 0);
  border-radius: 1rem;
  padding: 2rem 4rem;
  text-align: center;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}

.age-popup h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ffd767;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.age-buttons a {
  text-decoration: none;
  background: #ffd767;
  color: #000;
  padding: 0.8em 2em;
  border-radius: 1em;
  font-size: 1.3rem;
  transition: background 0.3s ease;
  font-weight: bold;
}

.age-buttons a:hover {
  background: #ffd767;
}
/* Footer */ 
footer {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #50257e;
  color: white;
  font-size: 1.3rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}
/* Mobile */
@media (max-width: 768px) {
  .age-hero {
    background-image: url("../../assets/images/ppc3m.webp");
  }

  .age-wrapper {
    width: 100%;
    left: 0%;
  }

  .age-logo {
    min-width: 300px;
    bottom: 6%;
  }

  .age-popup {
    padding: 2rem 1rem;
  }

  .age-popup h2 {
    font-size: 1.85rem;
  }

  .age-buttons {
    gap: 1rem;
  }

  .age-buttons a {
    font-size: 1.3rem;
  }
}
