body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff; /* Beyaz zemin */
  color: #000000; /* Siyah yazı */
}

header {
  background-color: #000000; /* Siyah başlık */
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #1a1a1a; /* Açık siyah / koyu gri */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.hizmetler {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
  color: #000000;
}

.hizmetler h3 {
  border-bottom: 2px solid #000000;
  display: inline-block;
  padding-bottom: 5px;
}

footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}
.btn {
  display: inline-block;
  background-color: #000000;  /* siyah */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background-color: white;
  color: black;
  border-color: black;
}
nav a {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  margin: 0 8px;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

nav a:hover {
  background-color: white;
  color: black;
  border-color: black;
}
nav a {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  margin: 0 8px;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease, transform 0.3s ease;  /* transform için geçiş ekledik */
}

nav a:hover {
  background-color: white;
  color: black;
  border-color: black;
  transform: scale(1.1);  /* %10 büyüme */
}
.hizmetler ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.hizmetler ul li {
  margin: 10px 0;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}/* Mobil uyumlu (768px ve altı) */
@media screen and (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px auto;
    text-align: center;
  }

  .hero {
    padding: 40px 10px;
  }

  .hizmetler {
    padding: 20px 10px;
  }

  .hizmetler ul li {
    font-size: 16px;
  }

  .btn {
    width: 90%;
    padding: 14px;
    font-size: 16px;
  }

  footer {
    padding: 20px 10px;
    font-size: 14px;
  }
}
nav a:hover {
  transform: scale(1.1) rotate(-1deg);
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 10px 0;
  }
  .galeri img, .videolar video {
    width: 90%;
  }
}
.fade-in {
  opacity: 0;
  animation: fade 1s ease forwards;
}
@keyframes fade {
  to { opacity: 1; }
}
.harita {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.harita iframe {
  width: 90%;
  max-width: 800px;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  header h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  .galeri img,
  .videolar video {
    width: 90%;
  }

  .harita iframe {
    width: 95%;
    height: 300px;
  }

  footer {
    font-size: 14px;
  }
}
.iletisim-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.iletisim-form label {
  font-weight: bold;
}

.iletisim-form input,
.iletisim-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.iletisim-form button {
  padding: 12px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.iletisim-form button:hover {
  background-color: #333;
}
img {
  max-width: 100%;   /* Resmin genişliği bulunduğu kutuyu aşmasın */
  height: auto;      /* Oran bozulmasın */
  max-height: 400px; /* Maksimum yüksekliği 400px ile sınırla (isteğe göre değişir) */
  display: block;    /* Altındaki boşlukları azaltmak için */
  margin: 0 auto;    /* Ortalamak istersen */
}
.anasayfa {
  max-width: 350px;               /* Resmin maksimum genişliği */
  width: 100%;                   /* Responsive için */
  height: auto;                  /* Oran korunur */
  display: block;                /* Blok gibi davran */
  margin: 25px auto;             /* Ortala ve üst-alt boşluk bırak */
  border-radius: 15px;           /* Yuvarlatılmış köşeler */
  box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* Derin gölge efekti */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Yumuşak geçiş */
  cursor: pointer;              /* Üzerine gelince işaretçi değişir */
}

.anasayfa:hover {
  transform: scale(1.07);        /* Hafif büyütme efekti */
  box-shadow: 0 12px 25px rgba(0,0,0,0.35); /* Gölge artışı */
}
.whatsapp-container {
  display: flex;
  justify-content: center; /* Ortaya hizalar */
  margin-top: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.bizi-taniyin {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 800px;
}

.bizi-taniyin h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.bizi-taniyin h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 10px auto 0;
}

.bizi-taniyin p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.hizmetler {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.hizmetler h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: #222;
}

.hizmetler h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 10px auto 0;
}

.hizmet-listesi {
  display: flex;
  flex-direction: column; /* alt alta sıralar */
  gap: 20px; /* kartlar arasında boşluk */
}

.hizmet-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hizmet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hizmet-item h3 {
  margin-top: 0;
  color: #111;
  font-size: 24px;
}

.hizmet-item p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  position: relative;
  min-height: 100vh;
  background: #f2f2f2;
  overflow-x: hidden;
}

