/* Design Tokens */
:root {
  --brand: #d0021b;
  --accent: #ff0033;
  --bg: #0a0a0a;
  --bg-alt: #1a1a1a;
  --surface: #1f1f1f;
  --surface-alt: #2a2a2a;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --muted: #888888;
  --card-border: #333333;
  --radius: 8px;
  --spacing: 1rem;
  --container-width: 1200px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Hero image variables */
  --hero-zoom: 1.1;
  --hero-height: clamp(400px, 50.625vw, 900px);
  --hero-top-safe: 80px;
  --hero-header-height: 80px;
  --hero-padding-top: 0px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimize-quality;
}

/* Hero image exception - must be full width */
.hero-image img,
.hero-img {
  max-width: none !important;
}

/* Performance: Content visibility for off-screen images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
  content-visibility: auto;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Visually hidden content for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--spacing);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

.brand {
  height: 100%;
}

.brand-logo {
  height: 120%;
  max-height: 60px;
  width: auto;
  display: block;
}

/* Navigation */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: var(--surface);
  border-color: var(--brand);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

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

.nav-list a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
}

/* Navigation dropdown (Media) */
.nav-item--dropdown {
  position: relative;
}

.nav-list .nav-link--btn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.nav-list .nav-link--btn:hover,
.nav-list .nav-link--btn[aria-expanded="true"],
.nav-list .nav-link--btn[aria-current="page"] {
  color: var(--brand);
}

.nav-list .nav-link--btn[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px;
  z-index: 9999;
  background: rgba(24, 7, 11, 0.94);
  border: 1px solid rgba(225, 29, 72, 0.45);
  border-radius: 16px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(225, 29, 72, 0.12);
  backdrop-filter: blur(12px);
}

.nav-submenu li {
  list-style: none;
}

.nav-submenu li + li {
  margin-top: 8px;
}

.nav-item--dropdown.is-open > .nav-submenu {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #ffe8ed;
  border: 1px solid rgba(225, 29, 72, 0.5);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(225, 29, 72, 0.28),
    rgba(225, 29, 72, 0.12)
  );
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 18px rgba(225, 29, 72, 0.16);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: linear-gradient(
    180deg,
    rgba(225, 29, 72, 0.52),
    rgba(225, 29, 72, 0.22)
  );
  border-color: rgba(251, 113, 133, 0.9);
  color: #ffffff;
  transform: translateX(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(225, 29, 72, 0.26);
}

/* Social Media Section */
.social {
  position: sticky;
  top: 80px;
  z-index: 99;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: none;
  border-bottom: 1px solid var(--card-border);
  padding: 0.75rem 0;
  margin-top: 0;
  margin-bottom: 0;
}

.social-network {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.social-network a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-network a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.4);
}

