html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%),
              url('../images/background.jpg') no-repeat center center;
  background-size: cover;
}


h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.5em;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  margin-bottom: 0.75em;
}

h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
  color: #556;
  stroke: 100%;
}


.banner {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #000;
  width: 500px;
  height: 650px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 10;
}

.bannertext {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  width: 100%;
}

.bannertext img {
  width: 80px;
  height: 80px;
}

/* Mobil uyum için medya sorgusu */
@media (max-width: 768px) {
  .banner {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    height: auto;
    margin: 80px auto 20px auto;
    padding: 30px 20px;
  }

  .bannertext {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .bannertext img {
    width: 60px;
    height: 60px;
  }
}









/* Hamburger Butonu */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Sabit Menü (Masaüstü) */
.sabit-menu {
  position: fixed;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  z-index: 9999;
}

.sabit-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sabit-menu ul li {
  margin-bottom: 15px;
}

.sabit-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-size: 36px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sabit-menu ul li a:hover {
  background-color: #d90000;
  color: white;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .sabit-menu {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid #ccc;
    padding: 10px 0;
    display: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .sabit-menu.open {
    display: flex;
  }

  .sabit-menu ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 0;
  }

  .sabit-menu ul li {
    margin: 0;
  }

  .sabit-menu ul li a {
    width: 60px;
    height: 60px;
    font-size: 26px;
    border-radius: 50%;
  }

  .hamburger-menu {
    display: block;
  }
}






.slider {
  position: relative;
  width: 1000px;
  height: 600px;
  margin: 250px auto 0 auto; /* sayfanın üstünden 250px aşağı */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Slider içindeki img’ler */
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Aktif olan img */
.slider img.displaySlide {
  display: block;
}

/* Slider içindeki butonlar */
.slider button.prev,
.slider button.next {
  position: absolute;
  top: 50%; /* slider'ın yüksekliğine göre ortalanır */
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

/* Hover efekti */
.slider button.prev:hover,
.slider button.next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Sol ok */
.slider button.prev {
  left: 10px;
}

/* Sağ ok */
.slider button.next {
  right: 10px;
}



@media (max-width: 768px) {
  .slider {
    width: 90%;
    height: 250px;
    margin: 100px auto 0 auto;
  }

  .slider button.prev,
  .slider button.next {
    padding: 8px;
    font-size: 18px;
  }
}












.hakkimizda {
  position: relative;
  top: 150px; /* Yukarıdan 100px aşağıya kaydırır */
  max-width: 900px;
  margin: 80px auto;
  padding: 50px 40px;
  background: #fff;
  border-left: 8px solid #ff6f61;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #2e2e2e;
  line-height: 1.9;
  letter-spacing: 0.2px;
  transition: box-shadow 0.3s ease;
}


.hakkimizda:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.hakkimizda h2 {
  color: #ff3d00;
  font-size: 30px;
  margin-bottom: 25px;
  border-bottom: 2px solid #ffe5e0;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.hakkimizda p {
  margin-bottom: 24px;
  font-size: 17px;
  text-align: justify;
  color: #444;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.05);
}

.hakkimizda strong {
  color: #d84315;
  font-weight: 600;
  text-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.08);
}



@media (max-width: 768px) {
  .hakkimizda {
    padding: 30px 20px;
    margin: 40px 20px;
    top: 80px;
  }

  .hakkimizda h2 {
    font-size: 24px;
    text-align: center;
  }

  .hakkimizda p {
    font-size: 16px;
    text-align: left;
  }

  .hakkimizda strong {
    font-size: 16px;
  }
}






.iletisim {
  position: relative;
  top: 500px;
  max-width: 900px;
  margin: 80px auto;
  padding: 50px 40px;
  background: #f9f9f9;
  border-left: 8px solid #4caf50;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.3px;
  transition: box-shadow 0.3s ease;
}

.iletisim:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.iletisim h2 {
  color: #2e7d32;
  font-size: 28px;
  margin-bottom: 25px;
  border-bottom: 2px solid #c8e6c9;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.iletisim-item {
  margin-bottom: 20px;
}

.iletisim-item strong {
  color: #1b5e20;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.iletisim-item i {
  margin-right: 8px;
  color: #1b5e20;
}

.iletisim-item p {
  font-size: 17px;
  color: #444;
  margin: 0;
}

.iletisim-item a {
  text-decoration: none;
  color: #444;
}

.iletisim-item a:hover {
  text-decoration: underline;
  color: #2e7d32;
}

@media (max-width: 768px) {
  .iletisim {
    padding: 30px 20px;
    margin: 40px 20px;
    top: 60px;
  }

  .iletisim h2 {
    font-size: 22px;
    text-align: center;
  }

  .iletisim-item {
    margin-bottom: 18px;
  }

  .iletisim-item strong {
    font-size: 16px;
  }

  .iletisim-item p {
    font-size: 16px;
    word-break: break-word;
  }

  .iletisim-item i {
    font-size: 14px;
  }
}




.hiddenwall {
  position: relative;
  width: 100%;
  top: 600px;
  height: 100px;
  opacity: 0;
  pointer-events: none;
}
