/* styles.css - RS Bike Paint Landing Page */

body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #f0f0f0;
}

header, footer {
  background-color: #000;
  padding: 2rem;
  text-align: center;
}

header h1 {
  color: #79ff4d;
  font-size: 2.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

h2 {
  color: #79ff4d;
  font-size: 2rem;
  margin-top: 0;
  text-transform: uppercase;
}

p, li {
  font-size: 1.1rem;
  color: #e0e0e0;
}

ul {
  padding-left: 1.5rem;
  list-style: disc outside;
  margin-top: 1rem;
}

ul li::marker {
  color: #79ff4d;
}

img {
  border-radius: 8px;
  margin: 1rem 0;
  max-width: 100%;
  height: auto;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #79ff4d;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #66cc3a;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

footer a {
  color: #79ff4d;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

strong, a {
  color: #79ff4d;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}
