/* Temel stiller */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  /* Başlık stilleri */
  .header-orta {
    background: linear-gradient(to right, #005a0e, #097227);
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px; /* Logo ve başlık arasındaki boşluk */
    z-index: 0; /* Header için yüksek z-index değeri */
  }
  
  .header-orta img.logo {
    width: 50px; /* Logo genişliği */
    margin-left: 25px;
    height: auto; /* Oranlı yükseklik */
    border-radius: 10px; /* Köşelerin yuvarlaklığını ayarlar */
    animation: fadeIn 1s ease-out;
  }
  
  
  .header-orta h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
  }
  
  .header-orta p {
    font-size: 16px;
    margin-top: 10px;
    animation: fadeInUp 1s ease-out;
  }
  
 
  
  .services, .neighborhoods, .faq {
    margin: 20px 0;
  }
  
  .service-card, .faq-item {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  h2 {
    color: #333;
  }
  
  h3 {
    color: #555;
  }
  
  button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  button.accordion.active, button.accordion:hover {
    background-color: #ccc;
  }
  
  div.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
  
  div.panel p {
    padding: 18px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  
  .services, .all-services, .faq {
    margin: 20px 0;
  }
  
  .service-card, .faq-item {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  h2 {
    color: #333;
  }
  
  h3 {
    color: #555;
  }
  
  button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  button.accordion.active, button.accordion:hover {
    background-color: #ccc;
  }
  
  div.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
  
  div.panel p {
    padding: 18px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  
  

/* Header styles */
.header-orta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .navbar {
    position: relative;
  }
  
  .nav-list {
    display: flex;
    list-style-type: none;
  }
  
  .nav-list li {
    margin-left: 20px;
  }
  
  .nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }
  
  .menu-toggle {
    display: none;
  }
  
  /* Hamburger Menu Styling for Mobile */
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0;
      background-color: #333;
      width: 100%;
      text-align: right;
    }
  
    .nav-list li {
      margin: 10px 0;
    }
  
    .menu-toggle {
      display: block;
      cursor: pointer;
    }
  
    .menu-toggle.active + .nav-list {
      display: flex;
    }
  }
  
  
  /* Animasyonlar */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Ana içerik stilleri */
  main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  /* Başlık bölümü */
  .title-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .title-section h2 {
    color: #005a0e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .title-section h3 {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .title-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Buton stilleri */
  .title-section .search-button,
  .shop .search-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #097227;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .title-section .search-button:hover,
  .shop .search-button:hover {
    background-color: #555;
    transform: translateY(-2px);
  }
  
  .phone-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px; /* Arama butonu ile ikon arasındaki boşluk */
  }
  
  .phone-logo {
    width: 20px; /* İkon genişliği */
    height: auto; /* Oranlı yükseklik */
  }
  
  /* Resim bölümü stilleri */
  .image-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  
  
  .image-section img {
    width: 800px;
    height: 400px;
  }
  
  .tooltip {
    position: absolute;
    top: 46%;
    left: 53%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 2, 2, 0.7);
    color: #ffffff;
    padding: 10 12px;
    border-radius: 3px;
    white-space: nowrap;
    display: none;
    pointer-events: none;
    font-size: 10px;
  }
  
  .image-section:hover .tooltip  {
    display: block;
  }
  
  .tooltip1 {
    position: absolute;
    top: 34%;
    left: 68%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 2, 2, 0.7);
    color: #ffffff;
    padding: 10 12px;
    border-radius: 3px;
    white-space: nowrap;
    display: none;
    pointer-events: none;
    font-size: 10px;
  }
  
  
  .image-section:hover .tooltip1  {
    display: block;
  }
  
  .tooltip2 {
    position: absolute;
    top: 35%;
    left: 37%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 2, 2, 0.7);
    color: #ffffff;
    padding: 10 12px;
    border-radius: 3px;
    white-space: nowrap;
    display: none;
    pointer-events: none;
    font-size: 10px;
  }
  
  
  .image-section:hover .tooltip2  {
    display: block;
  }
  
  .tooltip3 {
    position: absolute;
    top: 46%;
    left: 13%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 2, 2, 0.7);
    color: #ffffff;
    padding: 10 12px;
    border-radius: 3px;
    white-space: nowrap;
    display: none;
    pointer-events: none;
    font-size: 10px;
  }
  
  
  .image-section:hover .tooltip3  {
    display: block;
  }
  
  .image-frame {
    display: inline-block;
    border: 5px solid #333;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .image-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .image-frame img {
    max-width: 100%;
    height: auto;
  }
  
  /* Mağaza bölümü stilleri */
  .shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
  }
  
  .shop {
    flex: 0 0 300px;
    margin: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .shop h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .shop p {
    color: #555;
    font-size: 14px;
  }
  
  /* Müşteri referansları bölümü stilleri */
  #customer-reviews {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #customer-reviews h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #005a0e;
    margin-bottom: 20px;
  }
  
  .customer-card {
    margin-bottom: 20px;
  }
  
  .customer-card p {
    color: #333;
    font-size: 14px;
  }
  
  .customer-card strong {
    font-weight: bold;
    color: #005a0e;
  }
  
  /* Hizmetler ve referanslar bölümü stilleri */
  #services {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #services h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #005a0e;
    margin-bottom: 20px;
  }
  
  .service-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .service-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    color: #555;
    font-size: 14px;
  }
  
  
  
  /* Footer bölümü stilleri */
  #footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-radius: 0 0 15px 15px;
  }
  
  .footer-content {
    margin: 0 auto;
    max-width: 1200px;
  }
  
  /* Link stilleri */
  a {
    color: #005a0e;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Mobil çağrı çubuğu */
  .mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #097227;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    display: none;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 1000;
  }
  
  .mobile-call-bar span {
    font-size: 16px;
  }
  
  .gallery {
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .gallery-item {
    flex: 1 1 calc(25% - 40px);
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
  }
  
  .whatsapp-buttons {
    justify-content: center;
    display: flex;
    gap: 10px; /* Butonlar arasındaki boşluk */
  }
  
  .whatsapp-button {
    display: flex;
    border: none;
    align-items: center;
    background-color: #25D366;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  .whatsapp-button:hover {
    background-color: #1DA851;
  }
  
  .whatsapp-logo {
    width: 40px;
    height: 40px;
    margin-right: 1px;
  }
  
  
  /* Medya sorguları */
  @media (max-width: 768px) {
    .header-orta h1 {
      font-size: 20px;
    }
  
    .header-orta p {
      font-size: 14px;
    }
  
    .title-section h2 {
      font-size: 20px;
    }
  
    .title-section p {
      font-size: 14px;
    }
  
    .title-section .search-button,
    .shop .search-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    .shop-section {
      flex-direction: column;
      align-items: center;
    }
  
    .shop {
      width: 100%;
      max-width: 300px;
      margin: 10px 0;
    }
  
    .image-section {
      margin-bottom: 1px;
    }
  
    #customer-reviews h2,
    #services h2,
  
  
    .service-card h3 {
      font-size: 18px;
    }
  
    .service-card p,
    .customer-card p {
      font-size: 14px;
    }
  
    .mobile-call-bar {
      display: flex;
    }

    /* Hizmet Verdiğimiz Bölgeler Kısmı */
#serving-areas {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  #serving-areas h2 {
    text-align: center;
    color: #005a0e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  #serving-areas ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  #serving-areas li {
    flex: 1 1 calc(33% - 20px); /* Masaüstü için üç sütun düzeni */
    background-color: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  #serving-areas li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #serving-areas li strong {
    color: #005a0e;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
  }
  
  #serving-areas li p {
    font-size: 14px;
    color: #333;
    margin: 0;
  }
  
  /* Mobil Uyumluluk */
  @media (max-width: 768px) {
    #serving-areas ul {
      flex-direction: column;
    }
  
    #serving-areas li {
      flex: 1 1 100%; /* Mobilde tam genişlikte görünür */
      margin: 10px 0;
    }
  }
  
  }
  
/* Ana sayfa bağlantısının metin rengini beyaz yapar */
.header-orta a {
  color: white;
  text-decoration: none; /* Alt çizgi olmadan görünmesi için */
}

.header-orta a:hover {
  text-decoration: underline; /* Üzerine gelince altı çizili olması için */
}
