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

:root {
  --black: #000000;
  --dark: #1a1a1a;
  --charcoal: #333333;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-800);
  transition: top 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--gray-300);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 4px;
}

.nav-links a:hover {
  color: var(--red-500);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gray-300);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--gray-800);
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 0.75rem;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: var(--black);
}

@media (max-width: 1024px) {
  .hero { height: 60vh; }
}

@media (max-width: 768px) {
  .hero { height: 50vh; }
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img.obj-contain {
  object-fit: contain;
}

.hero-img.obj-top {
  object-position: center top;
}

.hero-img.obj-top-30 {
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.5));
  pointer-events: none;
  z-index: 5;
}

.hero-preview {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.preview-box {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  padding: 0.75rem;
  backdrop-filter: blur(4px);
}

.preview-img {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .preview-img {
    width: 80px;
    height: 80px;
  }
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.dot.active {
  background: var(--red-500);
  transform: scale(1.25);
}

.hero-buttons {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-600);
  color: var(--white);
  border-color: var(--red-600);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-primary:hover {
  background: var(--red-700);
  border-color: var(--red-700);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.5);
  color: var(--red-500);
  border-color: var(--red-500);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-outline:hover {
  background: var(--red-500);
  color: var(--white);
}

.btn-platform {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--gray-400);
}

.btn-platform:hover {
  color: var(--red-500);
  border-color: var(--red-500);
  background: rgba(239, 68, 68, 0.1);
}

.btn-social {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--gray-600);
  padding: 0.5rem;
}

.btn-social:hover {
  color: var(--red-500);
  border-color: var(--red-500);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 1rem;
}

.section-alt {
  background: var(--gray-900);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-500);
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
}

/* ========== ABOUT ========== */
.about-content {
  max-width: 56rem;
  margin: 0 auto;
  color: var(--gray-400);
}

.about-content p {
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.125rem;
}

.about-highlight {
  color: var(--red-400);
  font-weight: 500;
}

/* ========== MUSIC ========== */
.music-content {
  max-width: 56rem;
  margin: 0 auto;
}

.youtube-link {
  display: block;
  text-decoration: none;
}

.youtube-box {
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.youtube-box:hover {
  border-color: var(--red-500);
}

.play-icon {
  color: var(--red-500);
  margin-bottom: 1rem;
}

.yt-text {
  color: var(--gray-400);
}

.yt-subtext {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.platforms {
  margin-top: 2rem;
  text-align: center;
}

.platforms h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========== CARDS ========== */
.card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 0.75rem;
  overflow: hidden;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ========== EVENTS ========== */
.events-list {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.event-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--red-600);
  color: var(--white);
}

.event-meta {
  display: flex;
  align-items: center;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.event-meta svg {
  flex-shrink: 0;
}

.event-description {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.event-description.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expand-btn {
  background: none;
  border: none;
  color: var(--red-500);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.expand-btn:hover {
  color: var(--red-400);
}

.event-content {
  display: flex;
  gap: 1rem;
}

.event-poster {
  width: 80px;
  min-width: 80px;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  flex-shrink: 0;
}

.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gray-800);
}

.event-poster-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-info {
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .event-poster {
    width: 100px;
    min-width: 100px;
  }
}

/* ========== NEWS ========== */
.news-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.news-card {
  background: var(--black);
  border: 1px solid var(--gray-700);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.news-date {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.news-content {
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.7;
}

.news-content.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-500);
}

.form-group textarea {
  resize: vertical;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-icon {
  color: var(--red-500);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.info-item a {
  color: var(--gray-300);
  transition: color 0.2s;
}

.info-item a:hover {
  color: var(--red-400);
}

.info-item span {
  color: var(--gray-300);
}

.social-section h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 2rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  color: var(--gray-400);
  transition: color 0.2s;
  padding: 0.25rem;
}

.footer-socials a:hover {
  color: var(--red-500);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-brand {
  color: var(--red-500);
  font-weight: 700;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
  transform: scale(1.03);
  border-color: var(--red-500);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: var(--black);
  border-radius: 0.75rem 0.75rem 0 0;
}

.gallery-card-info {
  padding: 0.75rem 1rem;
}

.gallery-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.gallery-card-count {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ========== ALBUM LIGHTBOX ========== */
.album-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
}

.album-lightbox.active {
  display: block;
}

.album-lightbox-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.album-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 110;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.album-lightbox-close:hover {
  border-color: var(--red-500);
  color: var(--red-500);
}

.album-lightbox-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red-500);
  margin-bottom: 0.5rem;
  padding-right: 3.5rem;
}

.album-lightbox-desc {
  color: var(--gray-400);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.album-lightbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .album-lightbox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .album-lightbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.album-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-700);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.album-thumb:hover {
  border-color: var(--red-500);
  transform: scale(1.03);
}

/* ========== PHOTO LIGHTBOX ========== */
.photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.97);
  align-items: center;
  justify-content: center;
}

.photo-lightbox.active {
  display: flex;
}

.photo-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.photo-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.photo-lightbox-close:hover {
  border-color: var(--red-500);
  color: var(--red-500);
}

.photo-lightbox-prev,
.photo-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.photo-lightbox-prev { left: 1rem; }
.photo-lightbox-next { right: 1rem; }

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
  border-color: var(--red-500);
  color: var(--red-500);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-500);
}

/* Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #b30000;
  color: #fff;
  font-weight: 600;
  z-index: 999;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  transition: transform 0.3s ease;
}

.announcement-bar.hidden {
  transform: translateY(-100%);
}

/* Body padding while announcement is visible */
body.has-announcement {
  padding-top: 45px; /* same as announcement bar height */
}

.announcement-track {
  display: flex;
  white-space: nowrap;
}

.announcement-track a {
  color: #fff;
  text-decoration: none;
  padding-right: 100px;
  flex-shrink: 0;
}

.announcement-track a:hover {
  text-decoration: underline;
}

.announcement-close {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Gig Promo Panel */
.gig-promo {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  z-index: 20;
}

.gig-poster {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.gig-poster:hover {
  transform: scale(1.05);
}

/* Hide on tablets & mobile */
@media (max-width: 992px) {
  .gig-promo {
    display: none;
  }
}