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

@font-face {
  font-family: 'DejaVuSans';
  src: url('DejaVuSans.ttf');
}

body {
  font-family: 'DejaVuSans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 2rem;
}

.logo {
  background-color: #ffffffcf;
  color: black;
  border-radius: 3px;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.logo h1 {
  font-size: 3rem;
  cursor: default;
}

.logo img {
  max-width: 15rem;
  margin-top: -1rem;
  filter: invert(100%);
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: white;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.signup {
  padding: 3rem 2rem;
  text-align: center;
  background: #f7f7f7;
}

.signup form {
  margin: 1rem 0;
}

input[type="email"] {
  padding: 0.75rem;
  width: 80%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.purchase {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

.purchase ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.purchase li {
  margin: 1.5rem 0;
}

.store-info a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.store-info a:hover {
  text-decoration: underline;
}

.about-store {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.25rem;
}

.store-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  max-width: 600px;
  margin: 1rem auto;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.store-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.store-card strong {
  font-size: 1.2rem;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}

.store-card span {
  font-size: 0.95rem;
  color: #555;
}


.features {
  padding: 3rem 2rem;
  text-align: center;
  background: #f0f0f0;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  max-width: 250px;
  text-align: center;
}

.feature-item img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  color: #999;
  background: #111;
  line-height: 1.4;
}

footer p {
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .overlay h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .feature-list {
    flex-direction: column;
    align-items: center;
  }
}
