:root {
  --brand: #080000;      /* Dark red branding color */
  --brand-dark: #8B1A1A;
  --text: #fff;
  --bg: #f5f5f5;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: #333;
}

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

header {
  color: var(--text);
  padding: 15px 0;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: var(--text);
  padding: 12px 18px;
  margin: 5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  background: url('assets/workshop-bg.jpg') center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f0f0f0;
}

.section h2 {
  text-align: center;
  color: var(--brand);
  margin-bottom: 20px;
}

.section p, .section ul, .section blockquote {
  max-width: 800px;
  margin: 10px auto;
  text-align: center;
  font-size: 1.1em;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin: 8px 0;
}

blockquote {
  border-left: 4px solid var(--brand);
  padding: 10px 20px;
  margin: 20px auto;
  background: #fff;
  font-style: italic;
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
.footer-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: bold;
}
.footer-link:hover {
  text-decoration: underline;
}


/* Mobile optimization */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .nav {
    justify-content: center;
  }
  .hero {
    height: 350px;
  }
  .hero h2 {
    font-size: 1.8em;
  }
  .btn {
    padding: 10px 14px;
  }
}
