/* PAGE BACKGORUND */


/* HEADER */
.hero {
  width: 100%;
  height: 90vh;              /* control height here */
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.marquee img {
  height: 100%;
  width: auto;
}

@keyframes scroll {
  from { transform: translateX(70%); }
  to { transform: translateX(-80%); }
}

/* OVERLAY */
overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.9)
  );
  padding: 6rem 1rem;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 6rem 1.5rem;
}

/* headline */
.title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.12rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

/*TICKER*/
.ticker {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5cff7a;
    margin-bottom: 2.5rem;
}

/*desc*/
.desc {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    font-weight: 600;
}

/*MANTRA*/
.mantra{
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 3.5rem;
    font-weight: 600;
}

.mantra span {
    font-weight: 800;
    color: #ffffff;
}

.mantra2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6rem;
}


/* GLOBAL SAFE DEFAULTS */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* FOOTER IMAGE */
.footer-image {
  width: 100%;
  max-height: 40vh;
  object-fit: cover;
  border-radius: 16px;
}

/* FOOTER TEXT BOX */
.footer-card {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}


@media (max-width: 640px) {

  h1 {
    font-size: 2rem;
  }

  .mantra {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .footer-image {
    max-height: 28vh;
  }

  .footer-card {
    margin: 1.5rem 1rem 0;
    padding: 1.25rem;
    font-size: 0.9rem;
  }

  .button-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contract-box {
    font-size: 0.75rem;
    padding: 1rem;
  }
}


@media (min-width: 641px) and (max-width: 1024px) {

  h1 {
    font-size: 2.8rem;
  }

  .footer-image {
    max-height: 35vh;
  }

  .footer-card {
    max-width: 720px;
    padding: 1.5rem;
  }

  .contract-box {
    font-size: 0.85rem;
  }
}


@media (min-width: 1025px) {

  h1 {
    font-size: 3.5rem;
  }

  .footer-image {
    max-height: 40vh;
  }

  .footer-card {
    max-width: 900px;
    padding: 2rem;
  }

  .contract-box {
    font-size: 0.9rem;
  }
}


a {
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

footer {
  margin-top: 4rem;
  padding-bottom: 2rem;
}