/* Bulanık arka plan için özel katman */
body::before {
  content: "";
  position: fixed;      /* Sayfayı tamamen kaplar */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('images/doğa\ resmi.jpg'); /* Buraya kendi resim yolu */
  background-size: cover;
  background-position: center;
  filter: blur(8px);    /* Bulanıklık efekti */
  opacity: 0.3;         /* Şeffaflık */
  z-index: -1;          /* İçeriklerin altında kalır */
}
.hizmetler h2 {
  font-size: 36px;
  color: #b22222; /* Şarap kırmızısı, canlı ve sıcak */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Hafif gölge */
}
.hizmetler h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff4d4d, #800000);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: slideIn 1s ease forwards;
  opacity: 0;
}

/* Animasyon tanımı */
@keyframes slideIn {
  to {
    opacity: 1;
    width: 80px;
  }
  from {
    opacity: 0;
    width: 0;
  }
}
.hizmetler p {
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hizmetler p {
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.3s ease;
  cursor: pointer; /* tıklanabilir hissi için */
}

.hizmetler p:hover {
  transform: scale(1.05);
}

.hizmetler p:active {
  transform: scale(1.1);
  transition: transform 0.1s ease;
}
.hizmetler p {
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  padding-bottom: 6px; /* alt çizgi için boşluk */
  border-bottom: 2px solid transparent; /* başlangıçta görünmez */
}

.hizmetler p:hover {
  transform: scale(1.05);
  border-bottom: 2px solid #b22222; /* şarap kırmızısı çizgi */
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bizi-taniyin, .hizmetler {
  animation: fadeIn 1s ease forwards;
}
button, .whatsapp-btn {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover, .whatsapp-btn:hover {
  background-color: #800000;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(128,0,0,0.4);
  cursor: pointer;
}
.hizmet-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.menu-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  background-color: #000;
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 230px;
  height: 100%;
  background-color: #000;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.side-menu a {
  padding: 15px 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid #444;
}

.side-menu a:hover {
  background-color: #333;
}

.side-menu.open {
  left: 0;
}
.menu-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  background-color: #000;
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 230px;
  height: 100%;
  background-color: #000;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.side-menu a {
  padding: 15px 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid #444;
}

.side-menu a:hover {
  background-color: #333;
}

.side-menu.open {
  left: 0;
}
/* Menü ikon stili */
.menu-icon {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 30px;
  color: white;
  background-color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s;
}
.menu-icon:hover {
  background-color: #222;
}

/* Yan menü paneli */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 240px;
  height: 100%;
  background: linear-gradient(180deg, #111, #222);
  color: white;
  padding-top: 60px;
  box-shadow: 4px 0 15px rgba(0,0,0,0.3);
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow-y: auto;
}

/* Menü bağlantıları */
.side-menu a {
  display: block;
  color: #fff;
  padding: 15px 25px;
  margin: 5px 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.side-menu a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* Menü açıkken konumu */
.side-menu.open {
  left: 0;
}
/* Menüye giriş animasyonu */
@keyframes slideInLeft {
  from {
    left: -260px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

/* Menü bağlantılarının tek tek görünmesi */
@keyframes fadeInLinks {
  0% { opacity: 0; transform: translateX(-15px); }
  100% { opacity: 1; transform: translateX(0); }
}

.side-menu.open {
  animation: slideInLeft 0.4s ease forwards;
}

/* Her link animasyonlu görünsün */
.side-menu a {
  opacity: 0;
  animation: fadeInLinks 0.4s ease forwards;
}

.side-menu.open a:nth-child(1) { animation-delay: 0.2s; }
.side-menu.open a:nth-child(2) { animation-delay: 0.3s; }
.side-menu.open a:nth-child(3) { animation-delay: 0.4s; }
.side-menu.open a:nth-child(4) { animation-delay: 0.5s; }
.side-menu.open a:nth-child(5) { animation-delay: 0.6s; }
