/* ============================================
   OUTBREAK by Jauri
   ============================================ */

:root {
  --bg: #0a0a0a;
  --surface: #131313;
  --surface-2: #1c1c1c;
  --border: #282828;
  --border-hover: #3a3a3a;
  --text: #e8e8e8;
  --text-secondary: #aaa;
  --text-muted: #777;
  --accent: #e84d1a;
  --accent-hover: #ff5e2b;
  --accent-glow: rgba(232, 77, 26, 0.4);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --nav-h: 72px;
  --max-w: 1100px;
  --radius: 4px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* --- Navbar --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav-logo:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(232, 77, 26, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.3s, background 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border-radius: 6px;
  padding: 3px;
  border: 1px solid var(--border);
}

.lang-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}

.lang-btn.active {
  color: var(--text);
  background: var(--surface-2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover:not(.active) {
  color: var(--text-secondary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  display: block;
}

.nav-hamburger.open span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-hamburger.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.mobile-link:hover {
  color: var(--text);
  transform: translateX(8px);
}

.mobile-link.active {
  color: var(--accent);
}

.mobile-link.active::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.mobile-lang {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  background: var(--surface);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid var(--border);
}

.mobile-lang .lang-btn {
  font-size: 0.9375rem;
  padding: 10px 20px;
  border-radius: 6px;
}

/* --- Hero --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
}

.hero-butterfly {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.butterfly-img {
  width: 380px;
  max-width: 60vw;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(232, 77, 26, 0.15));
  animation: bfFloat 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform, filter;
}

@keyframes bfFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 40px rgba(232, 77, 26, 0.1));
  }
  25% {
    transform: translateY(-8px) rotate(0.3deg) scale(1.005);
    filter: drop-shadow(0 0 44px rgba(232, 77, 26, 0.15));
  }
  50% {
    transform: translateY(-14px) rotate(0deg) scale(1.01);
    filter: drop-shadow(0 0 50px rgba(232, 77, 26, 0.22));
  }
  75% {
    transform: translateY(-6px) rotate(-0.3deg) scale(1.005);
    filter: drop-shadow(0 0 44px rgba(232, 77, 26, 0.15));
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 40px rgba(232, 77, 26, 0.1));
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(0.7rem, 2.8vw, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 16px;
  text-align: center;
}

.rotating-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 4px;
}

.rotating-word.slide-out {
  opacity: 0;
  transform: translateY(-100%);
}

.rotating-word.slide-in {
  opacity: 0;
  transform: translateY(100%);
}


/* --- Sections --- */
.section {
  padding: 48px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.section-cta {
  margin-top: 24px;
}

/* --- Page Headers --- */
.page-header {
  padding: 120px 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text);
}

/* --- Event Cards --- */
.events-grid,
.events-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.event-card:hover {
  border-color: var(--border-hover);
}

.event-card.event-past {
  opacity: 0.5;
}

.event-card.event-past:hover {
  opacity: 0.65;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

.event-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.event-location {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.event-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.badge-past {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.events-empty {
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding: 2rem 0;
}

/* --- Releases --- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.release-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.release-card:hover {
  border-color: var(--border-hover);
}

.release-card iframe {
  display: block;
  border-radius: 4px;
}

.releases-grid--featured {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* --- Artists --- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.artist-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.artist-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4);
  transition: filter 0.3s;
}

.artist-card:hover .artist-img {
  filter: grayscale(0);
}

.artist-card-body {
  padding: 20px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}

.artist-genre {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Artist Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.modal-content {
  position: relative;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  z-index: 2;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

.artist-detail-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.artist-detail-img {
  width: 140px;
  height: 140px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.artist-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-detail-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
}

/* --- Artist Carousel --- */
.artist-carousel-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.artist-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.artist-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex-shrink: 0;
  width: 28%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  filter: brightness(0.6);
  cursor: pointer;
}

.carousel-slide.active {
  width: 42%;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.carousel-slide.prev,
.carousel-slide.next {
  opacity: 0.7;
  filter: brightness(0.7);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--accent);
}

.carousel-btn--prev {
  left: 4px;
}

.carousel-btn--next {
  right: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
  background: var(--text-muted);
}

.artist-detail-bio {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.artist-detail-bio p {
  margin: 0 0 12px 0;
}

.artist-detail-bio p:last-child {
  margin-bottom: 0;
}

.artist-detail-spotify {
  margin-top: 16px;
}

.artist-detail-spotify iframe {
  border-radius: 4px;
}

/* --- About --- */
.about-content {
  max-width: 900px;
}

.about-text {
  margin-bottom: 64px;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  margin: 32px 0;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--text-secondary);
  opacity: 0.3;
  margin: 28px 0;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-pillar:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.about-pillar-icon {
  font-size: 0.625rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  opacity: 0.5;
}

.about-pillar h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pillar p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  max-width: 800px;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 300px;
}

.contact-form-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  color-scheme: normal;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.contact-detail h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
  font-size: 0.8125rem;
  color: var(--text);
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--accent);
}

/* --- Footer --- */
#footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
  margin-top: 48px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-contact-info {
  text-align: center;
}

.footer-contact-info a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer-contact-info a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

/* --- Privacy Policy Modal --- */
.privacy-modal-content {
  max-width: 800px;
  padding: 16px;
  height: 85vh;
  display: flex;
  flex-direction: column;
}

.privacy-iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 4px;
  background: #fff;
}

#privacy-link {
  color: var(--text-secondary);
  transition: color 0.2s;
}

#privacy-link:hover {
  color: var(--text);
}

/* --- Page visibility --- */
.page {
  min-height: 100vh;
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-pillar {
    padding: 24px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 32px 20px;
  }

  .page-header {
    padding: 100px 20px 24px;
  }

  .hero {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .butterfly-img {
    width: 280px;
    max-width: 60vw;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .event-date {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 24px;
  }

  .artist-detail-header {
    flex-direction: column;
  }

  .carousel-slide {
    width: 26%;
  }

  .carousel-slide.active {
    width: 46%;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 20px;
  }
}
