html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #e04b2a;
  --text-color: #ffffff;
  --bg-color: #000000;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "TuskerGrotesk", sans-serif;
}
@font-face {
  font-family: "TuskerGrotesk";
  src: url("font/TuskerGrotesk-6700Bold.woff") format("woff");

  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SFUIText";
  src: url("SFUITEXT-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
}
.no-style {
  color: inherit;
  text-decoration: none;
}

.no-style:hover {
  color: inherit;
}

.navbar {
  position: fixed;
  top: 20px;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 15px 30px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--primary-color);
  backdrop-filter: blur(10px);
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.divider-nav {
  color: var(--primary-color);
}

.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1100;
}

.menu-btn span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .container {
    justify-content: space-between;
  }

  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -260px;
    height: 80vh;
    width: 250px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.85);
    border-left: 1px solid var(--primary-color);
    backdrop-filter: blur(12px);
    padding: 40px 20px;
    transition: right 0.4s ease-in-out;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .divider-nav {
    display: none;
  }
}

.hero {
  /* position: relative; */
  width: auto;
  height: auto; /* طول الشاشة بالكامل */
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
    margin: 0px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    margin-bottom: -40px;
  }

  .hero-video {
    width: 100%;
    height: auto;

    /* max-height: 100vh; */
    object-fit: contain;
    object-position: center;
    /* display: block; */
  }
}
.about-section {
  position: relative;
  background: var(--bg);
  color: var(--text);
  padding: 90px 20px 100px;
  overflow: hidden;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-section::before {
  background: radial-gradient(
      1200px 200px at -10% 10%,
      rgba(224, 75, 42, 0.08) 0,
      transparent 60%
    ),
    radial-gradient(
      900px 180px at 110% 90%,
      rgba(224, 75, 42, 0.06) 0,
      transparent 60%
    );
  mix-blend-mode: screen;
}
.about-section::after {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(224, 75, 42, 0.12) 0 2px,
    transparent 2px 10px
  );
  opacity: 0.08;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-eyebrow {
  display: inline-block;

  font-size: 30px;
  text-transform: uppercase;
  color: #bbb;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
  margin-bottom: 14px;
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.title-stroke {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}
.title-stroke::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.38em;
  background: linear-gradient(
    90deg,
    transparent 0 6%,
    var(--primary) 6% 94%,
    transparent 94% 100%
  );
  z-index: -1;
  transform: skew(-6deg);
  opacity: 0.8;
}

.about-lead {
  max-width: 820px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: #ddd;
  margin: 0 0 40px;
  font-family: "SFUIText", sans-serif;
}

.about-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
}

.about-item {
  flex: 1 1 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 22px;
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
  position: relative;
}
.about-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 8px 8px,
    rgba(224, 75, 42, 0.15) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.15;
  pointer-events: none;
  border-radius: 12px;
}
.about-item:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 75, 42, 0.35);
  background: rgba(224, 75, 42, 0.06);
}

.about-item h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-item p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--muted), transparent);
  align-self: stretch;
}

@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    gap: 16px;
  }
  .about-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--muted), transparent);
  }
  .about-item {
    min-width: unset;
  }
}
.services-section {
  padding: 80px 20px;
  background: #000;
  text-align: center;
  color: white;
}

.service-title {
  font-size: 30px;
  text-transform: uppercase;
}

.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.service {
  max-width: 300px;
  transition: color 0.3s ease;
}

.service-icon {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.divider {
  width: 1px;
  height: 100px;
  background: white;
  margin: 0 40px;
}

.service:hover .service-icon {
  transform: scale(1.1);
}

.service:hover h3,
.service:hover p {
  color: #e04b2a; /* اللون الأساسي */
}

@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
  }

  .divider {
    width: 60%;
    height: 1px;
  }
}

.our-work-section {
  background: #000;
  padding: 100px 60px;
  color: #fff;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: #e04b2a;
}

.section-title2 {
  font-size: 8rem;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #e04b2a;
}
@media (max-width: 768px) {
  .section-title2 {
    font-size: 3rem;
  }
}
.project-card {
  display: flex;
  background: #000000;
  padding: 25px;
  gap: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  border-bottom: 5px solid rgb(234, 234, 234);
  border-radius: 0;
  max-width: 70%;
  margin-bottom: 50px;
  position: relative;
  height: 400px;
}

