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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* nav */
.nav {
  background: #3b0f0f;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-right: 1.5rem;
  font-size: 0.9rem;
}

.nav a:last-child {
  margin-right: 0;
}

.logo {
  width: 40px;
}

/* hero */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 15%;
  left: 8%;
  max-width: 420px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  font-size: 0.9rem;
}

/* sections */
.section {
  padding: 3rem 8%;
}

.section h2 {
  margin-bottom: 0.5rem;
}

.section-text {
  max-width: 500px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.light {
  background: #ffffff;
}

.red {
  background: #9d1c1c;
  color: white;
}

/* IMAGES */
.image-row img {
  width: 300px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
}

.image-grid img {
  width: 100%;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}

.image-column img {
  width: 100%;
}

/* footer */
.footer {
  height: 60px;
  background: linear-gradient(#3b0f0f, #1a0000);
}
