@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
html{
  scroll-behavior: smooth;
}
/* Navbar */
.navbar{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
}
.navbar ul{
  display: flex;
  list-style: none;
  margin: 20px 0px;
}
.navbar ul li{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}
.navbar ul li a{
  text-decoration: none;
  color: white;
  padding: 8px 25px;
  transition: all .5s ease;
}
.navbar ul li  a:hover{
  background-color: white;
  color: black;
  box-shadow: 0 0 10px white;
}
.logo{
  height: 50px;
}

/*Home Section */
#home{
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  height: 840px;
  justify-content: center;
  align-items: center;
  color: white;
}
#home::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url('media/bghome.jpg') no-repeat center center/cover;
  height: 900px;
  width: 100%;
  z-index: -1;
  opacity: 1;
}

.headings{
  font-size: 2.5rem;
  text-align: center;
  margin: 40px 0px;
  width: 100%;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.btn{
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  outline: none;
  transition: .6s ease;
  text-decoration: none;
}
.btn:hover{
  cursor: pointer;
  background-color: white;
  color: black;
  box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15 px white ;
  font-weight: bold;
  text-decoration: none;
}

/* About Section */
#about{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 50px;
}
#intro{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  font-size: 1.2rem;
  line-height: 42px;
  font-family: 'Montserrat', sans-serif;
}

/* Ürünler Section */
#ürünler{
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  align-items: center;
  box-sizing: border-box;
}
.intro{
  font-family: 'Montserrat', sans-serif;
}
.slider{
  width: 100%;
  height: 250px;
  position: relative;
  background: rgba(0, 0, 0, 1);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.8);
  display: flex;
  overflow: hidden;
}

.slide {
  height: 250px;
  display: flex;
  align-items: center;
  animation: slideshow 40s linear infinite;
}

.slide img {
  height: 250px;
  padding: 8px 0px 8px 8px;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider::before,
.slider::after {
  height: 250px;
  width: 100px;
  position: absolute;
  content: "";
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.slider::before{
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/* Müşteriler Section */
#müşteriler{
  display: flex;
  flex-direction: column;
  background-color: white;
  color: black;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.slider2{
  width: 100%;
  height: 100px;
  position: relative;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.8);
  display: flex;
  overflow: hidden;
}

.slide2{
  height: 100px;
  display: flex;
  align-items: center;
  animation: slideshow 9s linear infinite;
}

.slide2 img {
  height: 150px;
  padding: 30px 0px 30px 30px;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider2::before,
.slider2::after {
  height: 250px;
  width: 100px;
  position: absolute;
  content: "";
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.slider2::before{
  left: 0;
  top: 0;
}

.slider2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}


/* Contact Section */
#contact{
  background: url(media/bgcontact.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  white-space: nowrap;
  overflow: hidden;
}
.contact-page{
  width: 100%;
  max-width: 1400px;
  padding: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-info, .contact-form{
  flex: 1;
}
.item{
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
}
.headings2{
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400px;
}
.icon{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  text-align: center;
  color: black;
  border-radius: 50%;
  margin-right: 16px;
  display: inline-block;
}
.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.text{
  width: calc(50% - 10px);
  height: 50px;
  padding-right: 12px;
  padding-top: 10px;
  border: none;
  color: #fff;
  margin-bottom: 45px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
textarea{
  width: 100%;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  padding: 12px;
  background-color: #fff;
  border: none;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.button{
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  outline: none;
  transition: .6s ease;
  text-decoration: none;
  margin-left: auto;
}
.button:hover{
  cursor: pointer;
  background-color: white;
  color: black;
  box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15 px white ;
  font-weight: bold;
  text-decoration: none;
}

.footer{
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}