@import url("./variables.css");
@import url("./animations.css");
@import url("./components.css");

@font-face {
  font-family: "Satoshi";
  src: url(/assets/satoshi-medium.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi-Black";
  src: url(/assets/satoshi-black.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: var(--text-primary);
}

body {
  background-color: var(--primary-bg);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-primary);
  color: var(--text-primary);
}

img,
svg,
video,
canvas {
  max-width: 100%;
}


.hero {
  padding-top: var(--navbar-height);
}

.hero-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.contact {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.2px solid #FFFFFF !important;
    border-radius: 100px;
    font-size: 12px;
    font-family: 'Satoshi-Black', sans-serif;
    letter-spacing: 0.8px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.contact:hover {
    border-color: #F26227 !important;
    color: #FFFFFF;
}

.contact.active-page {
    background-color: #FFFFFF !important;
    box-shadow: none !important;
    color: #000000 !important;
    transform: translateY(0);
}

.contact:hover .btn-icon {
  color: #f26227;
  opacity: 1;
  transform: translateX(0);
}



.contact .btn-text {
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact:hover .btn-text {
  transform: translateX(-6px);
}

.contact.active-page .btn-text {
  transform: translateX(0);
}

.contact.active-page:hover .btn-text {
  transform: translateX(-6px);
}

.contact:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.contact.active-page:hover .btn-icon {
  color: #000000 !important;
  opacity: 1;
  transform: translateX(0);
}

.contact .btn-icon {
  position: absolute;
  right: 18px;
  opacity: 0;
  transform: translateX(5px);
  display: flex;
  align-items: center;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.core-header-image {
  max-width: 100%;
  height: auto;
}

.core-year-badge {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  max-width: 450px;
  min-width: 200px;
  height: auto;
  z-index: 10;
}

.hero-quote {
  text-align: center;
  margin: var(--spacing-xl) 0;
  font-family: var(--font-primary);
}

.hero-quote-text {
  font-size: var(--font-size-lg);
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.hero-quote-text .text-accent {
  color: var(--accent-orange);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: var(--spacing-xl) 0;
}

.hero-cta-link {
  min-width: 160px;
  justify-content: center;
  text-decoration: none;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 5%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.about-image {
  flex: 1.5;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
}

.about-content {
  flex: 1;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.social-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}



.social-btn svg {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-showcase {
  width: min(92vw, 1400px);
  margin: var(--spacing-4xl) auto;
}

.feature-showcase img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-video-link {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background-color: #1a1a1a;
}

.feature-video-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.feature-video-link:hover img {
  filter: brightness(0.82);
  transform: scale(1.02);
}

.feature-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background-color: rgba(242, 98, 39, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.feature-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.site-footer {
  width: 100%;
  margin-top: 40px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-family: "Satoshi-Black", sans-serif;
}

.site-footer__text {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.site-footer__icon {
  width: 14px;
  height: 14px;
  fill: var(--accent-orange);
  flex: 0 0 auto;
}


@media screen and (max-width: 900px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 8px);
  }

  .hero-images {
    min-height: 0;
    padding: 0 12px;
  }

  .core-header-image {
    width: 100%;
    max-width: 720px;
    object-fit: contain;
  }

  .hero-quote {
    width: min(100% - 2rem, 560px);
    margin: 2.2rem auto 1.25rem;
  }

  .hero-quote-text {
    font-size: clamp(1rem, 4.3vw, 1.35rem);
  }

  .cta-buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
  }

  .hero-cta-link {
    min-width: min(44vw, 180px);
    min-height: 44px;
  }

  .about-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    max-width: 1600px;
    margin: 72px auto;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    border-radius: 10px;
  }

  .about-content {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
  }

  .social-links-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 8px;
    width: 100%;
    margin-top: 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .social-links-container::-webkit-scrollbar {
    display: none;
  }

  .core-year-badge {
    width: min(50vw, 240px);
    min-width: 132px;
    top: 87%;
  }

  .feature-showcase {
    width: calc(100% - 2rem);
    margin: 3rem auto;
  }

  .feature-video-link {
    border-radius: 10px;
  }

  .feature-video-play {
    width: 62px;
    height: 44px;
    border-radius: 11px;
  }
}


@media screen and (max-width: 760px) {
  .core-year-badge {
    width: min(52vw, 220px);
    top: 86%;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 2px);
  }

  .hero-images {
    padding: 0 8px;
  }

  .core-header-image {
    width: 100%;
    max-width: 430px;
  }

  .core-year-badge {
    width: min(48vw, 190px);
    min-width: 118px;
    top: 85%;
  }

  .hero-quote {
    margin-top: 1.8rem;
  }

  .cta-buttons {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .hero-cta-link {
    flex: 1 1 138px;
    min-width: 0;
    max-width: 180px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
    letter-spacing: -0.5px;
  }

  .about-section {
    gap: 28px;
    margin: 56px auto;
  }

  .about-content {
    text-align: left;
    font-size: 1rem;
    line-height: 1.65;
  }

  .social-links-container {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .site-footer {
    padding: 16px 20px;
  }

  .site-footer__text {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 1px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

