:root {
  --bg: #111111;
  --text: #ffffff;
  --muted: #b3b3b3;
  --accent: #ff3c1f;
  --accent-dark: #cc2f18;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* NAV */

.nav {
  padding: 1.5rem 0;
  border-bottom: 2px solid #1f1f1f;
}

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

.logo {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* HERO */

.hero {
  padding: 10rem 0 8rem 0;
  text-align: center;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.3rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}


/* SECTION */

.section {
  padding: 6rem 0;
}

.section h2 {
  font-family: "Anton", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section p {
  font-size: 1.1rem;
  max-width: 700px;
}

/* ACCENT BLOCK */

.accent-block {
  background: var(--accent);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.accent-block h2 {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accent-block p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER */

.footer {
  padding: 4rem 0;
  border-top: 2px solid #1f1f1f;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* HERO IMAGE */

.hero-image {
  background: url("/images/hero.jpg") center/cover no-repeat;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 10rem 0 8rem 0;
}

.hero-image h1 {
  font-size: 6rem;
}

.hero-image p {
  font-size: 1.4rem;
}

/* IMAGE GRID */

.image-grid {
  padding: 6rem 0;
  background: #0c0c0c;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.page-content {
  margin-top: 2rem;
  font-size: 1.1rem;
  max-width: 750px;
}

.page-content h2 {
  font-family: "Anton", sans-serif;
  margin-top: 3rem;
  font-size: 2rem;
}