:root {
    --ana-renk: #FF6600;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f4f0;
    color: #333;
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  
  /* NAVBAR */
  .navbar {
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    max-height: 70px;   /* Nav yüksekliğine göre ayarla (örneğin 60px) */
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
  }
  
  .nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    padding: 8px;
    transition: 0.3s;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: var(--ana-renk);
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--ana-renk);
  }
  
  /* BÖLÜM */
  .section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2.5rem;
    color: var(--ana-renk);
  }
  
  .subtext {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
  }
  
  /* PARTNER GRID */
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .partner-card {
    background: rgba(255, 255, 255, 0.7); /* Yarı saydam beyaz */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(26px); /* Arkayı biraz blur yapar daha kaliteli görünür */
  }

  .partner-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }
  
  .partner-card img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
  }
  
  .partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  /* FOOTER */
  .footer {
    background-color: var(--ana-renk);
    color: white;
    padding: 40px 20px;
    margin-top: 80px;
  }
  
  /* DİĞER FOOTER STİLLERİ aynen devam eder */
  
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 20px;
      z-index: 1000;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }

/* FOOTER */
.footer {
  background-color: var(--ana-renk);
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-column hr {
  border: none;
  height: 2px;
  background-color: white;
  margin: 10px 0 20px;
  width: 50px;
}

.footer-column p,
.footer-column li {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-icons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-top: 80px;
}

.footer-copy {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 0.9rem;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.icon-box:hover {
  transform: scale(1.1);
}

/* MARKA RENKLERİ */
.facebook {
  background-color: #3b5998;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.whatsapp {
  background-color: #25D366;
}

.map-container {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: 10px;
}