/* Blackforge Barbers - Style */

:root {
  --bg: #0f0f0f;
  --fg: #eeeeee;
  --accent: #a30e0e;
  --iron: #1b1b1b;
  --text-soft: #cccccc;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--iron);
  padding: 1rem 0;
  border-bottom: 2px solid var(--accent);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
}

/* Hero */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-text {
  color: var(--fg);
  max-width: 600px;
}

.hero-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-soft);
}

.btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #7d0000;
}

/* Intro & CTA */
.intro,
.cta {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--iron);
}

.intro h3,
.cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

footer {
  background: #000;
  text-align: center;
  padding: 2rem 1rem;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}
