:root {
  --red: #a31717;
  --gray: #555;
  --light: #fafafa;
}

/* ===== HEADER COMUN ===== */

header h1, .site-header h1 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.site-header {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 20px 0;       /* +4px pentru simetrie perfectă */
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-header h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.site-header .nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.site-header .nav li {
  display: inline-block;
}

.site-header .nav a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.site-header .nav a:hover,
.site-header .nav a.active {
  background: white;
  color: var(--red);
}

/* ===== FOOTER COMUN ===== */
.site-footer {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  margin-top: 60px;
}

.site-footer p {
  margin: 6px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .site-header .nav {
    flex-wrap: wrap;
    gap: 6px;
  }
  .site-header h1 {
    font-size: 22px;
  }
}
