/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Titillium Web', sans-serif;
  color: #eee;
  background: #111;
  line-height: 1.6;
}
a { color: #ff6600; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Navigation */
.main-nav {
  background: #222;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.main-nav a {
  margin: 0 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
}
.hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.site-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
}
.section.dark { background: #1a1a1a; }
.section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery img {
  width: 100%;
  border: 4px solid #222;
}

/* Footer */
.footer {
  background: #222;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .site-logo { max-width: 160px; }
  .hero p { font-size: 1.2rem; }
  .main-nav a { margin: 0 1rem; font-size: 1rem; }
}
