@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  width: 100%;
}
/* ********************************************************************************** */
.hero {
  width: 100%;
  height: 100vh;
  padding: 20px 20px 20px 20px;
  background: #f3f3f3;
}
.hero-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 20px;
}
.hero-images {
  width: 50%;
  text-align: end;
}
.hero-images img {
  width: 100%;
  border-radius: 50% 50% 0 0;
  border: 20px solid rgb(255, 255, 255);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero-content {
  width: 50%;
}
.hero-content img {
  width: 15%;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 80px;
  margin-bottom: 20px;
  color: #333;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
.gradient-text {
  background: linear-gradient(45deg, #ffd700, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}
.auction-details {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}
.auction-details li {
  margin-bottom: 8px;
  color: #222;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
}
.btn.primary {
  background: linear-gradient(45deg, #ffd700, #b8860b);
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn.primary:hover {
  background: linear-gradient(45deg, #b8860b, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.btn.secondary {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
  box-shadow: none;
}
.btn.secondary:hover {
  background: linear-gradient(45deg, #ffd700, #b8860b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.contact {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}
/* ********************************************************************************** */
.gallery {
  padding: 20px 20px;
  background: #f8f8f8;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.swiper-slide img {
  width: 100%;
  border-radius: 12px;
  border: 10px solid #f8f8f8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.video-container {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* عرض الفيديو بالنسبة للصفحة */
  overflow: hidden; /* لتطبيق الزوايا على الفيديو */
}
iframe {
  width: 40%;
  height: 340px; /* يمكنك تغيير الارتفاع حسب رغبتك */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* ظل خفيف للفيديو */
  border-radius: 10px; /* زوايا مستديرة */
  border: 10px solid #f8f8f8;
}
/* ********************************************************************************** */
.social-media {
  padding: 50px 20px;
  background: #f3f3f3;
  text-align: center;
}
.social-media h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}
.social-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.icon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.social-box {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.social-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.snapchat {
  background: #fffc00;
  color: #000;
}
.tiktok {
  background: #000000;
}
.social-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.contact-number {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-number i {
  color: #f24c3c;
}
.contact-number:hover {
  text-decoration: underline;
}
/* ********************************************************************************** */

@media (max-width: 768px) {
  .hero {
    padding: 10px 10px 10px 10px;
    height: auto;
  }
  .hero-container {
    width: 95%;
    flex-direction: column;
  }
  .hero-images {
    width: 100%;
  }
  .hero-images img {
    border: 10px solid rgb(255, 255, 255);
  }
  .hero-content {
    width: 100%;
    text-align: center;
  }
  .hero-content img {
    width: 30%;
    margin-bottom: 10px;
  }
  .hero-content h1 {
    font-size: 35px;
    margin-bottom: 10px;
  }
  .hero-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .hero-content h2 {
    font-size: 14px;
  }
  .auction-details {
    font-size: 10px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .social-media {
    padding: 30px 20px;
  }
  .social-media h2 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
  }
  iframe {
    width: 100%;
    height: 30vh; /* يمكنك تغيير الارتفاع حسب رغبتك */
  }
}
