body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #b10000;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url('img/hero.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner h1 {
  color: white;
  font-size: 2rem;
}
.hero-inner p {
  color: white;
  font-size: 1.2rem;
}

/* Logo grid */
.grid-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.grid-item {
  background: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}

.grid-item:hover {
  transform: translateY(-4px);
}

.grid-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: #ddd;
  font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: #b10000;
    padding: 1rem;
  }

  .main-nav.show {
    display: flex;
  }
}