.icoHome:hover { background: var(--brand); color: var(--text); }
.icoFacebook:hover { background: #1877f2; color: var(--text); }
.icoYouTube:hover { background: #ff0000; color: var(--text); }
.icoTwitter:hover { background: #1da1f2; color: var(--text); }
.icoInstagram:hover { background: #e4405f; color: var(--text); }
.icoiTunes:hover { background: #fa243c; color: var(--text); }
.icoApple:hover { background: #000000; color: var(--text); }
.icoSpotify:hover { background: #1db954; color: var(--text); }
.icoWebstore:hover { background: var(--brand); color: var(--text); }
.icoEmail:hover { background: var(--brand); color: var(--text); }

/* Hero Section */
.hero.section {
  position: relative;
  height: calc(var(--hero-padding-top) + var(--hero-height));
  overflow: visible;
  display: block;
  margin-bottom: 0;
  padding: 0;
  z-index: 0;
  width: 100%;
  max-width: 100vw;
}

.hero-image {
  position: absolute;
  top: var(--hero-padding-top);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: var(--hero-height);
  z-index: 0;
  overflow: hidden;
}

.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image .hero-img {
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  will-change: transform;
}

.hero + .section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 40px;
}

/* Hero Copy */
.hero-copy {
  text-align: center;
  padding: 3rem 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-copy p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.fb-section { content-visibility: visible; contain: none; }
.section.alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(208, 2, 27, 0.2);
  border-color: var(--brand);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: var(--text);
  border-color: var(--brand);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.4);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.button.ghost:hover {
  background: var(--text);
  color: var(--bg);
}

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tour List */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-row {
  display: grid;
  grid-template-columns: 120px 1.5fr 1.5fr 2fr 140px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--card-border);
}

.tour-row:last-child {
  border-bottom: none;
}

.tour-col {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-col-date {
  flex-direction: column;
  align-items: flex-start;
}

.tour-day-large {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.tour-month-year {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-col-place {
  color: var(--text);
  font-size: 1rem;
}

.tour-flag {
  height: 20px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Common inline style replacements */
.news-card-layout {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.news-card-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  display: block;
}

.news-card-text {
  flex: 1;
  text-align: justify;
}

.news-card-button {
  margin-top: auto;
  align-self: center;
}

.text-center {
  text-align: center;
}

.margin-bottom-16 {
  margin-bottom: 16px;
}

.margin-0-0-16 {
  margin: 0 0 16px;
}

.tour-col-venue {
  color: var(--text);
  font-size: 0.9375rem;
}

.tour-col-name {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.tour-col-tickets {
  justify-content: flex-end;
}

.tour-ticket-btn {
  background: var(--brand);
  color: var(--text);
  border-color: var(--brand);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.tour-ticket-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.4);
}

/* Shop Carousel */
.shop-carousel-wrapper {
  position: relative;
  padding: 0 60px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 2rem;
}

.shop-carousel {
  overflow: hidden !important;
  position: relative;
  width: 100%;
  min-height: 300px;
  max-width: 100%;
  box-sizing: border-box;
}


/* Image Container - Ensures consistent height (Square aspect ratio) */
.card .product-image-container {
  position: relative;
  width: 100%;
  max-width: 180px;
  margin: 0 auto 1rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-alt);
}

/* The Image Itself */
.card .product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

/* Centered variant for CD/t-shirt (80% size) */
.card .product-image-container.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .product-image-container.centered img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Hover Effect */
.card.product:hover .product-image-container img {
  transform: scale(1.05);
}


/* Ensure desktop carousel doesn't get mobile styles */
@media (min-width: 641px) {
  .shop-carousel {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }
  
  .shop-carousel-track {
    display: flex !important;
    /* Don't set transform here - let JavaScript control it */
    transition: transform 0.5s ease-in-out !important;
    width: max-content !important;
    /* Transform will be set by JavaScript - don't override */
  }
  
  .shop-carousel .card.product {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    min-width: 280px !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }
}

.shop-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  will-change: transform;
  align-items: stretch;
  min-height: 300px;
  width: max-content;
  box-sizing: border-box;
}

.shop-carousel .card.product {
  min-width: 280px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.shop-carousel .card.product h3 {
  color: var(--text);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.shop-carousel .card.product .price {
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.shop-carousel .card.product p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shop-carousel .card.product a {
  margin-top: auto;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--brand);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s, transform 0.2s;
}

.carousel-nav:hover {
  background: rgba(208, 2, 27, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Video Grid Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-item {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 0.5rem;
  background: var(--surface);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-item:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(208, 2, 27, 0.4);
  transform: translateY(-4px);
}

.video-thumbnail {
  border: 1px solid rgba(208, 2, 27, 0.3);
}

.video-item:hover .video-thumbnail {
  border-color: var(--brand);
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
  .shop-carousel-wrapper {
    padding: 0 40px;
  }
  
  .shop-carousel .card.product {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
  }
  
  .shop-carousel .card.product .product-image-container {
    max-width: 140px;
  }
  
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
}

/* .checklist - REMOVED: Unused class */

/* Band Selector */
.band-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.band-card {
  background: var(--surface);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font-family);
  color: var(--text);
}

.band-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}

.band-card.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--text);
}

.band-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--brand);
  transition: color 0.3s;
}

.band-card.active i {
  color: var(--text);
}

.band-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

/* Band Content */
.band-content {
  position: relative;
  min-height: 400px;
}

.band-info {
  display: none;
  animation: fadeIn 0.5s ease;
}

.band-info.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.band-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  justify-content: center;
}

.band-info h2 i {
  color: var(--brand);
}

.band-info p {
  text-align: justify;
}

/* Band Member Layout */
.band-member-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.band-member-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.member-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 2px solid var(--card-border);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.band-member-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.band-member-text p {
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
}

.band-member-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  text-align: center;
}

.band-member-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  text-align: center;
}

.fun-facts {
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.fun-facts ul {
  list-style: none;
  margin-top: 0.75rem;
}

.fun-facts li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.fun-facts li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
}

/* .discography and .discography-list - REMOVED: Unused classes (replaced with .discography-grid, .discography-card, etc.) */

/* Gallery */
.band-member-gallery {
  margin-top: 2rem;
}

.gallery-grid {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  contain: layout style paint;
}

.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.gallery-item:first-child {
  opacity: 1;
  z-index: 1;
}

.gallery-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field select {
  padding: 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.field select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface-alt);
}

.field select:required:invalid {
  color: var(--text-muted);
}

.field select option {
  background: var(--surface);
  color: var(--text);
}

.field .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field input,
.field textarea {
  padding: 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* .back-to-top - REMOVED: Unused class (back-to-top button was removed) */

/* Scroll Buttons */
.scroll-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: bottom 0.3s ease;
}

.scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.scroll-btn:active {
  transform: scale(0.95);
}

/* Press Release Styles */
.press-card {
  margin-bottom: 48px;
  text-align: center;
}

.press-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.press-preview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.press-preview-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.press-preview-image:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.press-preview-image:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.press-preview-content {
  flex: 1;
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.press-preview-content p {
  text-align: justify;
  flex: 1;
  width: 100%;
}

.press-preview-content .read-more-btn {
  align-self: center;
  margin-top: auto;
  text-align: center;
}

.press-full {
  display: none;
}

.press-card.expanded .press-preview {
  display: none;
}

.press-card.expanded .press-full {
  display: block;
  text-align: center;
}

.press-full p {
  text-align: justify;
}

.press-card h2 {
  text-align: center;
}

.read-more-btn {
  margin-top: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.press-full .read-more-btn {
  display: block;
  margin: 16px auto 0;
  text-align: center;
  width: 100%;
}

.press-full ul {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.press-image {
  width: 100%;
  max-width: 600px;
  margin: 16px auto;
  border-radius: var(--radius);
  display: block;
}

img.press-image {
  height: auto;
  object-fit: contain;
}

section.video {
  width: 100%;
  max-width: 600px;
  margin: 16px auto;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.container-fluid {
  margin-top: 32px;
  width: 100%;
}

.hr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.hr hr.style,
.hr hr.style8 {
  flex: 1;
  border: 0;
  height: 4px;
  background: transparent;
  border-top: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  margin: 0;
  max-width: 200px;
}

.hr img {
  width: 8%;
  max-width: 60px;
  height: auto;
  flex-shrink: 0;
}

/* Social Feeds Styles */
.social-feeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.social-feed-card {
  min-height: 400px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.social-feed-card:last-child {
  min-height: 600px;
}

/* Ensure social media content is visible */
.news-info[data-content="social-media"] {
  min-height: 800px;
}

.news-info[data-content="social-media"].active {
  display: block !important;
  visibility: visible !important;
}

.news-info[data-content="social-media"] * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.news-info[data-content="social-media"] .social-feeds {
  display: grid !important;
}

.news-info[data-content="social-media"] .facebook-feed,
.news-info[data-content="social-media"] iframe {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 700px !important;
  width: 100% !important;
  max-width: 500px !important;
  margin: 0 auto !important;
}

/* Discography Styles */
.discography-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-align: center;
}

.discography-section-title:first-of-type {
  margin-top: 2rem;
}

.discography-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.discography-card {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discography-image {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--card-border);
}

.discography-image a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.discography-image a:hover {
  opacity: 0.8;
}

.discography-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discography-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.discography-year {
  font-size: 0.875rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discography-type {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

/* Album Page Styles */
.album-header {
  text-align: center;
  margin-bottom: 3rem;
}

.album-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.album-cover {
  width: 100%;
}

.album-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 2px solid var(--card-border);
  object-fit: cover;
}

.album-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.album-info h2:first-child {
  margin-top: 0;
}

.tracklist {
  list-style: none;
  counter-reset: track-counter;
  margin: 0 2rem 2rem 2rem;
  padding-left: 0;
}

.tracklist li {
  counter-increment: track-counter;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  position: relative;
}

.tracklist li::before {
  content: counter(track-counter);
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
  min-width: 1.5rem;
}

.tracklist li:last-child {
  border-bottom: none;
}

.track-name {
  flex: 1;
  color: var(--text);
}

.track-duration {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.album-total-duration {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border);
}

.album-total-duration strong {
  color: var(--text);
}

.streaming-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.album-credits {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.album-credits p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.album-credits p:last-child {
  margin-bottom: 0;
}

.album-credits strong {
  color: var(--text);
}

/* Tour Table Styles - Desktop */
.tour-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}

.tour-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

/* Responsive Design */
@media (max-width: 900px) {
  
  
  .band-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .album-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .album-cover {
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Video Grid Tablet */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-padding-top: 0px;
    --hero-top-safe: 48px;
    --hero-header-height: 48px;
    --hero-height: 60vh;
  }
  
  .hero.section {
    height: calc(var(--hero-padding-top) + var(--hero-height));
    min-height: 400px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100vw;
  }
  
  .hero-image {
    position: absolute;
    top: var(--hero-padding-top);
    left: 50%;
    right: auto;
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    height: var(--hero-height);
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-image picture {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .hero-image .hero-img {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  
  /* Ensure picture element doesn't constrain */
  .hero-image picture {
    width: 100vw !important;
    max-width: none !important;
  }
  
  .hero-bg {
    top: var(--hero-padding-top);
  }
  
  .hero + .section {
    padding-top: 24px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--card-border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  
  .nav-list.open {
    display: flex;
  }
  
  .nav-list a {
    padding: 0.75rem;
    width: 100%;
    text-align: left;
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .nav-list .nav-link--btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    width: 100%;
    text-align: left;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-list .nav-link--btn::after {
    content: "▾";
    font-size: 0.82rem;
    opacity: 0.72;
    transform: rotate(0deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-item--dropdown.is-open > .nav-link--btn {
    background: rgba(225, 29, 72, 0.18);
    color: #fff;
  }

  .nav-item--dropdown.is-open > .nav-link--btn::after {
    opacity: 1;
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 0.28rem 0 0.46rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    list-style: none;
  }

  .nav-submenu li {
    margin: 0;
    list-style: none;
  }

  .nav-submenu li + li {
    border-top: 0;
    margin-top: 0.45rem;
  }

  .nav-submenu a {
    padding: 0.64rem 0.9rem;
    white-space: normal;
    border-radius: 999px;
    font-size: 0.93rem;
    line-height: 1.35;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    transform: translateY(-1px);
  }
  
  .site-nav {
    justify-content: flex-end;
  }
  
  .social {
    top: 48px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.5rem 0;
    border-top: none;
  }
  
  .social-network {
    gap: 0.75rem;
  }
  
  .social-network a {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  
  .brand-logo {
    height: 120%;
  }
  
  .band-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .band-card {
    padding: 1rem 0.75rem;
  }
  
  .band-card i {
    font-size: 1.5rem;
  }
  
  .band-card h3 {
    font-size: 0.875rem;
  }
  
  .band-member-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .band-member-image {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .member-photo {
    max-width: 100%;
    height: auto;
  }
  
  .band-member-text {
    gap: 0.75rem;
  }
  
  .band-member-text h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
  
  .band-member-text h4 {
    font-size: 1.125rem;
  }
  
  .discography-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .discography-card {
    padding: 1rem;
  }
  
  .discography-card h3 {
    font-size: 1.125rem;
  }
  
  .discography-section-title {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .press-preview {
    flex-direction: column;
    align-items: center;
  }
  
  .press-preview-image {
    width: 50%;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
  }
  
  .hr {
    gap: 8px;
    margin: 24px 0;
  }
  
  .hr hr.style,
  .hr hr.style8 {
    max-width: 80px;
    height: 3px;
    border-top-width: 1.5px;
    border-bottom-width: 1.5px;
  }
  
  .hr img {
    width: 10%;
    max-width: 40px;
  }
  
  .scroll-buttons {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  
  .scroll-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .field input,
  .field textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  /* Prevent horizontal scroll - specific elements */
  img, video, iframe, embed, object {
    max-width: 100%;
  }
  
  /* Text wrapping */
  p, li, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Long URLs and links */
  a {
    word-break: break-word;
  }
  
  /* Tables responsive (if any) */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Tour tables mobile - optimized for mobile scrolling */
  .tour-table-wrapper {
    position: relative;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 0.5rem;
  }
  
  .tour-table-wrapper::before {
    content: 'Swipe to see more →';
    position: absolute;
    right: 10px;
    top: 5px;
    color: var(--brand);
    font-size: 0.75rem;
    pointer-events: none;
    opacity: 0.7;
    z-index: 2;
    font-weight: 600;
  }
  
  .tour-table-wrapper table {
    min-width: 600px; /* Minimum width for horizontal scroll */
    font-size: 0.875rem;
    width: 100%;
    border-collapse: collapse;
  }
  
  .tour-table-wrapper thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-alt);
  }
  
  .tour-table-wrapper th,
  .tour-table-wrapper td {
    padding: 10px 8px !important;
    font-size: 0.8125rem;
    white-space: nowrap;
    text-align: center;
  }
  
  .tour-table-wrapper th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--brand);
    border-bottom: 2px solid var(--brand);
    position: sticky;
    top: 0;
  }
  
  .tour-table-wrapper td {
    border-bottom: 1px solid var(--card-border);
  }
  
  .tour-table-wrapper tr:last-child td {
    border-bottom: none;
  }
  
  .tour-table-wrapper th:first-child,
  .tour-table-wrapper td:first-child {
    position: sticky;
    left: 0;
    background: var(--surface);
    z-index: 1;
    padding-left: 1rem !important;
    min-width: 120px;
    text-align: left;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  }
  
  .tour-table-wrapper thead th:first-child {
    background: var(--bg-alt);
    z-index: 11;
  }
  
  .tour-table-wrapper img {
    height: 18px !important;
    width: max-content !important;
    display: inline-block;
  }
  
  /* Custom scrollbar for mobile */
  .tour-table-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .tour-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 4px;
  }
  
  .tour-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 4px;
  }
  
  .tour-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }
  
  /* Shop Carousel Mobile - Smaller screens */
  .shop-carousel-wrapper {
    padding: 0 20px;
    width: 100%;
    overflow: visible;
    position: relative;
  }
  
  .shop-carousel {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) var(--bg);
  }
  
  .shop-carousel::-webkit-scrollbar {
    height: 6px;
  }
  
  .shop-carousel::-webkit-scrollbar-track {
    background: var(--bg);
  }
  
  .shop-carousel::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 3px;
  }
  
  .shop-carousel-track {
    display: flex !important;
    width: max-content !important;
    gap: 1rem !important;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .shop-carousel .card.product {
    min-width: calc(100vw - 60px) !important;
    max-width: calc(100vw - 60px) !important;
    width: calc(100vw - 60px) !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 200px !important;
    background: var(--surface) !important;
    border: 1px solid var(--card-border) !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }
  
  .shop-carousel .card.product h3 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--text) !important;
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .shop-carousel .card.product p,
  .shop-carousel .card.product .price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--text-muted) !important;
    margin-bottom: 1rem !important;
  }
  
  .shop-carousel .card.product .price {
    color: var(--brand) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
  }
  
  .shop-carousel .card.product a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: auto !important;
  }
  
  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    z-index: 10;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
  
  /* Tour Rows Mobile */
  .tour-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }
  
  .tour-col {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .tour-col-date {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .tour-day-large {
    font-size: 1.5rem;
  }
  
  .tour-col-tickets {
    justify-content: flex-start;
  }
  
  .tour-ticket-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Video Grid Mobile */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Video Item Mobile - Ensure visibility */
  .video-item {
    width: 100%;
    min-height: auto;
  }
  
  .video-item .embed-responsive {
    width: 100%;
    min-height: 200px;
    position: relative;
    display: block;
  }
  
  .video-item .embed-responsive-16by9::before {
    padding-top: 56.25%;
    display: block;
  }
  
  .video-item .embed-responsive img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  /* Override lazy loading opacity for video thumbnails on mobile */
  .video-item .embed-responsive img[loading="lazy"] {
    opacity: 1 !important;
  }
  
  .video-item .embed-responsive a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
  
  .video-item .embed-responsive .fab {
    display: flex !important;
    visibility: visible !important;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  /* Press Preview Mobile */
  .press-preview {
    gap: 1rem;
  }
  
  /* Year Navigation Mobile */
  .news-info a[href^="#year-"],
  .press-card a[href^="#year-"] {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  /* Tracklist Mobile */
  .tracklist {
    margin: 0 1rem 2rem 1rem;
  }
  
  /* News Selector Mobile */
  .news-selector {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .news-card {
    padding: 1rem 0.75rem;
  }
  
  .news-card h3 {
    font-size: 0.875rem;
  }
  
  /* News Content Mobile */
  .news-content {
    min-height: 300px;
  }
  
  /* Social Media Feeds Mobile */
  .social-feeds {
    gap: 1.5rem;
  }
  
  .social-feed-card {
    min-height: 300px;
  }
  
  .social-feed-card:last-child {
    min-height: 500px;
  }
  
  /* Press Release Cards Mobile */
  .press-card {
    padding: 1rem;
  }
  
  .press-card h2 {
    font-size: 1.25rem;
  }
  
  .press-date {
    font-size: 0.875rem;
  }
  
  /* Video Embeds Mobile */
  section.video {
    max-width: 100%;
    margin: 16px 0;
  }
  
  /* Container Mobile Padding */
  .container {
    padding: 0 1rem;
  }
  
  /* Touch Target Sizes */
  .button,
  .news-card,
  .band-card,
  .nav-toggle,
  .scroll-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Font Sizes Mobile */
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  
  h1.section-title {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }
  
  h2.section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  
  /* Iframe Responsive */
  iframe {
    max-width: 100%;
  }
  
.facebook-feed iframe {
  height: 700px !important;
  min-height: 700px !important;
  display: block;
}

  
  /* Embed Responsive Mobile */
  .embed-responsive-item {
    max-width: 100%;
  }
  
  section.video {
    width: 100%;
    max-width: 100%;
  }
}

/* News Selector */
.news-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.news-card {
  background: var(--surface);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font-family);
  color: var(--text);
}

.news-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}

.news-card.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--text);
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

/* News Content */
.news-content {
  position: relative;
  min-height: 400px;
}

.news-info {
  display: none;
}

.news-info.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: fadeIn 0.5s ease;
}

/* Consistent text-link colors across content */
main p a[href]:not(.button):not(.read-more-btn),
main li a[href]:not(.button):not(.read-more-btn),
main td a[href]:not(.button):not(.read-more-btn),
main th a[href]:not(.button):not(.read-more-btn),
main h5 a[href]:not(.button):not(.read-more-btn),
main h6 a[href]:not(.button):not(.read-more-btn) {
  color: #ff6b78;
  text-decoration-color: rgba(255, 107, 120, 0.75);
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

main p a[href]:not(.button):not(.read-more-btn):visited,
main li a[href]:not(.button):not(.read-more-btn):visited,
main td a[href]:not(.button):not(.read-more-btn):visited,
main th a[href]:not(.button):not(.read-more-btn):visited,
main h5 a[href]:not(.button):not(.read-more-btn):visited,
main h6 a[href]:not(.button):not(.read-more-btn):visited {
  color: #ff7f8b;
  text-decoration-color: rgba(255, 127, 139, 0.55);
}

main p a[href]:not(.button):not(.read-more-btn):hover,
main li a[href]:not(.button):not(.read-more-btn):hover,
main td a[href]:not(.button):not(.read-more-btn):hover,
main th a[href]:not(.button):not(.read-more-btn):hover,
main h5 a[href]:not(.button):not(.read-more-btn):hover,
main h6 a[href]:not(.button):not(.read-more-btn):hover {
  color: #ffd8dd;
  text-decoration-color: #ffd8dd;
}

main p a[href]:not(.button):not(.read-more-btn):active,
main li a[href]:not(.button):not(.read-more-btn):active,
main td a[href]:not(.button):not(.read-more-btn):active,
main th a[href]:not(.button):not(.read-more-btn):active,
main h5 a[href]:not(.button):not(.read-more-btn):active,
main h6 a[href]:not(.button):not(.read-more-btn):active {
  color: #ffffff;
}

main p a[href]:not(.button):not(.read-more-btn):focus-visible,
main li a[href]:not(.button):not(.read-more-btn):focus-visible,
main td a[href]:not(.button):not(.read-more-btn):focus-visible,
main th a[href]:not(.button):not(.read-more-btn):focus-visible,
main h5 a[href]:not(.button):not(.read-more-btn):focus-visible,
main h6 a[href]:not(.button):not(.read-more-btn):focus-visible {
  outline: 2px solid rgba(255, 107, 120, 0.7);
  outline-offset: 2px;
  border-radius: 2px;
}

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


.lyrics-modal-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.lyrics-modal-overlay.is-open { display: flex; }
.lyrics-modal-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius); max-width: 560px; width: 100%; max-height: 85vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.lyrics-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--card-border); flex-shrink: 0; }
.lyrics-modal-header h3 { margin: 0; font-size: 1.25rem; color: var(--text); }
.lyrics-modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.5rem; font-size: 1.5rem; line-height: 1; transition: color 0.2s; }
.lyrics-modal-close:hover { color: var(--brand); }
.lyrics-modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; white-space: pre-wrap; font-size: 0.9375rem; line-height: 1.8; color: var(--text-muted); }

/* Bandsintown Widget - REMOVED */
