/* styles.css */

/* 1. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base & Background */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #1f1f1f; /* dark text */
  overflow-x: hidden; /* allow vertical scroll */
  background: linear-gradient(135deg, #ebedee 0%, #a6c6ff 100%);
}

/* 3. Centered Content */
.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;       /* can grow on short/mobile screens */
  padding: 0 20px 4rem;    /* bottom padding reserves space for footer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* optional wrapper—keeps text centered */
.wrapper {
  text-align: center;
}

/* 4. Logo */
.logo {
  max-width: 160px;
  margin-bottom: 2.5rem;
}

/* 5. Main Heading */
.heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  color: #1f1f1f;
}

/* 6. Highlighted “ReGet” */
.highlight {
  display: inline-block;
  background-color: #0066ff;
  color: #ffffff;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.75rem;
  margin-left: 0.3rem;
}

/* 7. Subheading */
.subheading {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.75rem 0 2.5rem;
  color: #3c3c3c;
}

/* 8. Store Button */
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-image {
  max-width: 160px;
}

/* 9. Footer */
.footer {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 100%;
  text-align: center;      /* center the links */
  font-size: 0.9rem;
  color: #1f1f1f;           /* dark, matching the rest */
    /* …existing rules… */
  z-index: 10; /* bring it above .content (which is at z-index:1) */
}


.footer a {
  color: #1f1f1f;
  text-decoration: none;
  margin: 0 8px;
}
.footer a:hover {
  text-decoration: underline;
  
}

/* 10. Responsive Tweaks */
@media (max-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }
  .subheading {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .logo {
    max-width: 130px;
  }
  .store-image {
    max-width: 140px;
  }
}
