/* الخطوط الأساسية */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f7f7f7;
}

/* الأقسام */
section {
  padding: 60px 20px;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff416c, #ff4b2b); /* ألوان شبابية */
  color: white;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}
.hero .btn {
  display: inline-block;
  padding: 15px 35px;
  background: #fff;
  color: #ff416c;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}
.hero .btn:hover {
  background: #ff416c;
  color: white;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}

/* المنتجات */
.products {
  background: #f7f7f7;
}
.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card img {
  width: 100%;
  height: 150px;
  background: #ccc; /* لون رمادي بدل الصورة */
  border-radius: 8px;
  margin-bottom: 10px;
}
.card h3 {
  margin-bottom: 10px;
  color: #ff416c;
}

/* العروض */
.offers, .about {
  background: #e0f7fa; /* ألوان شبابية */
}
.offer-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.offer-cards .card h3 {
  color: #00796b;
}

/* تواصل معنا */
.contact form {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input, .contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.contact button {
  padding: 15px;
  background: #ff416c;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}
.contact button:hover {
  background: #ff4b2b;
}

/* Responsive */
@media (max-width: 768px) {
  .product-cards, .offer-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.2em;
  }
  .hero p {
    font-size: 1.1em;
  }
}