@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  letter-spacing: 1.5px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: rgb(0, 0, 0);
  
}
.header {
  position: fixed;
  top: -250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: transparent;
  z-index: 1000;
  transition: top 2s ease, background-color 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);

  .headerLogo {
    transform: scale(0.8);
  }

}

.header.top {
  background-color: transparent;
  opacity: 1;
}

.headerLogo {
  width: 10%;
  height: 90%;
  position: absolute;
  transition: all 0.7s ease;
  z-index: 5;
  cursor: pointer;
}

.headerLogo:hover {
  transform: scale(1.1);
}

nav {
  display: flex;
  transition: background-color 0.3s ease;
  width: 100vw;
  height: 13vh;
  overflow: hidden;
  justify-content: space-evenly;
  align-items: center;
}

nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

nav .ulSide1 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  width: 50vw;
  height: 100%;
  gap: 20px;
}

nav .ulSide3 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  width: 50vw;
  height: 100%;
  gap: 20px;
}

nav .ulSide2 {
  height: 100%;
  width: 20vw;
}

nav ul li {
  display: flex;
  list-style: none;
  margin: 0px 20px;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 20px;
  padding: 5px 10px;
  position: relative;
  font-family: 'Nimbus Sans L', sans-serif;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  transform: scale(1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 20px;
  }
  
  .text h1 {
    font-size: 68px;
    font-weight: bold;
    line-height: 1.2;
    overflow: hidden;
  }
  
  .logo img {
    width: 700px;
    max-width: 100%;
    height: auto;
  }
  

  .mobile-logo{
    max-width: 200px;
    padding-top: 300px;
  }

  .bize-ulas{
    color: blueviolet;
  }
  
  .mobile-block{
    text-align: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 0.571rem + 3.81vw, 4rem);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
  }
  
  @media (max-width:1300px) {
    .mobile-block{
      display: flex;
      flex-direction: column;
    }
    .header, .container, .container2, .container3, .footer-content, #scrollToTop{
      display: none;
    }
  }