/* === FONT IMPORT === */
@font-face {
  font-family: 'Space Grotesk';
  src: url('/Assets/Fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('/Assets/Fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-bold.ttf') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts//Agrandir_Font_Family/agrandir-tight-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* === RESET & BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Agrandir', sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bold {
  font-weight: 900;
}

.tight {
  font-weight: 300;
}

.h2, .cta-button {
  font-weight: 700;
}

.subtitle, nav a {
  font-weight: 500;
}

p, .bio-text {
  font-weight: 300;
}

.caption, .footer-note {
  font-weight: 100;
}

/* === APP PAGE === */
/* === SECTION 1 === */
.app-section {
  padding-top: 6rem;;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.app-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.app-intro h2 {
  font-size: 4rem;
  font-weight: 400;
}

.app-intro p {
  font-size: 1.25rem;
}

.app-feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.app-feature-block.reverse {
  flex-direction: row-reverse;
}

.app-feature-image img {
  max-width: 100%;
  height: 450px;
}



.app-feature-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.feature-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f9f9f9;
}

.feature-box img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 1rem;
}

.feature-box h3 {
  margin: 0;
  font-size: 1.5rem;
}

.feature-box p {
  margin: 0.25rem 0 0 0;
  font-size: 1.2rem;
}

/* === SECTION 2 === */
.app-showcase-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* === WHITE TOP + BLACK BOTTOM BACKGROUND === */
.app-showcase-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding-bottom: 10rem;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #000 50%, #000 100%);
  z-index: 0;
}

/* === OVAL BACKGROUND === */
.app-showcase-oval {
  position: absolute;
  top: 0;
  left: -30vw;
  width: 160vw;
  height: 120vh;
  background-color: #d74094;
  border-radius: 50%;
  z-index: 1;
}

/* === RAINBOW LAYER === */
.app-showcase-rainbow {
  position: absolute;
  top: -40px;
  right: -100px;
  z-index: 2;
  width: 120%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.app-showcase-rainbow img {
  height: 900px;
  width: auto;
  max-width: 100%;
  transform: rotate(190deg);
}

/* === SHOWCASE CONTENT === */
.app-showcase-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6rem;
  padding: 5rem 2rem 0rem;
  flex-wrap: nowrap;
}

.app-showcase-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-showcase-block img {
  max-width: 250px;
  height: auto;
}

.app-showcase-label {
  margin-top: 1rem;
  background: #dfbfdc;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === DOWNLOAD BUTTON === */
.app-showcase-button {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 6rem 0 5rem;
}

.app-showcase-button a {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.app-showcase-button a:hover {
  background-color: #a86daa;
}


@media (max-width: 1024px) {
  /* === SECTION 1 === */
  .app-section {
    width: 100%;
    overflow-x: hidden;
  }

  .app-intro h2 {
    font-size: 3.5rem;
    margin: 0 1rem;
  }

  .app-intro p {
    font-size: 1.25rem;
    margin: 0 1rem;
  }

  .app-feature-block {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .app-feature-image {
    order: -1;
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .app-feature-image img {
    width: 80%;
    height: auto;
  }

  .app-feature-boxes {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .feature-box {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
  }


  .app-feature-block.reverse {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

    /* === SECTION 2 === */
    .app-showcase-oval {
      position: absolute;
      top: 0;
      left: -100vw;
      width: 300vw;
      height: 190vh;
      background-color: #d74094;
      z-index: 0;
    }
  
    .app-showcase-content {
      flex-direction: column;
      align-items: center;
      gap: 4rem;
      padding: 3rem 1rem 0rem;
    }
  
    .app-showcase-block img {
      max-width: 220px;
      height: auto;
    }
  
    .app-showcase-button {
      margin-top: 3rem;
    }

    .app-showcase-rainbow {
      position: absolute;
      top: 100px;
      right: -150px;
      z-index: 2;
      width: 180vw;
      height: 150vh;
      display: flex;
      justify-content: flex-end;
      pointer-events: none;
      overflow: visible;
    }
    
    .app-showcase-rainbow img {
      height: 1200px;
      transform: rotate(120deg) scale(2);
    }
}

