/* Wild West Peptides - Frontier Design */
:root {
  --tan: #C19A6B;
  --brown: #964B00;
  --red: #CE2029;
  --cream: #FCF5E5;
  --dark-brown: #3E2723;
}

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

body {
  font-family: 'Roboto Slab', serif;
  background: var(--cream);
  color: var(--dark-brown);
  line-height: 1.6;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

header {
  background: linear-gradient(to bottom, var(--brown) 0%, #6B3410 100%);
  color: var(--cream);
  padding: 1.5rem 0;
  border-bottom: 4px solid var(--red);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
}

nav ul { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
nav a {
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: all 0.3s;
}

nav a:hover {
  border-color: var(--red);
  color: var(--red);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 2rem 0;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--brown);
  text-transform: uppercase;
  margin: 2rem 0 1rem;
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.5rem;
}

/* COMPARISON TABLES - The core of this site! */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

thead {
  background: linear-gradient(to right, var(--brown) 0%, var(--red) 100%);
  color: white;
}

thead th {
  padding: 1rem;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

tbody tr {
  border-bottom: 1px solid #DDD;
}

tbody tr:nth-child(even) {
  background: #FAF7F2;
}

tbody tr:hover {
  background: rgba(206,32,41,0.05);
}

tbody td {
  padding: 1rem;
  font-size: 1rem;
}

/* Rating stars */
.rating {
  color: var(--red);
  font-size: 1.25rem;
}

/* Quick comparison boxes */
.comparison-box {
  background: white;
  border: 3px solid var(--brown);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
  background: var(--dark-brown);
  color: var(--cream);
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 4px solid var(--red);
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Slab:wght@400;600;700&display=swap');
