/* الخط العام */
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-image: url('images/nobles-bg.JPEG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

/* الشعار */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 60px;
  vertical-align: middle;
}

/* الرأس والتذييل */
.site-header,
.site-footer,
.about-text,
.social-section,
.products-grid,
.hero,
.contact-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

/* أزرار اللغة والتنقل */
.lang-switch button,
.lang-switch a {
  margin-left: 10px;
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
.lang-switch .active {
  background: gold;
  color: #000;
}

/* المنتجات */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.product {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.product:hover {
  transform: translateY(-5px);
}
.product img {
  width: 100%;
  border-radius: 8px;
}
.price {
  font-size: 1.1em;
  margin: 8px 0;
  color: #ffd700;
}

/* الأزرار */
.btn {
  display: inline-block;
  margin-top: 10px;
  background: gold;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* روابط التواصل */
.contact-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.contact-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* تنسيق عام */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
h1, h2, h3 {
  margin-top: 0;
}