@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../../assets/fonts/aktiv-grotesk/AktivGrotesk-Regular.otf")
      format("woff2"),
    url("../../assets/fonts/aktiv-grotesk/AktivGrotesk-Regular.otf")
      format("woff");
}

/* Hanken Grotesk */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/hanken-grotesk/HankenGrotesk-Regular.otf")
      format("woff2"),
    url("../../assets/fonts/hanken-grotesk/HankenGrotesk-Regular.otf")
      format("woff");
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("../../assets/fonts/hanken-grotesk/HankenGrotesk-Bold.otf")
      format("woff2"),
    url("../../assets/fonts/hanken-grotesk/HankenGrotesk-Bold.otf")
      format("woff");
}

/* Helvetica LT */
@font-face {
  font-family: "Helvetica LT";
  src: url("../../assets/fonts/helvetica-lt/HelveticaLTStd-Roman.otf")
      format("woff2"),
    url("../../assets/fonts/helvetica-lt/HelveticaLTStd-Roman.otf")
      format("woff");
}

@font-face {
  font-family: "Helvetica LT";
  src: url("../../assets/fonts/helvetica-lt/HelveticaLTStd-Roman.otf")
      format("woff2"),
    url("../../assets/fonts/helvetica-lt/HelveticaLTStd-Roman.otf")
      format("woff");
}

/* Lato */
@font-face {
  font-family: "Lato";
  src: url("../../assets/fonts/lato/Lato-Regular.ttf") format("woff2"),
    url("../../assets/fonts/lato/Lato-Regular.ttf") format("woff");
}

@font-face {
  font-family: "Lato";
  src: url("../../assets/fonts/lato/Lato-Bold.ttf") format("woff2"),
    url("../../assets/fonts/lato/Lato-Bold.ttf") format("woff");
}

@font-face {
  font-family: "Lato";
  src: url("../../assets/fonts/lato/Lato-Light.ttf") format("woff2"),
    url("../../assets/fonts/lato/Lato-Light.ttf") format("woff");
}

/* Plantin OTF */
@font-face {
  font-family: "Plantin";
  src: url("../../assets/fonts/plantin-otf/PlantinMTProRg.TTF") format("woff2"),
    url("../../assets/fonts/plantin-otf/PlantinMTProRg.TTF") format("woff");
}

@font-face {
  font-family: "Plantin";
  src: url("../../assets/fonts/plantin-otf/PlantinMTProRg.TTF") format("woff2"),
    url("../../assets/fonts/plantin-otf/PlantinMTProRg.TTF") format("woff");
}

/* SF Pro */
@font-face {
  font-family: "SF Pro";
  src: url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff2"),
    url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff");
}

@font-face {
  font-family: "SF Pro";
  src: url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff2"),
    url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff");
}

@font-face {
  font-family: "SF Pro";
  src: url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff2"),
    url("../../assets/fonts/sf-pro/SF-Pro-Text-Regular.otf") format("woff");
}

/* ============================================
   UTILITY CLASSES - Font Family
   ============================================ */

.font-aktiv {
  font-family: "Aktiv Grotesk", sans-serif;
}

.font-hanken {
  font-family: "Hanken Grotesk", sans-serif;
}

