@font-face {
  font-family: "Hacen Maghreb";
  src: url("../fonts/Hacen Maghreb.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hacen Maghreb";
  src: url("../fonts/Hacen Maghreb Lt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hacen Maghreb";
  src: url("../fonts/Hacen Maghreb Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: #d5cfce;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #afacab;
}

html {
  scroll-behavior: smooth;
}

.gradient-hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 50%, #292929 100%);
}

.gradient-overlay {
  background: radial-gradient(
    circle at 30% 50%,
    rgba(213, 207, 206, 0.15) 0%,
    transparent 50%
  );
}

.text-gradient {
  background: linear-gradient(135deg, #d5cfce 0%, #afacab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  filter: drop-shadow(0 0 20px rgba(213, 207, 206, 0.5));
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #d5cfce;
  box-shadow: 0 0 0 3px rgba(213, 207, 206, 0.1);
}

#scroll-to-top {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}

#scroll-to-top.show {
  transform: scale(1);
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
