/* =========================
   STICKY FOOTER (SCOPED)
========================= */

/* Make page full height */
html, body {
  height: 100%;
}

/* Flex layout only for this page */
body {
  display: flex;
  flex-direction: column;
}

/* Make main take remaining space */
main {
  flex: 1;
}
/* =========================
   FIX FOOTER POSITION
========================= */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Push footer to bottom */
.footer {
  margin-top: auto;
}
/* Main content */

/* =========================
   AXIS STRIPS
========================= */

.axis-strips {
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}

/* STRIP */
.axis-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 40px 60px;

  text-decoration: none;
  color: white;

  border-top: 1px solid rgba(255,255,255,0.1);

  transition: all 0.25s ease;
}

/* last border */
.axis-strip:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* HOVER */
.axis-strip:hover {
  background: rgba(255,255,255,0.03);
}

/* TEXT */
.strip-content h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.strip-content p {
  font-size: 14px;
  opacity: 0.6;
}

/* ARROW */
.arrow {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.axis-strip:hover .arrow {
  transform: translateX(6px);
}

/* cta button */
.axis-strip {
  display: flex;
  flex-direction: column;     /* 🔥 stack */
  align-items: center;        /* center everything */
  text-align: center;

  gap: 16px;                  /* space between text & button */

  padding: 40px 20px;
}
.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.cta-button-large:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    gap: 16px;
}

/* better UI */
.axis-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 60px 20px;
  gap: 18px;

  border-top: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;

  position: relative;
}

/* bottom border */
.axis-strip:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* background pic */

/* =========================
   AXIS PAGE BACKGROUND
========================= */

body {
  position: relative;
  min-height: 100vh;

  /* Base background */
  background: #000;
  overflow-x: hidden;
}

/* Background layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url('/assets/axis-bg.png') center/cover no-repeat;

  filter: blur(5px) brightness(0.7); 
  transform: scale(1.1); /* prevent blur edges */

  z-index: -2;
}

/* Dark overlay (very important) */
body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.711); /* 🔥 control darkness */

  z-index: -1;
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
  .axis-hero {
    padding: 120px 20px 50px;
  }

  .axis-hero h1 {
    font-size: 42px;
  }

  .axis-hero p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .axis-hero {
    padding: 100px 16px 40px;
  }

  .axis-hero h1 {
    font-size: 32px;
  }

  .axis-hero p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .axis-strip {
    padding: 50px 20px;
  }

  .strip-content h2 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {

  .axis-strip {
    padding: 40px 16px;
    gap: 14px;
  }

  .strip-content h2 {
    font-size: 20px;
  }

  .strip-content p {
    font-size: 13px;
    max-width: 90%;
  }

  .cta-button-large {
    padding: 12px 24px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  body::before {
    filter: blur(5px) brightness(0.7); /* reduce blur */
  }
}

@media (max-width: 640px) {
  .axis-strips {
    margin-bottom: 60px;
  }
}