/* Genel Ayarlar */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #007BFF;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 50px;
  object-fit: contain;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  text-decoration: underline;
}
/* Menü Genel Ayarları */
#menu {
  display: none; /* Mobilde başlangıçta gizli */
  flex-direction: column; /* Mobilde menü dikey sıralanır */
  background-color: #007BFF;
  position: absolute;
  top: 60px; /* Header yüksekliği kadar boşluk */
  right: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000; /* Menü üstte görünsün */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Menüler arasında boşluk */
}

#menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#menu ul li a:hover {
  text-decoration: underline;
}

/* Menü Toggle Butonu */
#menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

#menu.open {
  display: flex; /* Menü açıldığında görünür */
}
/* Görsel Bilgi Bölümü */
.info-image {
  position: relative;
  text-align: center;
  color: white;
  height: 75vh; /* Görselin yüksekliğini ekranın %60'ı kadar yap */
  overflow: hidden;
}

.info-image .info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.info-image .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-image .overlay-text h2 {
  font-size: 2rem;
  font-weight: bold;
}

.info-image .call-button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.info-image .call-button:hover {
  background-color: #0056b3;
}

@media screen and (max-width: 768px) {
  .info-image .overlay-text h2 {
    font-size: 1.5rem; /* Mobilde metni küçültür */
  }

  .info-image .call-button {
    font-size: 14px; /* Butonu küçültür */
  }
}

/* Genel Ayarlar */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;
  color: #333;
}

/* Genel Ayarlar */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

h1 {
  color: #4CAF50;
  margin-bottom: 15px;
}

/* Form Konteyneri */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  gap: 20px;
}

/* Sağ ve Sol Bölüm */
.form-right,
.form-left {
  flex: 1 1 calc(50% - 20px); /* Her sütun eşit genişlikte */
  box-sizing: border-box;
  padding: 10px;
}

/* Form Elemanları */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
}

/* Mesaj Kutusu */
textarea {
  resize: none;
  height: 120px;
}

/* Radyo Butonları */
.radio-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
}

/* Gönder Butonu */
button[type="submit"] {
  padding: 12px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column; /* Sütunlar alt alta gelir */
  }

  .form-right,
  .form-left {
      flex: 1 1 100%; /* Tam genişlik */
  }
}

select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

select:focus {
  border-color: #007BFF;
}


form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: bold;
  color: #555;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

form textarea {
  resize: none;
}

form button {
  padding: 12px 20px;
  font-size: 16px;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}

/* Footer Stilleri */
.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #007BFF;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-media a {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.social-media a:hover {
  color: #007BFF;
}

/* WhatsApp ve Scroll-Up Butonları */
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

.scroll-up-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #007BFF;
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
}

.scroll-up-button:hover {
  background-color: #0056b3;
}

/* Harita Bölümü */
iframe {
  border: none;
  border-radius: 10px;
  margin: 20px 0;
  max-width: 100%;
}

/* Alt Copyright Çubuğu */
.footer-bottom {
  background-color: #222;
  text-align: center;
  padding: 10px 0;
  color: #ccc;
}

.footer-bottom .brand-name {
  color: #007BFF;
  font-weight: bold;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #0056b3;
}

/* Mobil Uyumluluk: Footer */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-section {
      margin-bottom: 20px;
  }
}




/* Mobilde Menü Uyumu */
@media (min-width: 769px) {
  #menu {
      display: flex; /* Büyük ekranlarda menü yatay görünür */
      flex-direction: row;
      position: static;
      background-color: transparent;
      box-shadow: none;
      padding: 0;
  }

  #menu ul {
      flex-direction: row;
      gap: 20px;
  }

  #menu-toggle {
      display: none; /* Büyük ekranlarda toggle gizlenir */
  }
}

/* Mobilde Form Düzeni */
@media (max-width: 768px) {
  .form-left, .form-right {
      width: 100%;
      padding: 15px;
  }

  form input, form textarea, select {
      width: 100%;
      font-size: 16px;
  }

  .form-group label {
      font-size: 16px;
  }

  form button {
      font-size: 16px;
      padding: 12px;
  }
}


/* Mobilde Görsel Bilgi Bölümü */
@media (max-width: 768px) {
  .info-image .overlay-text h2 {
      font-size: 24px;
      margin-bottom: 10px;
  }

  .info-image .overlay-text p {
      font-size: 14px;
  }

  .info-image .call-button {
      font-size: 14px;
      padding: 10px 15px;
  }
}


/* Mobilde Footer */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      gap: 15px;
  }

  .footer-section {
      text-align: center;
  }
}

/* Harita Mobilde */
iframe {
  width: 100%;
  height: 250px;
}


/* Mobil Genel Düzenleme */
@media (max-width: 768px) {
  .contact-container {
      padding: 10px;
      gap: 15px;
  }

  h1, h2 {
      font-size: 20px;
      text-align: center;
  }

  p {
      font-size: 14px;
      text-align: center;
  }
}







