@import url("theme.css");

body {
  overflow-x: hidden;
  font-family: verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #ffffff;
}


.description-section {
  background-image: url('../images/homebg.jpg');
  background-size: cover;
  background-position: center top;
  padding: 60px 0;
  text-align: center;
}

.description-container {
  max-width: 800px;
  margin: 0 auto;
}

.description-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #f82200, 0 0 5px #ffffff, 0 0 16px #A852FF, 0 0 40px #A852FF;
}



.description-text {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Verdana', sans-serif;
  /* Replace 'Roboto' with your desired Google Font */
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px 50px 50px 50px;
  transition: background-color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.btn:hover {
  background-color: #FFE8F5;
}

.btn:active {
  position: relative;
  top: 1px;
}




.subject-section {
  background-color: #121212;
  padding: 40px 20px;
  text-align: center;
  margin: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.topic-title {
  font-family: 'georgia', sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 35px;
  color: #E894FF;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.topic {
  width: 190px;
  margin: 4px;
  padding: 10px;
  background-color: #1d1d1d;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-decoration: none !important;
}

.topic a {
  text-decoration: none;
}

.topic:hover {
  transform: scale(1.05);
  border: 1px solid #A852FF;
}

.topic img {
  width: 100%;
  height: 150px;
}

.topic h3 {
  margin-top: 10px;
  color: #e1e1e1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none !important;
}



.topic-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.comingsoon {
  width: 168px;
  margin: 3px;
  padding: 10px;
  background-color: #1d1d1d;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;

}

.comingsoon:hover {
  transform: scale(1.05);
}

.comingsoon:hover h3 {
  color: #fdd8ed;
}

.comingsoon img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.comingsoon h3 {
  margin: 5px;
  color: #ffffff;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.comingsoon p {
  margin-top: 5px;
  color: #aaaaaa;
  font-size: 16px;
}

footer {
  background-color: #222222;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

/* -------------------- Mobile styles--------------- */
@media (max-width: 768px) {


  .description-title {
    font-size: 28px;
  }

  .description-text {
    font-size: 16px;
  }

  .btn {
    font-size: 15px;
  }

  .topics {
    gap: 9px;
  }

  .topic-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .topic {
    width: 155px;
  }

  .topic h3 {
    font-size: 15px;
  }

  .subject-section {
    background-color: #121212;
    padding: 39px 5px;
    text-align: center;
    margin: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
  }

  .comingsoon {
    width: 138px;
  }

  .topic-container>.comingsoon {
    margin: 10px;
  }

  .comingsoon h3 {
    font-size: 15px;
  }




}