/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 4px solid #c62828;
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-lockup img {
  height: 60px;
}

.logo-text h1 {
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

.logo-text p {
  font-size: 14px;
  color: #555;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  transition: 0.2s ease;
}

nav ul li a:hover {
  color: #c62828;
}

/* HERO SECTION */
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #c62828;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #a61f1f;
}

/* SECTIONS */
section {
  padding: 60px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

h2.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

p.section-text {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

/* GRID LAYOUT */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #555;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }
}
