/* MoneyGo Landing Page Styles */

:root {
  scroll-behavior: smooth;
  --primary: #ff147f;
  --secondary: #b0b0b0;
  --bg: #0f1d36;
  --text: #ffffff;
  --q-color-primary: #ff147f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto",Arial,Helvetica,sans-serif;
}

/* Pink call-to-action button */

.btn-pink {
  background: var(--primary);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

.btn-pink:hover {
  opacity: .9;
}

/* Animations */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeUp .8s cubic-bezier(.25,.8,.25,1) forwards;
}

/* Gallery */

.gallery figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.gallery figcaption {
  color: var(--secondary);
  font-size: .9rem;
  text-align: center;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 400px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .6s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.gallery img:hover {
  transform: scale(1.08);
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

header {
  background: var(--bg);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Mobile adjustments */

@media (max-width:600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
}

@media (max-width:600px) {
  header nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: .5rem;
  }
}

@media (max-width:600px) {
  header nav a {
    margin: 0 .75rem .5rem 0;
  }
}

header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

header nav a:hover {
  color: var(--primary);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  background: linear-gradient(135deg,#0f1d36 0%,#162a4f 100%);
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

.btn:hover {
  opacity: .9;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #122243;
  color: #fff;
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition: transform .4s,box-shadow .4s,background .4s;
}

.feature-card:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg,rgba(255,20,127,.8),rgba(0,221,255,.4));
  mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  background: rgba(18,34,67,.9);
}

.feature-card h3 {
  margin-top: 1rem;
  margin-bottom: .5rem;
  color: var(--primary);
}

.screenshot {
  max-width: 300px;
  margin: 2rem auto;
  display: block;
}

/* Material-like form elements */

input.q-input, textarea.q-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--secondary);
  color: var(--text);
  padding: .75rem .25rem;
  font-size: 1rem;
  transition: border-color .3s;
}

input.q-input:focus, textarea.q-input:focus {
  outline: none;
  border-bottom: 2px solid var(--primary);
}

input.q-input::placeholder, textarea.q-input::placeholder {
  color: var(--secondary);
}

/* Filled look override */

input.q-input, textarea.q-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
}

input.q-input:focus, textarea.q-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255,20,127,.35);
}

footer {
  background: #0b162c;
  padding: 2rem;
  text-align: center;
  font-size: .875rem;
  color: var(--secondary);
}

