@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap");

/* === VARIABLES === */
:root {
  --bg: #0b0b0d;
  --card: #111;
  --gold: #d4af37;
  --muted: #bfbfbf;
}
html {
  scroll-behavior: smooth;
}
/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Cairo", sans-serif;
  background: var(--bg);
  color: #fff;
  scroll-behavior: smooth;
}
.container { max-width: 1200px; margin: auto; padding: 20px; }

/* === HEADER === */
.site-header {
  background: rgba(0, 0, 0, 0.8);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.logo h1 { font-size: 22px; }
.logo span { color: var(--gold); }

.main-nav a {
  color: var(--muted);
  margin: 0 12px;
  text-decoration: none;
  transition: 0.3s;
}
.main-nav a:hover { color: var(--gold); }

.cta {
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* === HERO === */
.hero {
  padding: 70px 0;
  display: flex; justify-content: center; align-items: center;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px;
}
.hero-left h2 { color: var(--gold); font-size: 32px; margin-bottom: 10px; }
.hero-left p { color: var(--muted); margin-bottom: 20px; }
.hero-cta .btn { margin-left: 10px; }

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.btn.primary { background: var(--gold); color: #000; }
.btn.outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn:hover { opacity: 0.8; }

.slider img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* === FEATURES === */
.features { padding: 60px 0; text-align: center; }
.features h3 { color: var(--gold); margin-bottom: 25px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.feature {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
}
.feature img { width: 60px; margin-bottom: 12px; }
.feature h4 { color: var(--gold); margin-bottom: 10px; }

/* === PRODUCTS === */
.products { padding: 60px 0; text-align: center; }
.products h2 { color: var(--gold); margin-bottom: 25px; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.product-card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
}
.product-card img { width: 160px; height: 160px; object-fit: contain; border-radius: 50%; }
.product-card h4 { color: var(--gold); margin-top: 10px; }
.price { color: var(--gold); font-weight: 700; margin: 8px 0; }

/* === ABOUT === */
/* .about {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 17, 16, 0.05), transparent);
} */
.about h2 { color: var(--gold) }
.about p { color: var(--muted); max-width: 700px; margin: auto; }
.about {
  background-color: #050806;
  color: var(--muted);
  padding: 0px 20px;
  text-align: center;
}

.about h2 {
  color: var(--gold);
  font-size: 2.2rem;
  /* margin-bottom: 25px; */
}
.contact {
  background-color: var(--bg);
  color: var(--muted);
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-details .detail-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 25px;
  width: 250px;
  transition: all 0.3s ease;
}

.contact-details .detail-box:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-5px);
}

.contact-details i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-details h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--gold);
  color: #000;
}

.contact-btn i {
  font-size: 1.2rem;
}