.project-card.left {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row;
}

.project-card.right {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
}

.project-card .project-text {
  flex: 1;
  color: #fff;
  min-width: 200px;
}

.project-card .project-image {
  flex: 1;
  min-width: 400px;
  position: relative;
}

.project-card .project-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.project-card .view-btn {
  margin-top: 15px;
  background-color: #000;
  color: #fff;
  padding: 4px 16px 8px 16px;
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  border: 2px solid #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-card .view-btn:hover {
  background-color: #e04b2a;
  color: #fff;
}

@media (max-width: 1024px) {
  .project-card {
    max-width: 80%;
    height: auto;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .project-card .project-image {
    min-width: unset;
    width: 100%;
  }

  .project-card .project-image img {
    width: 100%;
    height: auto;
  }

  .project-card .project-text {
    min-width: unset;
    width: 100%;
  }
}
.project-des {
  font-family: "SFUIText", sans-serif;
}
@media (max-width: 768px) {
  .our-work-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .project-card {
    max-width: 100%;
    padding: 15px;
  }

  .project-card .view-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.store-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.store-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 10px;
}

.pc-img {
  display: block;
}
.mobile-img {
  display: none;
}

.store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.store-content {
  color: #fff;
  max-width: 400px;
}

.store-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.store-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.btn-store {
  background: #ff4a1a;
  color: #fff;
  padding: 5px 10px 10px 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border: 2px solid #fff;
  border-radius: 20px;
}

.btn-store:hover {
  background: #ff693d;
}

@media (max-width: 768px) {
  .pc-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }

  .store-section {
    height: 300px;
  }

  .store-overlay {
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
  }

  .store-content {
    max-width: 260px;
  }

  .store-content h2 {
    font-size: 1.6rem;
  }

  .store-content p {
    font-size: 0.95rem;
  }

  .btn-store {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

.contact-section {
  position: relative;
  background: url("contact.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 60px;
}

.contact-container {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.85);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.contact-container.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: none;
  color: white;
  border-radius: 5px;
}

.contact-container button {
  background: #e84325;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.contact-container button:hover {
  background: #ff5a3c;
}

@media (max-width: 768px) {
  .contact-section {
    background: none;
    padding: 40px 20px;
    min-height: auto;
    margin-top: 40px;
  }

  .contact-container {
    background: #111;
    padding: 20px;
    box-shadow: none;
  }

  .contact-container h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}

.submit-btn:hover {
  background: #ff5c30;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #e04b2a;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff5c30;
}

/* Firefox */
* {
  scrollbar-color: #e04b2a #111;
}
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e04b2a;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    text-align: left;
  }
}
.product-slider-section {
  display: flex;
  justify-content: center;
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}
.swiper-wrapper {
  padding-bottom: 30px;
}
.swiper {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.swiper-slide img:hover {
  box-shadow: 0 10px 20px rgba(224, 75, 42, 0.5);
}

.swiper-pagination {
  bottom: -2px !important;
  padding-bottom: 0px;
}
.swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #e04b2a !important;
}

.swiper-button-next,
.swiper-button-prev {
  /* display: none; */
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  color: #d94823 !important;
  /* display: inline-block; */
  border: none;

  margin: 0px;
}

.project-gallery {
  background: #000;
  padding: 20px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}
.credits {
  background: #000;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.ticket-box {
  background: #000000;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 20px 30px;
  max-width: 700px;
  width: 100%;
  color: #fff;
  text-align: left;
}

.ticket-box h3 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e04b2a;
}

.ticket-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-box li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.ticket-box strong {
  color: FFFF00;
}

.ticket-box a {
  color: #af4f39;
  text-decoration: none;
  transition: color 0.3s;
}

.ticket-box a:hover {
  color: #e04b2a;
}
.font-credid {
  font-family: "SFUIText", sans-serif;
  font-size: 18px;
}
/* .test-btn {
  padding: 12px 24px;
  font-size: 1.5rem;
} */
.scroll-to-top {
  padding: auto;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: none;
  /* border-radius: 50%; */
  /* background-color: #d94823; */
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
  z-index: 10000;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}