/* =========================
   1. Fonts
   ========================= */
@font-face {
  font-family: '1';
  src: url('../font/ge dinarone.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '2';
  src: url('../font/ArbFONTS-GE-Dinar-Two-Light-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: '3';
  src: url('../font/ArbFONTS-GE-Dinar-Two-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '4';
  src: url('../font/ArbFONTS-GE-Dinar-Two-Medium-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '5';
  src: url('../font/Foda-Free-Font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* =========================
   2. Global Styles
   ========================= */
body {
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
}

/* =========================
   3. Header
   ========================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#header-logo img {
  width: 500px;
  height: auto;
}

header img {
  transform: scale(0.4);
  margin-top: 30px;
}

header h2 {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-family: '5', Arial, sans-serif;
}

header h3 {
  color: #fff;
  text-align: center;
  font-family: '3', Arial, sans-serif;
  font-weight: 900;
}

hr {
  border: none;
  background-color: #fff;
  height: 3px;
  width: 80%;
  margin: 20px auto;
}

/* =========================
   4. Marquee
   ========================= */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  padding: 10px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll-right 25s linear infinite;
}

.marquee-content img {
  margin-right: 30px;
  height: 150px;
  width: auto;
}

@keyframes scroll-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* =========================
   5. Section Typography
   ========================= */
.shareet,
.perfumes,
.moase,
.medua {
  color: #fff;
  text-align: center;
  font-family: '3', Arial, sans-serif;
}

/* Shareet */
.shareet {
  margin-top: 50px;
}

/* =========================
   6. Perfumes Section
   ========================= */

.perfumes {
  margin-top: 40px;
}

.perfumes h3 {
  margin-bottom: 30px;
}

/* البادجات (labels) يمين/يسار */
.perfume-tag,
.beauty-tag {
  background-color: #fff;
  color: #000;
  padding: 10px 30px;
  display: inline-block;
}

.perfume-tag {
  border-radius: 0 40px 40px 0;  /* يسار */
  text-align: end;
}

.beauty-tag {
  border-radius: 40px 0 0 40px;  /* يمين */
  text-align: start;
}

.perfumes h4 {
  margin: 0;
  font-family: '5', Arial, sans-serif !important;
  font-size: 16px !important;
}

/* شبكة الشعارات */
.brand-grid img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* =========================
   7. Moase
   ========================= */
.moase img {
  transform: scale(0.5);
}

/* =========================
   8. Medua
   ========================= */
.medua img {
  transform: scale(0.3);
}

/* عناوين صغيرة مثل n3 */
.n3 {
  font-family: '3', Arial, sans-serif !important;
}

/* =========================
   9. Footer
   ========================= */

.elias-footer {
  background: #111;
  color: #eee;
  padding: 60px 0 20px;
  font-family: "Cairo", sans-serif;
  border-top: 3px solid #a67c52;
}

.elias-footer .footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 20px;
  font-weight: bold;
  color: #a67c52;
  margin-bottom: 5px;
}

.footer-sub {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-text {
  color: #ccc;
  font-size: 15px;
}

.footer-link {
  color: #eee;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #a67c52;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.copy-text {
  font-size: 14px;
  color: #bbb;
}

/* =========================
   10. Responsive
   ========================= */

/* موبايل عام */
@media (max-width: 576px) {
  header h2 {
    font-size: 28px;
  }

  header h3 {
    font-size: 20px;
  }

  .marquee-content {
    animation-duration: 15s;
  }

  .marquee-content img {
    height: 100px;
  }

  .perfumes h4 {
    font-size: 12px !important;
  }

  .perfume-tag,
  .beauty-tag {
    padding: 8px 16px;
  }

  .brand-grid img {
    max-height: 70px;
  }

  .elias-footer {
    text-align: center;
  }

  .footer-link:hover {
    padding-left: 0; /* على الموبايل نلغي الحركة */
  }
}
