/* Kutulu görseller */
.box.style2 .image.featured {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
.box.style2 .image.featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.box.style2 .image.featured:hover img {
  transform: scale(1.05);
}

/* Hero görsel */
.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .hero-image {
    height: auto;
  }
}

/* Ana stil tanımları */
body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
  color: #333;
}
header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
header h2 {
  font-size: 16px;
  color: #666;
}

/* Navigasyon */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav ul li {
  margin: 5px 10px;
}
nav a {
  text-decoration: none;
  color: #25D366;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #nav .container li a {
    font-size: 14px;
    padding: 5px;
  }
}

/* Sabit iletişim butonları */
.phone-float, .whatsapp-float, .instagram-float {
  position: fixed;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s;
}
.phone-float {
  bottom: 120px;
  background-color: #ff5722;
}
.whatsapp-float {
  bottom: 20px;
  background-color: #25D366;
}
.instagram-float {
  bottom: 70px;
  background-color: #E4405F;
}
.phone-float:hover,
.whatsapp-float:hover,
.instagram-float:hover {
  transform: scale(1.05);
}
.phone-float img,
.whatsapp-float img,
.instagram-float img {
  width: 24px;
  height: 24px;
}
.phone-float span,
.whatsapp-float span,
.instagram-float span {
  display: none;
}

/* İletişim butonları */
.contact-button {
  color: white;
  background-color: #E4405F;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.contact-button:hover {
  background-color: #c73652;
}
.contact-icon {
  width: 32px;
  height: 32px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

/* SSS (Açılır detaylar) */
details {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}
details[open] {
  background-color: #fff;
}
summary {
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  font-size: 1rem;
  color: #333;
}
details p {
  margin: 10px 15px;
  font-size: 0.9rem;
  color: #666;
}
summary::-webkit-details-marker {
  display: none;
}
summary::before {
  content: '▶ ';
  display: inline-block;
  transition: transform 0.3s ease;
}
details[open] summary::before {
  transform: rotate(90deg);
}

/* Görsel optimizasyonları */
img {
  object-fit: cover;
}
img[loading="lazy"] {
  font-style: italic;
  background-color: #f0f0f0;
  min-height: 100px;
}