/* =========================================================================
   DJ OMAR — Stylesheet
   Fonts: Orbitron (display / logo), Rajdhani (labels), system sans (body)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root {
  --black: #000000;
  --gray-950: #0a0a0a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-800-50: rgba(31, 41, 55, 0.5);
  --gray-800-30: rgba(31, 41, 55, 0.3);
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;

  --green-600: #16a34a;
  --green-700: #15803d;
  --green-400: #4ade80;
  --red-600: #dc2626;
  --red-400: #f87171;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --font-display: 'Orbitron', sans-serif;
  --font-label: 'Rajdhani', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --max-width: 1280px;
  --max-width-narrow: 896px;

  --nav-height: 76px;
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container, .container-narrow { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container, .container-narrow { padding: 0 2rem; }
}

.section { padding: 5rem 0; }
.bg-black { background: var(--black); }
.bg-gray-900 { background: var(--gray-900); }
.bg-fade-black-to-gray { background: linear-gradient(to bottom, var(--black), var(--gray-900)); }
.bg-fade-gray-to-black { background: linear-gradient(to bottom, var(--gray-900), var(--black)); }

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
}

.dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.6) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-800);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

.nav-logo span { color: var(--gray-400); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--white);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
}

.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 99;
  padding: 0.5rem 0 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--white);
  background: var(--gray-900);
  border-left-color: var(--white);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }
.btn:hover { transform: scale(1.02); }

.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--gray-300); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gray-700);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-800-30); }

.btn-disabled {
  background: var(--gray-700);
  color: var(--gray-500);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; }

.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   Hero (shared inner pages)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4) 55%, var(--black));
}

.page-hero .content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 5rem; }
}

/* -------------------------------------------------------------------------
   Grids & cards (generic)
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

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

.card {
  background: var(--gray-800-50);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(4px);
}

.card svg, .card .icon { margin: 0 auto 1rem; color: var(--white); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.card .stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.section-title.centered { text-align: center; }

/* -------------------------------------------------------------------------
   About page
   ------------------------------------------------------------------------- */
.story p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.skill-pill {
  padding: 1rem;
  background: rgba(31,41,55,0.5);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: border-color 0.2s ease;
}
.skill-pill:hover { border-color: var(--gray-500); }

.philosophy blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gray-300);
  line-height: 1.7;
  margin: 0;
}

.philosophy-divider {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.philosophy-divider .line {
  width: 64px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-400));
}
.philosophy-divider .line.right {
  background: linear-gradient(to left, transparent, var(--gray-400));
}
.philosophy-divider .sig {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------------
   Music page
   ------------------------------------------------------------------------- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 0;
  background: rgba(17,24,39,0.5);
  border-bottom: 1px solid var(--gray-800);
}

.category-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gray-800);
  color: var(--gray-400);
  transition: all 0.2s ease;
}
.category-btn:hover { background: var(--gray-700); color: var(--white); }
.category-btn.active { background: var(--white); color: var(--black); }

.track-card {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.2s ease;
}
.track-card:hover { background: var(--gray-700); }

.track-card .thumb {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.track-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.track-card:hover .thumb img { transform: scale(1.1); }

.track-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 0.2s ease;
}
.track-card:hover .thumb::after { background: rgba(0,0,0,0.6); }

.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.track-card:hover .play-overlay,
.track-row:hover .play-overlay { opacity: 1; }

.play-button {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.play-button:hover { transform: scale(1.1); }
.play-button svg { color: var(--black); }

.track-card .info { padding: 1.5rem; }
.track-card .info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.track-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-400);
}
.track-meta .stats { display: flex; align-items: center; gap: 1rem; }
.track-meta .stats span { display: flex; align-items: center; gap: 0.3rem; }
.track-meta button { color: var(--white); }
.track-meta button:hover { color: var(--gray-300); }

