/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Üst Menü */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: bisque;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
}

.phone {
  font-size: 16px;
  color: #a57d53;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.side-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 10px;
  background-color: #444;
  padding: 10px;
  border-radius: 5px;
  z-index: 999;
}

.side-menu.active {
  display: block;
}

.side-menu ul {
  list-style: none;
}

.side-menu li {
  margin: 10px 0;
}

.side-menu a {
  color: white;
  text-decoration: none;
}

/* Slider */
.slider {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Hizmetler */
.section-title {
  text-align: center;
  padding: 30px 20px;
  background-color: #f4f4f4;
}

.section-title h2 {
  font-size: 28px;
  color: #ad670c;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-title h3 {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* İçerik Alanı */
.content {
  padding: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item {
  width: 180px;
  max-width: 100%;
  text-align: center;
}

.item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.item p {
  margin-top: 5px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  margin: 0 10px;
}

.address p {
  margin: 3px 0;
  font-size: 14px;
}

.container p {
  font-size: 13px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo img {
    height: 50px;
  }

  .phone {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .item {
    width: 90%;
    max-width: 300px;
  }

  .slider {
    height: 250px;
  }

  .slide {
    height: 250px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title h3 {
    font-size: 14px;
  }
}
