/* 
  Inspired by the dark, moody, and high-contrast aesthetic of hip-hop culture.
  Fonts: 'Anton' for bold, impactful headlines and 'Montserrat' for clean, readable body text.
*/

:root {
  --primary-color: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  --secondary-color: #f4f4f4;
  --accent-color: linear-gradient(45deg, #D4AF37, #E6C673);
  --accent-color-static: #D4AF37; /* A richer, more authentic gold for text and borders */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* Fix full-bleed sections creating horizontal overflow on small screens */
@media (max-width: 767px) {
  .events-section,
  .clothing-section,
  .artists-section {
    width: 100% !important;
    margin-left: 0 !important;
  }

}

body {
  font-family: var(--font-body);
  background: var(--primary-color);
  color: var(--secondary-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

a {
  color: var(--accent-color-static);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------------- Performance Optimizations ---------------- */
/* Hint browsers to prepare transforms/opacity on frequently animated elements */
.fade-in-section,
.clothing-card,
nav,
header {
  will-change: transform, opacity;
}

/* Respect user reduced-motion preference & prevent jank on low-power devices */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



main {
  padding: 2rem;
  text-align: center;
}

/* Enhanced animation for sections fading and sliding in on scroll */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.7s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.rugged-headline {
  font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
  font-size: 4rem;
  color: #D4AF37;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 1.1;
  transform: rotate(-2deg) skewX(-5deg);
}