/* تخصيص ألوان العلامات التجارية */
.contact-btn.whatsapp:hover { background: #25d366; color: #fff; }
.contact-btn.instagram:hover { background: #E1306C; color: #fff; }
.contact-btn.facebook:hover { background: #1877F2; color: #fff; }
.contact-btn.email:hover { background: #ffd700; color: #000; }

.about p {
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about .highlight {
  color: var(--gold);
  font-weight: 600;
}

.about-features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.about-features .feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}

.about-features .feature:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.about-features .feature i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.about h2 span,
.about p strong span {
  color:  var(--gold); /* لون ذهبي مثلاً */
}

.about-features .feature h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* === CONTACT === */
.contact {
  padding: 60px 20px;
  text-align: center;
}
.contact h2 { color: var(--gold); margin-bottom: 10px; }
.contact p { color: var(--muted); margin-bottom: 25px; }
.contact-options {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.contact-btn.whatsapp { background: #25d366; color: #fff; }
.contact-btn.email { background: var(--gold); color: #000; }
.contact-btn.instagram { background: linear-gradient(45deg, #fd1d1d, #d4af37); color: #fff; }
.contact-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* === FOOTER === */
.site-footer {
  background: #0a0a0a;
  color: #bbb;
  text-align: center;
  padding: 40px 20px 20px;
}
.footer-content {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: start;
  gap: 20px; margin-bottom: 20px;
}
.footer-brand h3 { color: #fff; }
.footer-brand span { color: var(--gold); }
.footer-social h4 { color: #fff; margin-bottom: 10px; }
.social-icons a {
  color: var(--gold);
  margin: 0 8px;
  font-size: 20px;
  transition: 0.3s;
}
.social-icons a:hover { color: #fff; transform: scale(1.2); }
.footer-bottom { border-top: 1px solid #222; padding-top: 15px; font-size: 14px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .main-nav { width: 100%; text-align: center; margin-top: 10px; }
  .products-grid, .features-grid { grid-template-columns: 1fr; }
}
.features-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  color: var(--muted);
}

.features-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.features-list li i {
  color: var(--gold);
  margin-left: 0.5rem;
  font-size: 1.1rem;
}

.features-list li:hover {
  color: #fff;
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  max-width: 450px; /* 👈 حجم مناسب على الشاشات الكبيرة */
  height: auto;
  position: relative;
}

.slider img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
  /* box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15); */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}


@media (max-width: 768px) {
  .slider {
    max-width: 250px; /* 👈 تصغير أكثر على الجوال */
  }
}
.btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn.secondary:hover {
  background: var(--gold);
  color: #000;
}
.pre-hero img {
  width: 100%;
  height: auto; /* أو height: 400px; حسب ما تحب */
  display: block;
  object-fit: cover;
}
/* === زر القائمة === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* النسخة للهواتف */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%; /* مخفي أولًا */
    width: 250px;
    height: 100%;
    background: var(--bg);
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  }

  .main-nav a {
    margin: 10px 0;
    font-size: 1.2rem;
  }

  .main-nav.active {
    right: 0;
  }

  /* تأثير تغير زر القائمة عند الفتح */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%; /* مخفي أولًا */
    width: 250px;
    height: 100%;
    background: var(--bg);
    flex-direction: column; /* 👈 عمودي */
    justify-content: flex-start; /* 👈 يبدأ من فوق */
    padding: 80px 20px;
    gap: 20px; /* المسافة بين الروابط */
    transition: right 0.3s ease;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  }

  .main-nav a {
    display: block; /* 👈 كل رابط في سطر جديد */
    margin: 10px 0;
    font-size: 1.2rem;
  }

  .main-nav.active {
    right: 0;
  }
}
/* === أزرار تواصل بسيطة وصغيرة === */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px; /* أصغر */
  border-radius: 25px; /* نصف دائري بسيط */
  font-size: 0.9rem; /* أصغر شوية */
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* تأثير hover بسيط */
.contact-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* أيقونات داخل الأزرار */
.contact-btn i {
  font-size: 1.1rem;
}

/* ألوان حسب المنصة */
.contact-btn.whatsapp { background: #25d366; color: #fff; border: none; }
.contact-btn.email { background: #ffd700; color: #000; border: none; }
.contact-btn.instagram { background: #E1306C; color: #fff; border: none; }
.contact-btn.facebook { background: #1877F2; color: #fff; border: none; }

/* موقع الأزرار تحت شويه */
.contact-options {
  margin-top: 20px; /* المسافة عن النص أو القسم فوقها */
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* متجاوبة مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .contact-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .contact-btn i {
    font-size: 1rem;
  }
}
/* === FOOTER === */
.site-footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 50px 20px 20px;
  font-family: "Cairo", sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

/* .footer-brand h3 {
  color: #fff;
  font-size: 1.8rem;
} */
.footer-brand span {
  color: var(--gold);
}
.footer-brand p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.links-section h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.links-section ul {
  list-style: none;
  padding: 0;
}
.links-section ul li {
  margin-bottom: 8px;
}
.links-section ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.3s;
}
.links-section ul li a:hover {
  color: var(--gold);
}

/* أيقونات التواصل */
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #cea727;
  background: #eeebeb;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
  color: var(--muted);
}

/* متجاوب */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}
















