/* css/style.css - South Jetty Beats Global Styles (Neon Purple Edition) */
:root {
  --primary: #c300ff;     /* Neon purple – electric, vibrant, laser-ready */
  --accent: #ff00aa;      /* Hot pink for secondary pops (or change to #a020f0 if you want deeper purple) */
  --bg: #0a0a0a;
  --text: #e0e0e0;
}

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

h1 {
  font-size: 2.8rem;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-shadow: 0 0 10px var(--accent), 0 0 20px var(--primary);
}

/* Future sections */
.event-tease {
  margin: 3rem 0;
  padding: 2rem;
  border: 1px solid var(--primary);
  border-radius: 12px;
  background: rgba(195, 0, 255, 0.08);  /* subtle purple tint */
}

/* Mobile responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
}

    .banner {
      background: linear-gradient(135deg, #0a0a0a, #1a0033);
      border-bottom: 2px solid #c300ff;
      padding: 1.5rem 1rem;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(195, 0, 255, 0.3);
    }
    .banner-content h1 {
      font-size: 2.5rem;
      margin: 0;
      color: #c300ff;
      text-shadow: 0 0 15px #c300ff;
    }
    .banner-content p {
      font-size: 1.1rem;
      margin: 0.5rem 0 0;
      color: #e0e0e0;
    }

    .main-nav {
      background: #0a0a0a;
      border-bottom: 1px solid rgba(195, 0, 255, 0.3);
      padding: 1rem 0;
      position: sticky;
      top: 100px; /* Adjust if banner height changes */
      z-index: 999;
    }
    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .main-nav li a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }
    .main-nav li a:hover {
      color: #c300ff;
      text-shadow: 0 0 10px #c300ff;
      background: rgba(195, 0, 255, 0.1);
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .banner-content h1 { font-size: 2rem; }
      .main-nav ul { gap: 1rem; }
      .main-nav li a { font-size: 1rem; padding: 0.5rem; }
    }
    .carousel-container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
      overflow: hidden;
    }
    .carousel {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      padding-bottom: 1rem;
      scrollbar-width: thin;
      scrollbar-color: #c300ff #1a0033;
      height: 200px;
    }
    .carousel::-webkit-scrollbar {
      height: 8px;
    }
    .carousel::-webkit-scrollbar-track {
      background: #1a0033;
    }
    .carousel::-webkit-scrollbar-thumb {
      background: #c300ff;
      border-radius: 4px;
    }
    .carousel-item {
      flex: 0 0 auto;
      width: 300px;
      height: 200px;
      background: #0a0a0a;
      border: 2px solid #c300ff;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 15px rgba(195, 0, 255, 0.3);
    }
    .carousel-item img,
    .carousel-item video {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .placeholder .blank-icon {
      width: 80px;
      height: 80px;
      background: rgba(195, 0, 255, 0.2);
      border: 3px dashed #c300ff;
      border-radius: 12px;
    }
