html {
    background-color: #7944e4;
}

/* ======= Fynding Feet Main Styles ======= */

/* Reset and base */
:root {
  --primary-gradient: linear-gradient(135deg, #6D00EF 0%, #D3008B 100%);
  --button-color: #FE01BA;
  --button2-color: #00C8A0;
  --text-light: #ffffff;
  --text-dark: #2A2A2A;
  --bg-light: #7944e4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg-light);
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  padding-top: 70px; /* Matches header height */
  line-height: 1.5;
}

/* ====== Navbar / Logo ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;   /* Nav height */
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: height 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo img {
  height: 140px;           /* Normal logo height */
  width: auto;
  margin-top: 60px;
  display: block;
  transition: height 0.3s cubic-bezier(.4,1.5,.5,1), margin 0.3s;
}

/* Shrink on scroll */
.logo.shrink img {
  height: 70px !important;
  margin-top: 0;
}

/* ========== Main Layout ========== */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px;
}

.hero {
  background: #7944e4;
  border-radius: 16px;
  color: var(--text-light);
  text-align: center;
  padding: 24px 16px 8px 16px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 1.8rem;
  margin-top: 12px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.input-field {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-primary {
  display: block;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background: var(--button-color);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  display: block;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background: var(--button2-color);
  color: var(--text-light);
}

/* ======= Stats Cards ======= */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0px;
}

.stat-card {
  background: var(--text-light);
  border-radius: 12px;
  text-align: center;
  padding: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-card i {
  font-size: 1.8rem;
  color: #6D00EF;
  margin-bottom: 8px;
}

.stat-card .value {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.stat-card .label {
  font-size: 0.75rem;
  color: #555;
}

/* ======= Breakers ======= */
.breaker, .breaker2, .breaker3 {
  width: calc(100% + 32px);
  height: 1.6rem;
  margin: 24px -16px 0;
}
.breaker { background: linear-gradient(to right, #7944E4, #FE01BA); }
.breaker2 { background: linear-gradient(to right, #FE01BA, #7944e4); margin: 0 -16px 0; }
.breaker3 { background: linear-gradient(to right, #7944e4, #FE01BA); margin: 0 -16px 0; }

/* ======= About Cards & Reviews ======= */
.about, .about3 {
  background: #ffffff;
  color: #000000;
  padding: 16px;
  margin: 0 -16px 0;
  width: calc(100% + 32px);
  text-align: center;
  border-radius: 0;
}
.about h1, .about3 h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.about2 h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  margin-top: 8px;
  color: #ffffff;
}
.about2-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.about2-card {
  color: var(--text-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}
.about2-cards .about2-card:nth-child(2) {
  flex-direction: row-reverse;
}
.about2-card img {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
}
.about2-card .label {
  font-size: 0.75rem;
  color: #ffffff;
}

/* Reviews carousel */
.about3-cards {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 8px 0;
}
.review-card {
  flex: 0 0 80%;
  background: #E6DCF9;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 16px;
  text-align: center;
}
.review-card img {
  width: 75%;
  border-radius: 8px;
  margin-bottom: 1px;
}
.review-card h1 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1px;
}
.review-card p1 {
  display: block;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 1px;
}
.review-card p {
  font-size: 0.75rem;
  margin-top: 10px;
}

.about-icon {
  display: block;
  margin: 0 auto 8px;
  width: 32px;
  height: auto;
}
.verified-icon {
  height: 0.95em;
  width: auto;
}

/* Animation for about/stat cards */
.about .stat-card,
.about2 .about2-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.about .stat-card.visible,
.about2 .about2-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.about .stat-card:nth-child(1), .about2 .about2-card:nth-child(1) { transition-delay: 0s; }
.about .stat-card:nth-child(2), .about2 .about2-card:nth-child(2) { transition-delay: 0.1s; }
.about .stat-card:nth-child(3), .about2 .about2-card:nth-child(3) { transition-delay: 0.2s; }

/* Highlighted text animation */
.highlighted-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.highlighted-text::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #fac000;
  opacity: 0;
  transform: scaleX(0) rotate(-1.5deg);
  transform-origin: left center;
  z-index: -1;
  border-radius: 50px;
}
.highlighted-text.animate::before {
  animation: fadeHighlight 1s ease-out forwards;
}
@keyframes fadeHighlight {
  0% {
    transform: scaleX(0) rotate(-1.5deg);
    opacity: 0;
  }
  100% {
    transform: scaleX(1) rotate(-1.5deg);
    opacity: 0.9;
  }
}

/* ======= Modal ======= */
.age-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.age-modal-content {
  background: #ffffff;
  color: #000000;
  padding: 24px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
}
.age-modal-content .btn-primary {
  display: inline-block;
  margin-top: 16px;
}
body.modal-open {
  overflow: hidden;
}

/* ======= Mobile Only Screen ======= */
.mobile-only {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #7944e4;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
}
.mobile-only h1 {
  font-size: 1.8rem;
}

/* ======= Footer ======= */
.hero.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero.footer h1 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}
.hero.footer p {
  font-size: 0.75rem;
  color: #ffffff;
  margin: 0;
}
.hero.footer .social {
  margin-top: 0px;
  display: flex;
  justify-content: center;
}
.hero.footer .social img {
  width: 24px;
  height: auto;
}

/* ======= Sign-in Page Overrides ======= */
body.signin-page .logo {
  text-align: center;
  margin: 32px 0 12px 0;
}
body.signin-page .logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
body.signin-page .signin-container {
  background: var(--text-light);
  border-radius: 12px;
  text-align: center;
  padding: 20px 16px 16px 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 340px;
  margin: 0 auto;
}
body.signin-page .signin-container h1 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
body.signin-page .form-group {
  gap: 10px;
  margin-bottom: 0;
}
body.signin-page .input-wrap {
  margin-bottom: 8px;
  padding: 1.5px;
}

/* ======= Misc ======= */
.btn-primary { text-decoration: none; }
.stats { margin-top: 0px; }
.logo img { transition: height 0.3s cubic-bezier(.4,1.5,.5,1); }

.btn-secondary, .btn-secondary:visited, .btn-secondary:hover, .btn-secondary:active {
  text-decoration: none;
}

