* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.hero {
  position: relative;
  background: url('img/arka.jpg') no-repeat center 60%/cover;
  color: white;
  padding: 80px 20px;
  text-shadow: 1px 1px 2px black;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero h1, .hero p {
  position: relative;
  z-index: 2;
}
.hero-icons {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px; /* spacing artırıldı */
  margin-top: 25px;
}


.hero-icons a {
  background-color: #fff; /* tamamen beyaz */
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}


.hero-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.hero-icons img {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  z-index: 2;
}



.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  background-color: #fff;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 2px solid #cceeff;
}


.icons a {
  display: inline-block;
  margin: 10px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #e0e0e0;
  transition: background 0.3s ease;
}

.icons a:hover {
  background-color: #ccc;
}

/* Mobil uyum: 600px altı ekranlarda paddings küçülsün */
@media (max-width: 600px) {
  .hero {
    padding: 60px 15px;
  }

  .icons a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}
