/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f5f5;
  color: #222;
}

/* Genel layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tagline {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* Hero / Slider */
.hero {
  padding: 24px 0 8px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

/* Aspect-ratio için */
.slides {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%; /* 16:9'a yakın oran */
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* SLIDE IMAGE WRAPPER */
.slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Blur arka plan - gerçek resmin aynısı */
.slide-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(25px) brightness(0.6);
  transform: scale(1.2);
  z-index: 1;
}

/* Gerçek resim */
.slide-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain; /* resmi bozmadan göster */
  display: block;
}

/* Slider butonları */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3; /* slide'ların üstünde olsun */
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.nav-btn.prev {
  left: 10px;
}

.nav-btn.next {
  right: 10px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* WhatsApp Button */
.wp-container {
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 1000;
}

.wp {
  display: block;
  cursor: pointer;
}

.wp img {
  height: 75px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.wp:hover img {
  transform: scale(1.05);
}

/* Logo */
.logo img {
  object-fit: cover;
  height: 75px;
  display: block;
}

/* Açıklama alanı */
.section.description {
  padding: 24px 0 40px;
}

.section.description h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.section.description p + p {
  margin-top: 10px;
  color: #444;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  margin-top: 37px;
  padding: 16px 0;
  background: #111;
  color: #eee;
  font-size: 13px;
  text-align: center;
}
