/*
  419 Sports Cards website styles

  This stylesheet defines a clean, modern look with a bold colour scheme inspired
  by sports team colours (red, white and blue). The Bebas Neue heading font
  evokes the block lettering seen in card logos, while Roboto provides a clear
  body font. Feel free to customise colours or fonts to match your eBay store
  precisely.
*/

/* Reset some default margins and paddings */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Utility container for consistent width */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header styling */
header {
  /* Dark navy blue pulled from the original 419Consign logo */
  background-color: #013a64;
  color: #fff;
  padding: 20px 0;
  border-bottom: 5px solid #cf1f2a; /* red accent bar under the header */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo image */
.logo {
  height: 60px;
  margin-right: 15px;
}

header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.8;
}

/* Hero section */
#hero {
  background-color: #0055A4; /* rich blue to complement the red header */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.hero-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Section styling */
section {
  padding: 60px 0;
}

section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.section-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  color: #d32e2e;
}

.section-content p {
  margin-bottom: 20px;
}

.consign-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.consign-steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.consign-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #0055A4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.primary-btn {
  background-color: #d32e2e;
  color: #fff;
}

.primary-btn:hover {
  background-color: #b52222;
}

.secondary-btn {
  background-color: #0055A4;
  color: #fff;
}

.secondary-btn:hover {
  background-color: #003b73;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}