@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6b7f4;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.container {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  padding: 40px 80px;
}

#menuIcons {
    display: none;
}

#closeIcons {
    display: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .45s ease;
    width: 100%;
    height: 10%;
    top: 0;
    right: 0;
    padding: 2% 0%;
    z-index: 1000;
}

.logo {
  color: #d96fc3;
  font-size: 24px;
}

.navMenu {
    flex: 1;
    text-align: right;
}

.navMenu ul li {
    display: inline-block;
    margin: 0 25px;
    padding: 8px 12px;
    position: relative;
}

.navMenu a {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all .45s ease;
}

.navMenu a:hover {
    color: #ffffff;
    background-color: #d96fc3;
    padding: 4px 12px;
    border-radius: 6px;
    transform: scale(0.8);
}

.contact-btn {
    background-color: #fff;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    padding: 6px 12px;
    cursor: pointer;
    transition: all .45s ease;
}

.contact-btn:hover {
    background-color: #d96fc3;
    transform: scale(0.9);
    color: #fff;
    border: none;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 40px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.join-btn {
  background-color: #e6b7f4;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 800;
  transition: all .45s ease;
}

.join-btn:hover {
  transform: scale(0.9);
}

.learn-btn {
  border: 1px solid #000;
  padding: 12px 24px;
  border-radius: 20px;
  background: none;
  cursor: pointer;
  font-weight: 800;
  transition: all .45s ease;
}

.learn-btn:hover {
  transform: scale(0.9);
}

.stats {
  display: flex;
  gap: 40px;
}

.stats h3 {
  font-size: 22px;
}

.stats div {
  border-right: 1px solid #000;
  padding-right: 20px;
}

.hero-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-images img {
  width: 250px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.adam {
    font-size: 12px;
    font-weight: 100;
    margin-top: 20px;
    color: #555;
}

.adam .btn {
  background-color: #d96fc3;
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  margin-top: 6px;
}

.adam .btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}


/* =============================== */
/* 🖥️ Large Desktop Screens        */
/* Max Width: 1480px              */
/* =============================== */
@media (max-width: 1480px) {
  .container {
    padding: 30px 60px;
  }

  .hero-text h2 {
    font-size: 34px;
  }

  .hero-images img {
    width: 140px;
    height: 140px;
  }
}

/* =============================== */
/* 💻 Medium Desktop / Laptops     */
/* Max Width: 1100px              */
/* =============================== */
@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-images {
    flex-direction: row;
    gap: 15px;
  }

  .hero-images img {
    width: 130px;
    height: 130px;
  }

  .adam {
    margin-top: 40px;
    font-size: 12px;
  }
}

/* =============================== */
/* 📟 Tablets / Small Laptops      */
/* Max Width: 920px               */
/* =============================== */
@media (max-width: 920px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .join-btn,
  .learn-btn {
    width: 100%;
  }

  .stats {
    flex-direction: row;
    gap: 20px;
  }

  header #menuIcons {
        display: block;
        color: #d96fc3;
        margin: 10px;
        font-size: 30px;
        cursor: pointer;
        position: relative;
        margin-left: 670px;
        margin-top: -40px;
    }

    header #closeIcons {
        display: block;
        color: #d96fc3;
        margin: 10px;
        font-size: 30px;
        cursor: pointer;
        position: relative;
        
        margin-top: -40px;
    }

    .navMenu ul {
        padding: 30px;
    }

    .navMenu ul li {
        display: block;
    }

    .navMenu {
        position: fixed;
        background-color: #ffffff;
        height: 100%;
        width: 300px;
        top: 0;
        right: -300px;
        z-index: 2;
        transition: all .45s ease;
        text-align: left;
        padding-top: 50px;
    }

    .navMenu a {
        display: block;
        margin: 17px;
        font-size: 20px;
        transition: all .45s ease;
        color: #000000;
    }

    .navMenu a:hover {
        transform: scale(0.9);
    }

    .contact-btn {
        display: block;
        margin-left: 57px;
        font-size: 20px;
        transition: all .45s ease;
    }

    .container {
        padding-bottom: 60px;
    }
}




/* =============================== */
/* 📱 Large Phones & Portrait Tabs */
/* Max Width: 700px               */
/* =============================== */
@media (max-width: 700px) {
  .hero-text h2 {
    font-size: 24px;
  }

  header #menuIcons {
    display: none;
  }

  .container {
    padding: 30px 40px;
  }

  .hero-images {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-images img {
    width: 110px;
    height: 110px;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
  }

  .container {
        padding-bottom: 100px;
    }
}

/* =============================== */
/* 📲 Small Mobile Devices         */
/* Max Width: 480px               */
/* =============================== */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    padding-bottom: 80px;
  }

  .hero-text h2 {
    font-size: 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-images img {
    width: 90px;
    height: 90px;
  }

  .join-btn,
  .learn-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 6px 12px;
  }

  header #menuIcons {
    position: relative;
    margin-left: 280px;
    margin-top: -90px;
  }
}

@media (max-width: 380px) {

  .logo {
    padding-top: 40px;
  }

  .container {
    padding-top: 0;
    padding-bottom: 70px;
  }
}