.track-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
}
.track-row:hover { background: var(--gray-700); }
.track-row .thumb-sm {
  position: relative;
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.track-row .thumb-sm img { width: 100%; height: 100%; object-fit: cover; }
.track-row .info { flex: 1; }
.track-row .info h3 { font-weight: 600; margin-bottom: 0.25rem; }
.track-row .meta-line {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--gray-400);
}
.track-row .dl-btn { color: var(--gray-400); }
.track-row .dl-btn:hover { color: var(--white); }

.platform-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.platform-btn { padding: 0.85rem 2rem; border-radius: var(--radius-lg); font-weight: 700; color: var(--white); transition: background 0.2s ease; }
.platform-btn.spotify { background: var(--green-600); }
.platform-btn.spotify:hover { background: var(--green-700); }
.platform-btn.soundcloud { background: var(--orange-600); }
.platform-btn.soundcloud:hover { background: var(--orange-700); }
.platform-btn.apple { background: var(--purple-600); }
.platform-btn.apple:hover { background: var(--purple-700); }

/* -------------------------------------------------------------------------
   Events page
   ------------------------------------------------------------------------- */
.event-feature {
  position: relative;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 22rem;
  transition: background 0.2s ease;
}
.event-feature:hover { background: var(--gray-700); }
.event-feature .thumb { position: relative; height: 20rem; overflow: hidden; }
.event-feature .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-feature:hover .thumb img { transform: scale(1.1); }
.event-feature .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), rgba(0,0,0,0.5), transparent);
}
.badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.35rem 0.9rem;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  z-index: 2;
}
.event-feature .details {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
}
.event-feature h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.event-meta { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.event-meta .row { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-300); font-size: 0.9rem; }
.event-meta .double { display: flex; gap: 1rem; flex-wrap: wrap; }

.event-list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
  margin-bottom: 1rem;
}
.event-list-item:hover { background: var(--gray-700); }
.event-list-item .thumb {
  width: 100%; height: 8rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.event-list-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-list-item .info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.event-list-item .info { flex: 1; }

.pill-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.pill-status.available { background: rgba(22,163,74,0.2); color: var(--green-400); }
.pill-status.soldout { background: rgba(220,38,38,0.2); color: var(--red-400); }

@media (min-width: 768px) {
  .event-list-item { flex-direction: row; align-items: center; }
  .event-list-item .thumb { width: 8rem; height: 8rem; }
}

.past-event-card {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.past-event-card .thumb { position: relative; height: 12rem; overflow: hidden; }
.past-event-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.past-event-card:hover .thumb img { transform: scale(1.1); }
.past-event-card .thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.past-event-card .info { padding: 1rem; }
.past-event-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.past-event-card .row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-400); margin-bottom: 0.25rem; }

.newsletter-form {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 28rem; margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--gray-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-700);
}
.newsletter-form input:focus { outline: none; border-color: var(--gray-500); }

/* -------------------------------------------------------------------------
   Gallery page
   ------------------------------------------------------------------------- */
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .info { padding: 1.5rem; }
.gallery-overlay h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.gallery-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-content {
  position: relative;
  max-width: 72rem; max-height: 90vh; width: 100%;
}
.lightbox-content img { width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius-lg); margin: 0 auto; }
.lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--black), transparent);
}
.lightbox-caption h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }

.insta-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.1); }
.insta-tile .hover-stats {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.insta-tile:hover .hover-stats { opacity: 1; }
.insta-tile .hover-stats .likes { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }

.insta-cta { text-align: center; margin-top: 3rem; }
.btn-instagram {
  background: linear-gradient(to right, var(--purple-600), var(--pink-600));
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-lg);
  transition: opacity 0.2s ease;
}
.btn-instagram:hover { opacity: 0.9; }

/* -------------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------------- */
.contact-info-card {
  text-align: center;
  padding: 2rem;
  background: rgba(31,41,55,0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gray-700);
}
.contact-info-card .icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.contact-info-card h3 {
  font-weight: 700; margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem;
}
.contact-info-card a, .contact-info-card p { color: var(--gray-400); }
.contact-info-card a:hover { color: var(--white); }

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

.field label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--gray-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-700);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gray-500);
}
.field textarea { resize: vertical; min-height: 140px; }

