/* style.css – SuperRare Homepage Styles (Balanced Tropical Theme) */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #fdfcff 0%, #e6f7ff 100%);
  color: #2d2d2d;
  line-height: 1.6;
  text-align: center;
}

header.hero {
  background: linear-gradient(135deg, #00c3ff 0%, #6c5ce7 100%);
  color: #fff;
  padding: 4rem 1rem 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.tagline {
  margin-bottom: 1.5rem;
}

.main-tagline {
  font-size: 1.5rem;
  font-weight: 600;
}

.sub-tagline {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  color: #e0faff;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero img.flyer {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.vendor-signup {
  text-align: center;
  margin: 2rem 0;
}

.button {
  display: inline-block;
  background: linear-gradient(90deg, #00b4db, #8e2de2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.button:hover {
  background: linear-gradient(90deg, #0077ff, #00c3b2);
  transform: translateY(-2px);
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0077ff;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.6);
}

section p {
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 700px;
}

a {
  color: #6c5ce7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, #1e1e2f, #2a2a2a);
  color: #ccc;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.4);
  text-align: center;
}

footer a {
  color: #f9c37b;
  font-weight: bold;
  text-decoration: underline;
}

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

  .main-tagline {
    font-size: 1.2rem;
  }

  .sub-tagline {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }
}
/* Center all text inside key sections */
section.about,
section.social,
footer {
  text-align: center;
}

/* Center <p> and <a> tags inside those sections */
section p,
section a,
footer p,
footer a {
  display: inline-block;
  text-align: center;
  margin: 0.5rem auto;
}

/* Center-align h2 titles just to be safe */
section h2,
footer h2 {
  text-align: center;
}
