body {
      font-family: 'Vazirmatn', sans-serif;
      background-color: #f8f6f2;
      color: #333;
      overflow-x: hidden;
	  font-family: fontsans, Tahoma, Arial;
    }

    /* Navbar */
    .navbar {
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
    }
    .navbar-brand {
      color: #d4af37 !important;
      font-weight: bold;
      font-size: 1.7rem;
      letter-spacing: 1px;
    }
    .nav-link {
      color: #fff !important;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s;
    }
    .nav-link:hover {
      color: #d4af37 !important;
    }

    /* Header Carousel */
    .carousel-item {
      height: 90vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 15px;
      padding: 75px;
      backdrop-filter: blur(5px);
    }

    /* معرفی سایت */
    .intro {
      background-color: #fff;
      padding: 70px 20px;
      border-radius: 25px;
      margin-top: -60px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);

      /* افکت هاور برای درباره پسته ویرا */
.hoverable-text {
  transition: color 0.4s, transform 0.4s;
}
.hoverable-text:hover {
  color: #2d5a27;
  transform: scale(1.03);
}
.intro a.btn:hover {
  background-color: #2d5a27;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s;
}

    }

    /* محل رویش پسته */
    .growth {
      background-color: #faf8f4;
      padding: 80px 0;
    }
    .growth img {
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* خواص پسته */
    .features {
      background: linear-gradient(135deg, #1f3d1b, #2d5a27);
      color: white;
      padding: 80px 0;
      border-radius: 80px 80px 0 0;
    }
    .features h2 {
      color: #ffd700;
    }

    /* محصولات */
    .product-card {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 25px;
      overflow: hidden;
      background: white;
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
      transition: all 0.4s;
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .product-card img {
      width: 100%;
      height: 75%;
      object-fit: contain;
    }
    .price {
      color: #2d5a27;
      font-weight: bold;
      font-size: 1.2rem;
    }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, #2d5a27, #5c7a33);
      color: white;
      padding: 60px 0;
      text-align: center;
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;
    }
    .newsletter input {
      border-radius: 25px;
      padding: 10px 20px;
      width: 300px;
      border: none;
      margin-right: 10px;
    }
    .newsletter button {
      border-radius: 25px;
      background-color: #ffd700;
      border: none;
      padding: 10px 25px;
      font-weight: bold;
      color: #333;
    }

    /* ========================= */
/* 📱 نسخه واکنش‌گرا (Responsive) */
/* ========================= */

@media (max-width: 992px) {
  /* Navbar */
  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar .nav-link {
    margin: 8px 0;
    text-align: center;
  }

  /* Header Carousel */
  .carousel-item {
    height: 65vh;
  }

  .carousel-caption {
    padding: 30px;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  /* Intro section */
  .intro {
    padding: 40px 15px;
    margin-top: -30px;
  }

  /* Growth section */
  .growth {
    text-align: center;
  }
  .growth img {
    margin-bottom: 20px;
    width: 90%;
  }
  .growth h2 {
    font-size: 1.5rem;
  }

  /* Features section */
  .features {
    border-radius: 50px 50px 0 0;
    padding: 60px 15px;
  }
  .features h2 {
    font-size: 1.6rem;
  }
  .features p {
    font-size: 1rem;
  }

  /* Products */
  .product-card img {
    height: auto;
  }
  .product-card {
    margin-bottom: 20px;
  }

  /* Newsletter / سفارش */
  .newsletter input {
    width: 100%;
    margin-bottom: 10px;
  }
  .newsletter button {
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 30px 15px;
  }
  footer h5 {
    font-size: 1.3rem;
  }
  footer p {
    font-size: 0.9rem;
  }
  footer .bi {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 55vh;
  }

  .carousel-caption h1 {
    font-size: 1.4rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
  .btn-lg {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}