/* === 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;
}

  /* === HOME PAGE === */
/* === HERO SECTION === */
.hero-section {
  position: relative;
  padding: 6rem 2rem 12rem;
  z-index: 2;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5rem;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 4rem;
  color: #000;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 0.9;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.hero-image {
  flex-shrink: 0;
  padding-right: 5rem;
  z-index: 1;
}

.hero-image img {
  height: 500px;
  display: block;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #424949;
  color: #f4f4f4;
  font-weight: bold;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.hero-cta:hover {
  background-color: #a86daa;
}

.download-section {
  position: relative;
  padding-bottom: 6rem;
}

.download-oval {
  position: relative;
  background-color: #a86daa;
  width: 150vw;
  height: 1000px;
  border-top-left-radius: 70%;
  border-top-right-radius: 50%;
  left: -20vw;
  margin-top: -5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.download-content {
  position: relative;
  margin: -55rem auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  gap: 2rem;
  z-index: 3;
}

.download-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 500px;
  gap: 1rem;
  color: #000;
}

.download-text h3 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.download-text p {
  font-size: 2rem;
  margin-bottom: 1rem;
  max-width: 500px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.store-buttons a {
  display: inline-block;
  text-align: center;
  width: auto;
}

.store-buttons img {
  height: 50px;
  width: auto;
  display: block;
}

.store-buttons img:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.download-phone-preview {
  flex: 0 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.download-phone-preview img {
  max-height: 600px;
  max-width: 100%;
  width: auto;
}

/* === RAINBOW SEPARATOR === */
.section-separator {
  position: relative;
  margin-top: -17rem;
  width: 100%;
  z-index: 2;
}

.section-separator img {
  width: 100%;
  display: block;
}


/* === SECTION 2 (REVIEWS INTRO) === */
.reviews-section {
  position: relative;
  background-color: #000;
  color: #f4f4f4;
  text-align: center;
  overflow: visible;
  margin-top: -22rem;
  z-index: 4;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-container h2 {
  font-size: 4rem;
  font-weight: 700;
}

.reviews-container p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

/* Fix injected 3D Review Slider layout */
.review-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  padding: 0;
  height: auto;
}

.review-column {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 0 1rem;
  box-sizing: border-box;
}

.review-fade {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 5;
  pointer-events: none;
}

.review-fade-top {
  height: 20rem;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.review-fade-bottom {
  bottom: 0;
  height: 20rem;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

/* === SECTION 3 (ABOUT) === */
.about-section {
  position: relative;
  background: transparent;
  padding-top: 5rem;
  z-index: 1;
}

.top-background {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: #000;
  z-index: 0;
}

.bottom-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #ffffff;
  z-index: 0;
}


.about-oval {
  position: relative;
  background-color: #dfbfdc;
  border-radius: 50%;
  height: 1000px;
  width: 180vw;
  left: -30vw;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  z-index: 2;
}

.about-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  left: 10%;
  padding: 0 2rem;
  margin-top: -65rem;
  z-index: 3;
}

.about-text {
  flex: 1;
  color: #222;
}

.about-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #333;
}

.about-text .highlight {
  font-weight: bold;
  color: #222;
}

.about-videos {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.about-videos video {
  width: 100%;
  max-width: 300px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  z-index: 3;
}

.about-cta {
  background-color: #424949;
  color: #ffffff;
  font-weight: bold;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 2.5rem;
  z-index: 4;
}

.about-cta:hover {
  background-color: #a86daa;
  color: #ffffff;
  cursor: pointer;
}

/* === SECTION 4 (SUPPORT) === */
.support-section {
  background-color: #fff9b1;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.support-container {
  max-width: 1200px;
  padding-left: 100px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.support-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.support-subtitle {
  font-size: 1.2rem;
  color: #222;
  line-height: 1.5;
  max-width: 600px;
}

.support-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.support-button {
  width: 200px;
  background-color: #8a4d8f; 
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2rem;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.support-button:hover {
  background-color: #dfbfdc;
  color: #000;
}

.support-image-wrapper {
  position: absolute;
  top: -280px;
  right: -450px;
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.support-image {
  height: 650px;
  width: auto;
  max-width: 100%;
  transform: rotate(100deg);
}

/* === MOBILE MEDIA QUERIES === */
@media (max-width: 1025px) {
  /* === SECTION 1 (HERO) === */
  .hero-container {
    flex-direction: column;
    padding: 6rem 1rem 3rem 1rem;
    gap: 3rem;
  }

  .hero-text {
    max-width: 100%;
    text-align: left;
  }

  .hero-text h2 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    padding-right: 0;
    margin-top: -3rem;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    height: 320px;
    max-width: 100%;
  }

  .download-oval {
    position: relative;
    background-color: #a86daa;
    height: 700px;
    width: 200vw;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    left: -30vw;
    margin-top: -8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  .download-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -35rem;
  }

  .download-text {
    align-items: center;
    max-width: 100%;
  }

  .download-text h3 {
    font-size: 3.5rem;
    white-space: normal;
  }

  .download-text p {
    font-size: 2rem;
    padding: 0 2rem;
  }

  .download-phone-preview {
    justify-content: center;
  }

  .download-phone-preview img {
    max-height: 400px;
  }

  .section-separator {
    position: relative;
    margin-top: -12rem;
    margin-bottom: 10rem;
    height: auto;
    width: 150%;
    left: -44%;
    z-index: 2;
  }

  /* === SECTION 2 (REVIEWS) === */
  .review-fade-top,
  .review-fade-bottom {
    display: none;
  }

  /* === SECTION 3 === */
  .about-oval {
    position: relative;
    background-color: #dfbfdc;
    border-radius: 50%;
    height: 1000px;
    width: 180vw;
    left: -40vw;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .about-container {
    position: relative;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    left: 0vw;
    padding: 0 1rem;
    margin-top: -60rem;
    transform: none;
    z-index: 3;
  }
  
  .about-text {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
  }
  
  .about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1;
  }
  
  .about-text p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .about-videos {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .about-videos video {
    width: 90%;
    max-width: 350px;
    border-radius: 1rem;
  }
  
  .about-cta {
    text-align: center;
  }

  /* === SECTION 4 === */
  .support-container {
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: flex-start;
    text-align: left;
  }

  .support-title {
    position: relative;
    font-size: 3.5rem;
    line-height: 1.2;
    z-index: 2;
  }

  .support-subtitle {
    position: relative;
    font-size: 1.5rem;
    max-width: 100%;
    z-index: 2;
  }

  .support-buttons {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    margin-top: 2rem;
    z-index: 2;
  }

  .support-button {
    width: 100%;
    max-width: 350px;
  }

  .support-image-wrapper {
    position: absolute;
    top: -38px;
    right: -120px;
    bottom: -20px;
    transform: scale(2.5) rotate(5deg);
    z-index: 1;
    pointer-events: none;
  }
}