/* Responsive CSS - NaturalGlow */

/* Tablet & Küçük Ekranlar (max-width: 1023px) */
@media (max-width: 1023px) {
  .nav-menu {
    display: none; /* Desktop menüyü gizle */
  }

  .hamburger-btn {
    display: flex; /* Hamburger menüyü göster */
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-section {
    padding-bottom: 130px;
  }

  .hero-buttons {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

/* Mobil Cihazlar (max-width: 767px) */
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form button {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .modal-content {
    padding: 24px 16px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    margin: 0 auto 24px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 0.8rem;
    gap: 4px;
    justify-content: center;
  }

  .hero-section {
    padding-bottom: 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-plant-wrapper {
    position: relative;
    right: auto;
    margin: 0 auto;
    height: 400px;
    max-width: 440px;
  }

  .hero-leaf-entrance-wrapper {
    max-width: 280px;
    height: 280px;
    margin-bottom: 25px;
    transform: translateY(320px);
  }

  .hero-soil-container {
    height: 80px;
  }

  .leaf-tag {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .leaf-tag.tag-normal { top: 14%; left: 38%; }
  .leaf-tag.tag-karma  { top: 38%; left: 64%; }
  .leaf-tag.tag-kuru   { top: 42%; left: 6%; }
  .leaf-tag.tag-yagli  { top: 58%; left: 58%; }
  .leaf-tag.tag-hassas { top: 64%; left: 10%; }
}

/* Tablet Düzeni (min-width: 768px) ve (max-width: 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Büyük Ekranlar ve Geniş Ekran Sınırlayıcı (min-width: 1280px) */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
    padding: 0;
  }
}

/* Tablet Düzeni için Yaprak Hizalama */
@media (max-width: 1199px) and (min-width: 768px) {
  .hero-plant-wrapper {
    right: 24px;
    width: 45%;
  }
}