.font-helvetica {
  font-family: "Helvetica LT", sans-serif;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.font-plantin {
  font-family: "Plantin", serif;
}

.font-sf-pro {
  font-family: "SF Pro", sans-serif;
}

/* ============================================
   UTILITY CLASSES - Font Weight
   ============================================ */

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

/* ============================================
   COMBINATION CLASSES - Font + Weight
   ============================================ */

/* Aktiv Grotesk */
.aktiv-regular {
  font-family: "Aktiv Grotesk", sans-serif;
}

.aktiv-bold {
  font-family: "Aktiv Grotesk", sans-serif;
}

/* Hanken Grotesk */
.hanken-regular {
  font-family: "Hanken Grotesk", sans-serif;
}

.hanken-bold {
  font-family: "Hanken Grotesk", sans-serif;
}

/* Helvetica LT */
.helvetica-regular {
  font-family: "Helvetica LT", sans-serif;
}

.helvetica-bold {
  font-family: "Helvetica LT", sans-serif;
}

/* Lato */
.lato-light {
  font-family: "Lato", sans-serif;
}

.lato-regular {
  font-family: "Lato", sans-serif;
}

.lato-bold {
  font-family: "Lato", sans-serif;
}

/* Plantin */
.plantin-regular {
  font-family: "Plantin", serif;
}

.plantin-bold {
  font-family: "Plantin", serif;
}

/* SF Pro */
.sf-pro-regular {
  font-family: "SF Pro", sans-serif;
}

.sf-pro-medium {
  font-family: "SF Pro", sans-serif;
}

.sf-pro-bold {
  font-family: "SF Pro", sans-serif;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid transparent;
  border-top-color: #fffd00;
  border-right-color: #fffd00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body.loading,
html.loading {
  overflow: hidden !important;
  height: 100%;
}

.scroll-container {
  overflow: hidden;
  position: relative;
}

.scroll-text {
  display: flex;
  white-space: nowrap;
  gap: 20px;
  /* animation OFF by default */
}

.scroll-text span {
  flex-shrink: 0;
  min-width: calc(25% - 15px);
  text-align: center;
}

.scroll-bg {
  opacity: 1;
  border-radius: 1000px;
  backdrop-filter: blur(5px);
  font-size: 17px;
  padding: 6px 20px;
  gap: 4px;
  background: #ffffff80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}

.scroll-text.animate {
  animation: scroll 40s linear infinite;
}

.scroll-text.animate-left {
  animation: scrollLeft 8s linear infinite;
}

.scroll-text.animate-right {
  animation: scrollRight 8s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#scrollText .div {
  background: white;
  backdrop-filter: blur(-19px);
  border-radius: 24px;
  padding: 12px 24px;
  border: 1px solid white;
  transition: all 0.3s ease;
}

#scrollText .div:hover {
  background: white;
}

h1 {
  animation: fadeInUp 0.8s ease-out;
}

p {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

button {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Vertical Lines Pattern Background */
.pattern-bg {
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 5px,
    #e8e3e3 1px,
    #e8e3e3 8px
  );
  background-size: 16px 100%;
}

@media (max-width: 1024px) {
  .pattern-bg {
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 8px,
      #e8e3e3 1px,
      #e8e3e3 12px
    );
    background-size: 12px 100%;
  }
}

@media (max-width: 640px) {
  .pattern-bg {
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 8px,
      #e8e3e3 1px,
      #e8e3e3 10px
    );
    background-size: 10px 100%;
  }
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
}

h2 {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

h3,
h4 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

p {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

img {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Image hover effect */
img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.875rem;
  }

  p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.875rem;
  }

  button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}

.border-width {
  border-width: 0.8px;
}

.border-t {
  border-top-width: 2px !important;
}

.shadow-yellow {
  box-shadow: 0px 4px 4px 0px #00000040, 2px 4px 10px 2px rgba(255, 255, 0, 0.2);
}

@media (max-width: 480px) {
  .responsive-header {
    margin-top: 10px !important;
    margin-bottom: 10px;
  }

  .responsive-nav {
    gap: 10px !important;
  }

  .responsive-text {
    font-size: 12px !important;
  }

  .scroll-bg {
    width: 100% !important;
    font-size: 14px !important;
  }

  .font-heading {
    font-size: 18px !important;
  }

  .font-paragraph {
    font-size: 14px !important;
  }

  .font-span {
    font-size: 16px !important;
  }

  .font-14 {
    font-size: 14px !important;
  }

  .font-12 {
    font-size: 12px !important;
  }
}

@media (max-width: 420px) and (min-height: 890px) {
  .max-height {
    max-height: 110vh !important;
  }
}

 @media (max-width: 395px) and (min-height: 835px) {
  .max-height {
    max-height: 115vh !important;
  }
  }

@media (min-width: 425px) and (max-width: 435px) and (min-height: 920px) {
  .max-height {
    max-height: 115vh !important;
  }
}

@media (min-width: 600px) {
  .scroll-bg {
    width: 100% !important;
    font-size: 14px !important;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
    .max-height {
        max-height: 100vh !important;
    }
}

/* ============ iPad (10.9") - 1640 x 2360 ============ */
@media (min-width: 1000px) and (max-width: 1100px) {
    .max-height {
        max-height: 77vh !important;
    }
}

/* ============ iPad Air 11" - 1668 x 2388 ============ */
@media (min-width: 1100px) and (max-width: 1200px) {
    .max-height {
        max-height: 49vh !important;
    }
}

@media (min-width: 800px) and (max-width: 900px) and (orientation: portrait) {
      .max-height {
        max-height: 89vh !important;
    }
}