:root {
  --primary: #34a853; /* Green */
  --secondary: #222222; /* Dark Gray */
  --background: #ffffff;
  --light-bg: #f5f5f5;
  --accent-blue: #0077b6;
  --accent-orange: #f9a825;
}

*{
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

#nav {
  background-color: var(--accent-blue);
  position: fixed;
  width: 100%;
  z-index: 9999;
}

#logo-container {
  font-size: 30px;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--primary);
}

#logo-container::first-letter {
  color: var(--secondary);
}

#navbarNav {
  justify-content: end;

  ul li a {
    font-weight: 500;
    font-size: 18px;
  }
}

#landing-page {
  width: 100%;
  height: calc(100vh - 71px);
  background-image: url("./Assets/Images/Landing_Page.jpg");
  background-size: cover;
  background-position: bottom;
  display: flex;
  padding: 60px;
  flex-direction: column;
  justify-content: space-evenly;
}

#hero-text {
  font-family: "Poppins", sans-serif;
  font-size: px;
  font-weight: 800;
  display: inline-block;
  color: var(--primary);
}

#button{
     background-color: var(--primary);
     color: var(--light-bg);
     font-weight: 500;
     width: 300px;
     height: 60px;
     align-content: center;
}

#btn{
     background-color: var(--primary);
     color: var(--light-bg);
     font-weight: 500;
}

#hero-text::first-letter {
  color: var(--secondary);
}

#landing-page h2 {
  font-size: 60px;
}

#landing-page p {
  font-size: 25px;
  width: 850px;
}

#about-page {
  width: 100%;
  height: inherit;
  background-image: url("./Assets/Images/About_Page.jpg");
  background-size: cover;
  background-position: top;
  /* background-attachment: fixed; */
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;

  

  h2 {
    font-size: 50px;
  }

  h3{
     font-size: 35px;
  }

  h4{
     font-size: 30px;
  }

  p{
     font-size: 18px;
     width:80%;
     margin: 0;
  }

  #our-mission{
     font-weight: 600;
     line-height: 35px;
  }
}

#Courses{
     width: 100%;
     height: inherit;
     background-image: url('./Assets/Images/Courses\ _Page.jpg');
     background-size: cover;
     /* filter: blur(5px); */
      padding: 60px;
      display: flex;
      flex-direction: column;

  

  h2 {
    font-size: 50px;
  }

  p{
     font-size: 22px;
     width: 100%;
  }
}

.Courses-conatiner{
     display: flex;
     height: 100%;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 30px;
}



.contact-us{
  padding: 60px;
  width: 100%;
  height: inherit;
  background-image: url('./Assets/Images/About_Page.jpg');
  background-color: gainsboro;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.admin-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  
}

.admin-container div h4{
  text-align: end;
}

.logo-image{
  max-width: 100px;
  max-height: 100px;
  min-width: 30px;
  min-height: 30px;
  /* border-radius: %; */

}

.logo-image img{
  width: 100%;
  height: 100%;
}

#contact-btn{
  text-decoration: none;
  padding: 12px 24px;
  background-color: #34a853;
  border-radius: 5px;
  color: white;
}


@media screen and (max-width: 922px) {
  #landing-page p {
    width: 90%;       /* keeps it flexible */
    max-width: 500px; /* prevents it from stretching too wide */
  }


}


@media screen and (max-width:785px) {
  #landing-page h2{
    font-size: 50px;
  }
      #landing-page p{
        font-size: 20px;
      }
    #button{
      width: 250px;
      height: 40px;
    }

    #about-page{
      p{
        width: 100%;
      }
    }

    

}


@media screen and (max-width:673px) {
  #landing-page h2{
    font-size: 30px;
  }

  #landing-page p{
        font-size: 17px;
      }
    #button{
      width: 250px;
      height: 40px;
    }
}
