
.logo {
height: 40px;
width: 40px; 
background: rgb(252, 251, 251);
border-radius: 50%;
margin: 10px;
}

.topnav {
width: 100%;
background-color: transparent;
position: absolute;
height: auto;
border-bottom: 0.5px solid rgba(245, 245, 245, 0.279);
display: flex; /* Enable Flexbox */
align-items: center; /* Center items vertically */
justify-content: space-between; /* Space out the logo and links */
padding: 0 10px; /* Add some horizontal padding */
}

.topnav li a:hover{
border-bottom: 2px solid var(--yellow);
padding-bottom: 17px;
}

.topnav ul {
display: flex; /* Use Flexbox for the links */
margin: 0; /* Reset defa.topnav ult margin */
padding: 0; /* Reset defa.topnav ult padding */
}

.topnav ul li {
margin: 0 10px; /* Add spacing between links */
}

.topnav ul li a {
color: var(--white);

}

.icon{
  position: absolute;
  right: 0;
  z-index: 3;
  display: none;
}
.line{
display: grid;
width: 40px;
height: 5px;
background: white;
margin: 5px;
border-radius: 2rem;
}


.icon.active .line:nth-of-type(1) {
  transform: rotate(-40deg) translate(-5px, 9px);
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.icon.active .line:nth-of-type(2){
  opacity: 0;
}

.icon.active .line:nth-of-type(3) {
  transform: rotate(40deg) translate(-5px, -9px);
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

section{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
}

button
{
background: var(--maincolor);
border: none;
border-radius: 50px;
padding: 10px 30px;
color: white;
margin: 10px;
}

button:hover{
background: #ff2448ab;
cursor: pointer;
}
#css{
color: var(--white);
justify-content: flex-start;
}

#css img{
height: 250px;
}

#levels{
background: white;
float: left;
color: var(--gray);
margin: 50px;
padding: 20px;
border-radius: 7px;
width: 300px;
text-align: left;

}
#levels li a{
color: var(--gray);
font-weight: 300;
}
#levels li a:hover{
text-decoration: underline var(--maincolor); 
}
.container{
display: flex;
justify-content: center;
}

.container a{
color: white;
}
#levels h3 {
color: var(--maincolor);
font-weight: bold;
}


/**EXAMPLES**/

#comingSoon {
  padding: 80px 20px;
  text-align: center;
background: black;
  color: white;
}

.coming-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.coming-subtitle {
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.coming-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.coming-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  width: 260px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}

.coming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.285);
}

.coming-card i {
  font-size: 3rem;

  margin-bottom: 15px;
}

.coming-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.coming-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gray);
  color: white;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 50px;
}

/*responsive*/
/* Responsive styles */
@media (max-width: 1024px) {


  h2 {
    font-size: 20px;
    
  }


}

@media (max-width: 768px) {
  
 
  section {
    padding: 60px 15px;
    height: auto;
  }

 

  .coming-container {
    flex-direction: column;
    align-items: center;
  }

  .coming-card {
    width: 90%;
    max-width: 350px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  form input[type="email"], form button {
    width: 100%;
    max-width: 400px;
  }



  .logo {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
.topnav{
 align-items: normal;
}
  .icon{
    display: block;
    cursor: pointer;
    margin: 10px;
  }

  #ul{
display: none;
}

#ul.responsive{
position: absolute;
width: 50%;
display: grid;
background-color: black;
z-index: 3;
right: 0px;
border-radius: 0 0 5px 5px;
}
.topnav li a:hover{
padding-bottom: 0px;
}
.topnav ul{
  padding: 10px;
}
  .mainTitle {
    padding-top: 100px;
    font-size: 37px;
  }

  .coming-title {
    font-size: 1.8rem;
  }

  .coming-subtitle {
    font-size: 1rem;
  }

  form input[type="email"] {
    font-size: 16px;
  }

  button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .coming-card i {
    font-size: 2.5rem;
  }

  .coming-card h3 {
    font-size: 1.1rem;
  }

  .coming-card p {
    font-size: 0.9rem;
  }
h1{
  line-height: 25px;
  margin-bottom: 30px;
}
}

