/* GOTHAM FONT FAMILY*/

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 950;
  font-style: normal;
}

body {
  font-family: "Gotham", sans-serif;
}

.border-primary {
  color: #002868;
}

.border-secondary {
  border-color: #bf0a30;
}

.bg-primary {
  background-color: #002868;
}

.bg-secondary {
  background-color: #bf0a30;
}

.text-primary {
  color: #002868;
}

.border-gradient {
  border: 1px solid transparent;
  background: linear-gradient(#ffffff00, #002868 50%, #00000000 80%) padding-box,
    linear-gradient(to top, #ffffff, #002868 50%, #00000000 80%) border-box;
}

[x-cloak] {
  display: none !important;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #ff623e 0%, #bf0a30 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.btn-primary img {
  height: 1.5rem;
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(191, 10, 48, 0.4);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(191, 10, 48, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(200%) skewX(-20deg);
  }
}
