/* ===== New Era Fadez — styles.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --charcoal: #141414;
  --charcoal-2: #1d1d1d;
  --charcoal-3: #242424;
  --off-white: #F5F1EA;
  --red: #C8102E;
  --gold: #D4A24E;
  --muted: #b8b2a8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.6;
}

h1, h2, h3, .nav__logo, .btn {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--off-white);
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: var(--gold); color: var(--charcoal); }
.btn--accent { background: var(--red); border-color: var(--red); color: var(--off-white); }
.btn--accent:hover { background: #a30d25; border-color: #a30d25; color: var(--off-white); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.95);
  border-bottom: 1px solid rgba(212, 162, 78, 0.35);
  backdrop-filter: blur(6px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.nav__logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--off-white);
}
.nav__logo span { color: var(--red); }
.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(20,20,20,0.92), rgba(20,20,20,0.75)),
    repeating-linear-gradient(45deg, var(--charcoal-2) 0 12px, var(--charcoal) 12px 24px);
  border-bottom: 3px solid var(--red);
}
.hero__inner { padding: 5rem 0; }
.hero__eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.85rem; }
.hero__title {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
}
.hero__title em { color: var(--red); font-style: normal; }
.hero__tagline { max-width: 620px; margin: 0 auto 2rem; color: var(--muted); font-size: 1.1rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Sections & dividers ===== */
.section { padding: 5rem 0; position: relative; }
.section--alt { background: var(--charcoal-2); }
.section--divider-top::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 56px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section__title span { color: var(--gold); }
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about__stat {
  border: 1px solid var(--gold);
  padding: 1.5rem;
  text-align: center;
  background: var(--charcoal-3);
}
.about__stat strong { display: block; font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--red); }
.about__stat p { color: var(--muted); font-size: 0.9rem; }

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.services__card {
  border: 1px solid var(--gold);
  background: var(--charcoal-3);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.services__card--visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease; }
.services__card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(0,0,0,0.45); }
.services__icon { font-size: 2.4rem; display: block; margin-bottom: 0.75rem; }
.services__card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.services__card p { color: var(--muted); font-size: 0.92rem; }
.services__price { display: inline-block; margin-top: 0.75rem; color: var(--gold); font-weight: 600; }

/* ===== Why ===== */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why__item {
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
  background: var(--charcoal-3);
}
.why__item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.why__item p { color: var(--muted); font-size: 0.92rem; }

/* ===== Hours ===== */
.hours__table {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  background: var(--charcoal-3);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(212, 162, 78, 0.25);
}
.hours__row:last-child { border-bottom: none; }
.hours__row--today { background: rgba(200, 16, 46, 0.15); color: var(--off-white); }
.hours__row--closed span:last-child { color: var(--red); font-weight: 600; }

/* ===== Contact ===== */
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.contact__block {
  border: 1px solid var(--gold);
  background: var(--charcoal-3);
  padding: 2rem 1.25rem;
}
.contact__block h3 { color: var(--gold); margin-bottom: 0.5rem; }
.contact__block p, .contact__block a { color: var(--off-white); text-decoration: none; font-size: 0.95rem; }
.contact__block a:hover { color: var(--gold); }
.contact__cta { text-align: center; margin-top: 2.5rem; }

/* ===== Footer ===== */
.footer {
  background: #0e0e0e;
  border-top: 1px solid rgba(212, 162, 78, 0.35);
  padding: 2.5rem 0;
  text-align: center;
}
.footer__logo { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }
.footer__logo span { color: var(--red); }
.footer__social { display: flex; justify-content: center; gap: 1.25rem; margin: 1rem 0; }
.footer__social a { color: var(--gold); text-decoration: none; font-size: 1.1rem; transition: color 0.2s ease; }
.footer__social a:hover { color: var(--red); }
.footer__copy { color: var(--muted); font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--gold);
  }
  .nav__links--open { display: flex; }
  .nav__links li { border-top: 1px solid rgba(212,162,78,0.2); }
  .nav__links a { display: block; padding: 0.9rem 1.5rem; }
  .services__grid, .why__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}