@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');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  --color1:#FF702A;
  --color2:#FFFFFF;
  --color3:#1e1d2b;
  --color4:#000000;
  --color5:#FFEFE8;
  --color6:#2C2B47;
  --color7:#12B886;

}

body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background-color: var(--color3);


}
header{
  position: relative;
  margin: 0; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: transparent;
  color: white;
  position: relative;
}

/* responsive */
nav.active {
  flex-direction: column;
  align-items: flex-start;
}

nav h2.logo {
  font-weight: bold;
  font-size: xx-large;
  color: var(--color1);
}

nav .bars {
  position: absolute;
  right: 1rem;
  font-size: xx-large;
  display: none;
}

ul.nav-links {
  display: flex;
}

/* responsive */
nav.active ul.nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

li.nav-link {
  list-style: none;
  margin: 0.5rem 1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

li.nav-link:hover {
  /* background-color: #ccc; */
  /* color: #333; */
  border: 1px solid var(--color7);
}

li.nav-link.auth {

  border-radius: 0.5rem;
}

li.nav-link a {
  text-decoration: none;
  color: var(--color2);
  font-size: large;
  text-transform: uppercase;
}


main{
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  color: var(--color2);
  padding: 1rem;
  margin: 0;
}
.home-content{
  display: flex;
  flex-direction: column;
  margin: 10vw ;
  width: 50%;

}

.title{
  color: var(--color1);
  padding: 5px;
  font-size: 3.5rem;
  font-weight: 400;
}

.home-content p{
  font-size: 1.5rem;
  padding-left: 0;
}

.btn{

  background-color: var(--color1);
  width: 100px;
  height: 40px;
  color: var(--color5);
  border: 1px solid var(--color1);
  margin-top: 1rem;
}

.home .imag1 {
  width: 50%;
}

.home .imag1 img{
  width: 95%;
  height: auto;
}


.about{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  padding: 1rem;

}

.about .imag2 {
  width: 50%;
}

.about .imag2 img{
  width: 90%;
  height: 50%;
}


.about-Us{
  display: flex;
  flex-direction: column;
  margin: 5vw ;
  width: 50%;
  color:var(--color2);
}

.ab-us{
  font-size: 1.2rem;
  padding-left: 0;
  color: var(--color1);
}

.title2{
  color: var(--color5);
  font-size: 2rem;
  font-weight: 400;
}

.text-about{
  font-size: small;
}

.menu{
display: flex;
width: 90%;
justify-content: space-between;
gap: 10px;
padding: 1rem;

}

.menu .card{
  cursor: pointer;
  background-color: var(--color5);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.menu .card img{
  width: 50%;
}

.menu .card h4{
  font-weight: 500;
}

.menu .card .card-topic{
  font-weight: 400;
  font-size: 0.8rem;
}

.menu .card .price{
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color1);
}


.Service{
  display: flex;
  width: 90%;
  justify-content: space-between;
  gap: 10px;
  padding: 1rem;
  }
  
  .Service .card{
    cursor: pointer;
    background-color: transparent;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .Service .card img{
    width: 50%;
  }
  
  .Service .card h4{
    font-weight: 500;
    color: var(--color1);
  }
  
  .Service .card .card-topic{
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color2);
    padding: 1rem;
  }
  
.contact{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  width: 90%;
}

.contact-container{
  width: 90%;
  height: 300px;
  border-radius: 5px;
  background-color: var(--color5);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-container .container-title{
  font-size: 2.5rem;
  font-weight: 300;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 5vw;
}

.fott{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  text-decoration: none;
}
.fott .fott-card{
  cursor: pointer;
  background-color: transparent;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  color: var(--color2);
  font-size: small;
  justify-content: center;


}
.fott-card h2{
  justify-content: row;
}
.fott-card2{
  justify-content: row;
  color: var(--color2);
  padding: 1.5rem;
}
.fott-card2 button{ 
  border-radius: 50px;
  background-color: var(--color1);
  width: 20px;
  height: 20px;
}

.fott-card hr{
  border: 2px solid var(--color1);
  width: 40px;
}


li, a {
  text-decoration: none;
  color: var(--color2);

}




@media screen and (max-width: 800px) {
  nav .bars {
    display: block;
  }

  nav .nav-links {
    display: none;
  }

  .home, .about, .menu, .Service,.contact, .fott{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
