/* -----------------------------
   RESET / BASE
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -----------------------------
   LAYOUT HELPERS
------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 1.25rem;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 0.06em;
}


h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

/* -----------------------------
   BRAND COLORS
------------------------------ */
:root {
  --black: #000000;
  --dark-gray: #000000;
  --mid-gray: #000000;

  --smash-red: #c62828;
  --wreck-orange: #e67e22;

  --text-light: #f5f5f5;
  --text-muted: #bdbdbd;
}

/* -----------------------------
   HEADER / HERO
------------------------------ */
.site-header {
  background-color: black;
  text-align: center;
  border-bottom: 3px solid var(--smash-red);
}

.site-header .logo {
  max-width: 220px;
  margin: 0 auto 1rem;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.intro {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* -----------------------------
   BUTTONS
------------------------------ */
.btn {
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--smash-red);
  color: #fff;
}

.btn-primary:hover {
  background-color: #a91f1f;
}

.btn-secondary {
  background-color: var(--wreck-orange);
  color: #000;
}

.btn-secondary:hover {
  background-color: #cf6d16;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1.1rem;
}

/* -----------------------------
   SMASH HOUSES
------------------------------ */
.smash-houses {
  background-color: #000;
}

.smash-card {
  background-color: #000;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--wreck-orange);
}

.smash-card:nth-of-type(1) {
  border-left-color: var(--smash-red);
}

.location {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* -----------------------------
   EXPERIENCES
------------------------------ */
.experiences {
  background-color: #101010;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #222;
  font-weight: 700;
  text-transform: uppercase;
}

/* -----------------------------
   NOT A FRANCHISE
------------------------------ */
.not-franchise {
  background-color: #000;
  border-top: 3px solid var(--wreck-orange);
  border-bottom: 3px solid var(--wreck-orange);
}

.not-franchise p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* -----------------------------
   SISTER BUSINESSES
------------------------------ */
.sister-businesses {
  background-color: #000;
}

.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-list li {
  padding: 0.6rem 0;
}

.business-list a {
  color: var(--text-muted);
  font-weight: 700;
}

.business-list a:hover {
  color: var(--wreck-orange);
}

/* -----------------------------
   FINAL CTA
------------------------------ */
.final-cta {
  background: radial-gradient(
    circle at center,
    #1c1c1c 0%,
    #0b0b0b 100%
  );
  text-align: center;
}

/* -----------------------------
   FOOTER
------------------------------ */
.site-footer {
  background-color: #000;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* =============================
   TABLET BREAKPOINT (768px+)
============================= */
@media (min-width: 768px) {

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    text-align: left;
  }

  .site-header .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .site-header .logo {
    margin: 0;
  }

  .cta-group {
    display: flex;
    gap: 1rem;
  }

  .btn {
    width: auto;
    margin-bottom: 0;
  }

  /* Smash Houses side-by-side */
  .smash-houses .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .smash-houses h2 {
    grid-column: 1 / -1;
  }

  .smash-card {
    margin-bottom: 0;
  }

  /* Experiences list in columns */
  .experience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .experience-list li {
    border-bottom: none;
    background-color: #1a1a1a;
    padding: 1rem;
  }

  /* Sister businesses inline */
  .business-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

}
/* =============================
   DESKTOP BREAKPOINT (1024px+)
============================= */
@media (min-width: 1024px) {

  .container {
    padding: 2.5rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .intro {
    font-size: 1.05rem;
    max-width: 40rem;
  }

  /* Hero refinement */
  .site-header {
    padding: 0rem 0;
  }

  /* Smash Houses get more weight */
  .smash-card {
    padding: 2rem;
    min-height: 100%;
  }

  .smash-card h3 {
    font-size: 1.6rem;
  }

  /* Experiences = 3 columns */
  .experience-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Not a franchise emphasis */
  .not-franchise h2 {
    font-size: 2.2rem;
  }

  .not-franchise p {
    max-width: 48rem;
    font-size: 1.05rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 4rem 0;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

}

/* -----------------------------
   HEADER / NAV
------------------------------ */
.site-header.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: black;
  border-bottom: 2px solid var(--smash-red);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand img {
  max-height: 135px;
}

/* -----------------------------
   MOBILE MENU
------------------------------ */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background-color: #fff;
  display: block;
}

/* Hide menu by default */
.nav-menu {
  position: fixed;
  inset: 0;
  background-color: #000;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.nav-menu.open {
  transform: translateX(0);
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 1.5rem;
}

.nav-menu a {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta {
  margin-top: auto;
}

/* -----------------------------
   DESKTOP NAV
------------------------------ */
@media (min-width: 768px) {

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2rem;
    background: none;
  }

  .nav-menu ul {
    display: flex;
    gap: 2rem;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    margin-top: 0;
  }

}
.btn {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active {
  transform: translateY(2px) scale(0.98);
}
.btn-primary {
  box-shadow: 0 4px 0 #7a1414;
}

.btn-primary:active {
  box-shadow: 0 1px 0 #7a1414;
}

@keyframes smash-hit {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.smash-card:hover,
.smash-card:focus-within {
  animation: smash-hit 0.25s ease;
}

.section {
  opacity: 0;
  transform: translateY(16px);
  animation: section-in 0.4s ease forwards;
}

@keyframes section-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--wreck-orange);
  transition: width 0.15s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.smash-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  pointer-events: none;
}

.smash-card:hover::after {
  opacity: 1;
}

.party-item {
    margin-top: 10%;
}