.nav-buttons {
  display: flex;
  justify-content: center; /* ortala */
  gap: 15px; /* buttonlar arası boşluq */
  padding: 20px 10px;
  flex-wrap: wrap; /* mobilde sığmasa alt satıra keçir */
  background-color: #0a0a0a; /* footer fonuna uyğun */
}

.nav-buttons .btn {
  background-color: #8e44ad; /* mor rəng */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s;
  flex: 1 1 100px; /* mobilde böyüklük uyğunlaşsın */
}

.nav-buttons .btn:hover {
  background-color: #6f2a9f; /* hover rəngi */
}

@media (max-width: 480px) {
  .nav-buttons .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}


.card .card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #8e44ad; /* mor rəng */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}

.card .card-btn:hover {
  background-color: #6f2a9f; /* hover effekti */
}


/* bitkiler.html kart buttonu */
.bitkiler-card .card-btn { ... }

/* aslanpencesi.html mətn bölməsi */
.aslan-content { ... }

.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  color: #eee;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.content h1 {
  color: #8e44ad;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.content h2 {
  color: #8e44ad;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
  font-weight: 500; /* qalınlıq artırmaq üçün */
}

/* ========== INSTAGRAM ========== */
.instagram-footer {
  display: flex;
  flex-direction: column;  /* dikey hizalama */
  align-items: center;
  gap: 4px;
  margin: 20px 0 10px;
  text-align: center;
}

.instagram-footer img {
  width: 80px;
  height: auto;
  display: block;
}


.instagram-footer a {
  color: #E1306C;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;  /* emoji ve yazı dikey */
  align-items: center;
  gap: 4px;
}


footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  footer {
    font-size: 13px;
    padding: 16px 8px;
  }
}

@media (max-width: 480px) {
  .instagram-footer img {
    width: 64px;
  }
}


.instagram-footer img {
  width: 80px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.2s ease;
}

.instagram-footer a:hover img {
  transform: scale(1.05);
}

