@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+US+Modern:wght@100..400&display=swap');
*{
  margin: 0;
  padding: o;
  box-sizing: border-box;
}
body{
  position: relative !important;
}
header{
  width: 100%;
  display: flex;
  justify-content: center;
}
.header{
  width: 90%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.067); 
    backdrop-filter: blur(2px) saturate(150%);
    -webkit-backdrop-filter: blur(2px) saturate(150%); 
    border: 1px solid rgba(255, 255, 255, 0.151);
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: popIn 3s ease-out forwards;
}

.header .head{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.header a{
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 10px;
}

.header a img{
  width: 50%;
  object-fit: contain;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  opacity: 0;
  transform: scale(0.5);
  animation: logoAppear 2s ease-out forwards;
  animation-delay: 1s;
  filter: drop-shadow(5px 5px 6px #d48d0025);
}

.header nav{
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: right;
  padding-left: 100px;
}
.header nav a{
  font-family: "Mulish", sans-serif;
  font-weight: 100;
  text-decoration: none;
  color: white;
  transition: 0.4s ease-in;
  width: 100%;
  border-radius: 10px;
}

.header nav a:hover{
  color: rgba(0, 0, 0, 0.857);
  background-color: rgba(255, 255, 255, 0.528);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header i{
  color: white;
    font-size: 25px;
    margin: 0 15px;
    cursor: pointer;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
.header a img{
  width: 80%;
}
}

/* SİDEBAR KOD */

.sidebar{
width: 100%;
display: flex;
height: 0;
max-height: 250;
overflow: hidden;
transition: 1s ease-in-out;
}

.sidebarnone{
height: 240px;
}

.sidebar div{
  width: 50%;
  padding: 10px;
}
.sidebar a{
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  width: 100%;
  display:flex;
  justify-content: center;
  margin: 10px 0;
  padding: 3px 0;
  font-size: 15px;
  color: white;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.168) 10%, rgba(128, 79, 0, 0) 70%);
  transition: 0.5s ease-in-out;
}

.sidebar a:hover{
  background: radial-gradient(circle, rgba(255, 145, 0, 0.168) 10%, rgba(255, 145, 0, 0) 70%);
  transform: scale(1.1);
}

.buton{
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
}

.buton h2{
  width: 40%;
  color: white;
  font-size: 15px;
  padding: 4px 0;
  border: 0.1px solid rgba(255, 255, 255, 0.525);
  background-color: rgba(255, 255, 255, 0.131);
  border-radius: 20px;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  transition: 0.5s ease-in-out;
}

.buton h2:hover{
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.487);
}

/*SEARCH İNPUT CODE START*/

.search{
    position: absolute;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.search-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

#searchInput{
  width: 100%;
  font-size: 20px;
  background: white;   
  border-radius: 20px;
  border: none;
  padding: 10px;
  transition: 0.1s ease-in-out;
}

#searchInput::placeholder{
  letter-spacing: 2px;
}

#results{
  width: 100%;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 10px 0;
  z-index: 1;
  display: none;
  overflow: scroll;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#searchInput:focus{
  outline: none;
  
}

.result-item{
    margin: 5px;
    padding: 5px;
}

#results div span a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
#results div span a:hover{
    color: rgba(90, 90, 90, 0.482);
}

/* FOOTER CSS CODE  Start*/
 footer{
    width: 100%;
    height: auto;
    background-color: #000000a8;
    
    display: flex;
    flex-direction: column;
    padding: 10px;
    -webkit-box-shadow: 0px -7px 15px -8px rgba(102,102,102,1);
-moz-box-shadow: 0px -7px 15px -8px rgba(102,102,102,1);
box-shadow: 0px -7px 15px -8px rgba(102,102,102,1);
border-radius: 10px 10px 0 0;
margin-top: 15px;
  }

  .footerup{
    display: flex;
    justify-content: space-around;
  }

  .footerup .footerleft{
    width: 45%;
    padding: 5px;
  }

  .footerup .footerleft li{
    list-style: none;
    margin: 5px;
  }
  .footerup .footerleft li a{
    text-decoration: none;
    color: white;
    font-family: "Raleway", serif;

  }


  .footerup .footerright{
    width: 45%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
  }

  .footerup .footerright h1{
    color: white;
    font-family: "Raleway", serif;
    letter-spacing: 5px;
  }

  .footerup .footerright div{
    display: flex;
    justify-content: space-around;
    width: 100%;
  }

  .footerup .footerright div i{
    font-size: 20px;
    color: white;
  }

  .footerdown{
    display: flex;
    justify-content: center;
  }
  .footerdown p{
    color: white;
    font-size: 12px;
  }
/* FOOTER CSS CODE  END*/


@media (min-width: 1000px){
.header nav{
  padding-left: 30vw;
}
}

@media (min-width: 1500px){
  .header a img{
  width: 30%;
}
}

@media (max-width: 650px){
.header nav{
  display: none;
}
.search-container{
  width: 50%;
}
.footerup .footerright h1{
    font-size: 20px;
}
.footerup .footerleft li a{
    font-size: 13px;
}
}

@media (max-width:436px ){
    .footerup{
      flex-direction: column;
    }
    .footerup .footerleft{
      width: 100%;
      text-align: center;
    }
    .footerup .footerright{
      width: 100%;
      align-items: space-around;
     justify-content: center;
    }
    .footerup .footerright div{
padding: 15px;
    }
    .sidebar a{
  font-size: 12px;
}
  }
  
@media (max-width: 350px){
.sidebarnone{
  height: 220px;
}
.search-container{
  width: 60%;
}
#searchInput{
  font-size: 12px;
}
#searchInput::placeholder{
  font-size: 10px;
}
.sidebar a{
  font-size: 11px;
}
.buton h2{
  font-size: 10px;
}
}

@media (max-width: 299px){
.sidebar a{
  font-size: 9px;
}
#searchInput{
  font-size: 10px;
}
.sidebarnone{
  height: 200px;
}
}