:root {
  --sm-black: #111111;
  --sm-deep: #050505;
  --sm-charcoal: #171717;
  --sm-cream: #FFF8E1;
  --sm-muted: #B7AFA3;
  --sm-red: #D32F2F;
  --sm-gold: #FFCA28;
  --sm-line: rgba(255, 248, 225, 0.16);
  --sm-glass: rgba(255, 255, 255, 0.065);
  --sm-max: 1320px;
}

body {
  background: var(--sm-deep);
  color: var(--sm-cream);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* Sections */
.smashed-section {
  background: var(--sm-deep);
  color: var(--sm-cream);
  position: relative;
  overflow: hidden;
  padding: 8rem 0; /* More black space */
}

.smashed-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sm-line);
}


.smashed-wrap {
  width: min(var(--sm-max), calc(100% - 32px));
  margin-inline: auto;
}

/* Typography */
.smashed-headline {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--sm-cream);
  margin-bottom: 1.5rem;
}

.smashed-headline-xl {
    font-size: clamp(4rem, 12vw, 10rem);
}

.smashed-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--sm-cream);
  text-stroke: 2px var(--sm-cream);
}

/* Kicker */
.smashed-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sm-muted);
  border: 1px solid var(--sm-line);
  background: var(--sm-glass);
  padding: 0.5rem 0.75rem;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.smashed-kicker::before {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--sm-gold);
  box-shadow: 0 0 18px var(--sm-gold);
}

/* Buttons */
.smashed-button .elementor-button,
.elementor-button.smashed-button {
  background: var(--sm-gold) !important;
  color: var(--sm-black) !important;
  border: 1px solid var(--sm-gold) !important;
  box-shadow: 6px 6px 0 var(--sm-red) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.05em !important;
  padding: 1rem 2.5rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}

.smashed-button .elementor-button:hover,
.elementor-button.smashed-button:hover {
  transform: translate(4px, 4px) !important;
  box-shadow: 2px 2px 0 var(--sm-red) !important;
}

/* Cards (Menu, Locations, Merch) */
.smashed-card, .smashed-menu-card, .smashed-location-card, .smashed-drop-card {
  border: 1px solid var(--sm-line);
  background: var(--sm-charcoal);
  padding: 2.5rem;
  position: relative;
  transition: transform 300ms ease, border-color 300ms ease;
}

.smashed-card:hover, .smashed-menu-card:hover, .smashed-location-card:hover, .smashed-drop-card:hover {
    border-color: var(--sm-cream);
    transform: translateY(-5px);
}

.smashed-menu-card h3, .smashed-drop-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.smashed-drop-card .price {
    color: var(--sm-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Marquee */
.smashed-marquee {
  background: var(--sm-gold);
  color: var(--sm-black);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--sm-black);
  position: relative;
  z-index: 10;
}

.smashed-marquee-track {
  display: inline-flex;
  min-width: 100%;
  animation: smashedMarquee 20s linear infinite;
}
.smashed-marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 2rem;
}

@keyframes smashedMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Badges */
.smashed-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--sm-red);
    color: var(--sm-cream);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    transform: rotate(15deg);
    box-shadow: 4px 4px 0 var(--sm-gold);
    z-index: 5;
    border: 2px solid var(--sm-deep);
}

/* Hero Specific */
.smashed-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.smashed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(211,47,47,0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.smashed-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,202,40,0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.smashed-hero-content {
    position: relative;
    z-index: 2;
}

/* Reveal */
.smashed-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.smashed-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
    .smashed-section { padding: 4rem 0; }
    .smashed-headline-xl { font-size: 4rem; }
    .smashed-card, .smashed-menu-card, .smashed-location-card { padding: 1.5rem; }
    .smashed-button .elementor-button { padding: 0.8rem 1.5rem !important; font-size: 1.2rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