.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }

.social-card {
  position: relative;
  padding: 2rem;
  background: rgba(31,41,55,0.5);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.social-card:hover { border-color: var(--gray-500); transform: translateY(-5px); }
.social-card svg { color: var(--gray-400); margin-bottom: 0.75rem; }
.social-card:hover svg { color: var(--white); }
.social-card p { font-weight: 600; }

.map-placeholder {
  position: relative;
  height: 24rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder .center { text-align: center; color: var(--gray-500); }

.faq-item {
  padding: 1.5rem;
  background: rgba(31,41,55,0.3);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.faq-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-item p { color: var(--gray-400); }

/* -------------------------------------------------------------------------
   Home page — hero logo
   ------------------------------------------------------------------------- */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.logo-stage {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.logo-bg-panel {
  position: absolute; inset: 0;
  background: #040404;
  border-radius: 15px;
}

.logo-decor {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0.5;
  border-radius: 15px;
}

.vinyl {
  position: absolute;
  top: 50%;
  width: 140px; height: 140px;
  transform: translateY(-50%);
}
.vinyl.left { left: 2rem; }
.vinyl.right { right: 2rem; }

.vinyl svg { animation: spin 6s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.mixer {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  width: 380px;
  max-width: 80%;
}

.volume-bars {
  position: absolute;
  top: 2rem;
  height: 5rem; width: 8rem;
  display: flex; align-items: flex-end; gap: 4px;
}
.volume-bars.left { left: 3rem; }
.volume-bars.right { right: 3rem; }

.volume-bars .bar {
  flex: 1;
  background: linear-gradient(to top, #ffffff, #9ca3af);
  border-radius: 2px 2px 0 0;
  animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { height: 20%; }
  50% { height: 90%; }
}

.logo-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}

.logo-glow {
  position: absolute;
  width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  filter: blur(60px);
  animation: glow 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.logo-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo-dj {
  position: relative;
  text-align: center;
}

.logo-dj h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.3em;
  text-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.logo-dj .underline {
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--white), transparent);
}

.logo-omar h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.logo-ring {
  position: absolute;
  top: 50%;
  width: 4rem; height: 4rem;
  border: 2px solid rgba(156,163,175,0.4);
  transform: translateY(-50%);
  animation: rotate-cw 20s linear infinite;
}
.logo-ring.left { left: -6rem; border-radius: 4px; }
.logo-ring.right { right: -6rem; border-radius: 30%; animation-direction: reverse; animation-duration: 15s; }

@keyframes rotate-cw { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

.logo-accent {
  margin-top: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.logo-accent .line { width: 64px; height: 1px; background: linear-gradient(to right, transparent, var(--gray-400)); }
.logo-accent .line.right { background: linear-gradient(to left, transparent, var(--gray-400)); }
.logo-accent .dot { width: 8px; height: 8px; background: var(--white); border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.8); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gray-400);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

.featured-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.featured-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-banner .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), rgba(0,0,0,0.5), transparent);
}
.featured-banner .content {
  position: relative; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem;
}
.featured-banner h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.featured-banner p { font-size: 1.25rem; color: var(--gray-300); }

/* -------------------------------------------------------------------------
   Toast
   ------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(90vw, 380px);
}
.toast {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toast-in 0.25s ease;
}
.toast.loading { background: var(--gray-800); color: var(--white); }
.toast.error { background: var(--red-600); color: var(--white); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--gray-950);
  border-top: 1px solid var(--gray-800);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex; flex-direction: column; gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gray-400); }
.footer-tag { color: var(--gray-400); font-size: 0.95rem; max-width: 320px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-800);
  border-radius: 50%;
  color: var(--gray-300);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--gray-700); color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex; flex-direction: column; gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--gray-300); }

/* -------------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].is-visible { transform: scale(1); }
[data-reveal="left"] { transform: translateX(-20px); }
[data-reveal="left"].is-visible { transform: translateX(0); }

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.muted { color: var(--gray-400); }
