/* Genel sayfa ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #0e0e0e;
    color: #f5f5f5;
}

/* Başlık alanı */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #111, #1f1f1f);
    border-bottom: 2px solid #6a5acd;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #6a5acd;
}

header p {
    font-size: 1.1rem;
    color: #ccc;
}

/* Grid yapısı */
.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
}

/* Kart tasarımı */
.map-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

.map-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.map-card h2 {
    font-size: 1.5rem;
    margin: 15px;
    color: #6a5acd;
}

.map-card p {
    font-size: 1rem;
    margin: 0 15px 20px 15px;
    color: #ccc;
}

.bttn{
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
.bttn:hover{
    color: #6a5acd;
}
.btton{
    color: #6a5acd;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}



/* Hamburger Menü */
.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #1a1a1a;
    width: 200px;
    padding: 15px;
    border-left: 2px solid #ff4655;
  }

  .menu.show {
    display: flex;
  }

  .menu a,
  .menu .iletisim {
    padding: 10px;
    text-align: center;
    display: block;
    color: white;
    text-decoration: none;
  }

  .menu a:hover,
  .menu .iletisim:hover {
    color: #ff4655;
  }
}
