/*
Theme Name: Solid Red
Author: Solid Red Consultancy
Version: 1.1
*/

:root {
  --red: #e10600;
  --white: #ffffff;
  --max-width: 1200px;
}

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

html, body {
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.logo {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.logo img {
  width: 160px;
  height: auto;
}

.logo-text span:first-child {
  font-size: 3rem;
  font-weight: 800;
}

.logo-text span:last-child {
  font-size: 1.5rem;
  letter-spacing: 4px;
}

nav {
  margin-top: 2rem;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 2px;
}

.cases {
  margin-top: 5rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-item {
  border: 2px solid var(--white);
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

footer {
  margin-top: 6rem;
  text-align: center;
  padding-bottom: 3rem;
  font-size: 0.9rem;
}
