/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

/* Başlık - Menü */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 20px 15px;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1c1c1c;
  margin-right: 40px;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a:hover {
  color: #0077cc;
}

/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Bölümler */
section {
  padding: 120px 60px 60px 60px;
  text-align: center;
  background-color: #fff;
}

#anasayfa {
  background-image: url('images/anasayfaarka.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

#anasayfa h1 {
  font-size: 48px;
  margin-top: 0;
}

#anasayfa p {
  font-size: 20px;
}

#hizmetlerimiz {
  background-image: url('images/hizmetler.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

#iletisim {
  background-image: url('images/iletisim.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

#iletisim {
  color: white;
}

#iletisim a {
  color: white;
  text-decoration: underline;
}

/* Sabit Butonlar */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

.circle-button {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.circle-button.phone {
  background-color: #0077cc;
}

.circle-button img {
  width: 28px;
  height: 28px;
}

.contact-label {
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.contact-info {
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
}

.contact-details a {
  text-decoration: none;
  color: #0077cc;
  font-size: 18px;
}

/* Mobil Uyumlu Menü ve Sayfa */
@media (max-width: 768px) {
  header {
    justify-content: center;
    padding: 20px;
    position: relative;
  }

  .hamburger {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    white-space: nowrap;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    gap: 15px;
    z-index: 999;
  }

  nav.mobile-active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  section {
    padding: 100px 20px;
  }

  #anasayfa h1 {
    font-size: 36px;
  }

  #anasayfa p {
    font-size: 18px;
  }

  #hizmetlerimiz h1,
  #iletisim h1 {
    font-size: 32px;
  }

  #hizmetlerimiz p,
  #iletisim p {
    font-size: 18px;
  }

  .fixed-buttons {
    right: 60px;
    bottom: 60px;
    align-items: flex-end;
  }

  .circle-button {
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
  }

  .circle-button img {
    width: 28px;
    height: 28px;
  }

  .contact-label {
    font-size: 12px;
    padding: 6px 12px;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}