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

/* === SECTION 1 === */
.download-intro-container {
  background-color: #000;
  color: #f4f4f4;
  padding-top: 6rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.download-intro-container h2 {
  font-size: 4rem;
}

.download-subtext {
  font-size: 1.25rem;
  margin-bottom: 5rem;
}

.store-buttons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  gap: 10rem;
}

.store-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-box img.store-badge {
  height: 70px;
  margin-bottom: 1rem;
}

.store-box img.qr-code {
  height: 250px;
  width: auto;
}

.store-badge {
  height: 100px;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* === SECTION 2 === */
.rainbow-transition-section {
  background-color: #fff;
  text-align: center;
  position: relative;
}

.rainbow-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}

.rainbow-divider {
  width: 100%;
  height: auto;
  display: block;
}

.phones-floating-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.phones-floating {
  width: min(90vw, 600px);
  height: auto;
}

.discover-more-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem; /* 👈 controlled margin now */
  padding-bottom: 4rem; /* for extra space under */
}

.discover-more-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-family: 'Agrandir', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.discover-more-button:hover {
  background-color: #a86daa; 
}

.phones-bottom {
  max-width: 600px;
  width: 100%;
}

