/* Genel Stiller */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}
.content {
  margin-top: 80px; /* Header yüksekliği kadar boşluk bırak */
  padding: 20px;
}

/* Üst Menü */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  background: #2C2F33; /* Antrasit Gri */
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Logo */
.top-menu .logo {
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
  white-space: nowrap; /* Taşmayı önle */
}

.top-menu .logo:hover {
  transform: scale(1.1);
}

/* Menü Öğeleri */
.menu-items {
  display: flex;
  gap: 20px;
}

.menu-items a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 5px 10px;
  position: relative;
  transition: all 0.3s ease;
}

.menu-items a:hover {
  color: #ffeb3b;
  transform: scale(1.1);
}

/* Ücretsiz İlan Ver Butonu */
.menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-button a {
  background-color: #ffeb3b;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap; /* Taşmayı önle */
}

.menu-button a:hover {
  background-color: #ffd600;
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.8);
}

/* Hamburger Menü */
.hamburger-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Alt Menü (Mobil için) */
.bottom-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.bottom-menu a {
  color: white;
  text-decoration: none;
  text-align: center;
}

.bottom-menu a:hover {
  color: #ffeb3b;
}

.bottom-menu a span {
  display: block;
  font-size: 0.8rem;
}

.bottom-menu a i {
  font-size: 1.2rem;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
  .top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  /* Logo ve Buton Yan Yana */
  .top-menu .logo-button-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .top-menu .menu-button {
    max-width: 40%; /* Butonu küçült */
  }

  .top-menu .menu-button a {
    font-size: 0.8rem; /* Yazıyı küçült */
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #2C2F33; /* Antrasit Gri */
    text-align: center;
    padding: 20px 0;
    transition: all 0.3s ease;
  }

  .menu-items.show {
    display: flex;
  }

  .menu-items a {
    padding: 15px;
    font-size: 1rem;
  }

  .hamburger-icon {
    display: block;
  }

  .bottom-menu {
    display: flex;
  }
}
