/* CSS Variables */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #141414;
  --color-bg-card: #1a1a1a;
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-accent: #ff4444;
  --color-accent-hover: #ff6666;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-logo:hover {
  color: var(--color-accent);
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.site-nav a {
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 0;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-text);
  transition: 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(10,10,10,1));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 10px;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

/* Page Content */
.page-content {
  padding: 60px 0;
  min-height: 50vh;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--color-accent-hover);
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Posts Grid */
.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.post-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
  position: relative;
  min-height: 200px;
  width: 100%;
}

.post-card .post-image {
  flex-shrink: 0;
  width: 250px;
}

.post-card .post-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .post-card {
    flex-direction: column;
  }

  .post-card .post-image {
    width: 100%;
  }
}

.past-event .post-image,
.past-event .post-content {
  filter: grayscale(70%) brightness(0.7);
  opacity: 0.6;
}

.past-event-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 50, 50, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  pointer-events: none;
  z-index: 11;
  transform: rotate(-35deg);
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-content time {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.post-content h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.post-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
  overflow: hidden;
  margin-bottom: 0;
}

.post-content h3 a {
  color: var(--color-text);
}

.post-content h3 a:hover {
  color: var(--color-accent);
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* News List Page */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card-horizontal {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 25px;
}

.post-card-horizontal .post-image img {
  height: 200px;
  border-radius: 8px;
}

.post-card-horizontal .post-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card-horizontal .post-content h2 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.post-card-horizontal .post-content h2 a {
  color: var(--color-text);
}

.post-card-horizontal .post-content h2 a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .post-card-horizontal {
    grid-template-columns: 1fr;
  }
}

/* Single Post Page */
.post-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  margin-top: var(--header-height);
}

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

.post-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.post-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.post-hero .post-date {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

.post-hero .post-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-hero .post-body p {
  margin-bottom: 1.5em;
}

.post-hero .post-nav {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-single {
  max-width: 800px;
  margin: 0 auto;
}

.post-featured-image {
  margin-bottom: 30px;
}

.post-featured-image img {
  width: 100%;
  border-radius: 8px;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.post-body p {
  margin-bottom: 1.5em;
}

.post-nav {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-date {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* Featured Album */
.featured-album {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.album-artwork img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.album-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.album-meta,
.album-artist {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.music-player {
  margin: 20px 0;
}

.music-player h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

/* Music List */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.music-list-item {
  background: var(--color-bg-card);
  border-radius: 8px;
  padding: 25px;
}

.music-list-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.music-list-info .album-artist {
  margin-bottom: 15px;
}

.music-list-player .music-player {
  margin: 10px 0 0;
}

/* Albums List */
.albums-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.album-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 30px;
  background: var(--color-bg-card);
  border-radius: 8px;
}

.album-details h2 {
  text-align: left;
  margin-bottom: 10px;
}

.track-list {
  margin-top: 30px;
}

.track-list h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.track-list ol {
  list-style: none;
  counter-reset: track;
}

.track-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  counter-increment: track;
}

.track-list li::before {
  content: counter(track) ".";
  color: var(--color-text-muted);
  margin-right: 15px;
  min-width: 25px;
}

.track-title {
  flex: 1;
}

.track-duration {
  color: var(--color-text-muted);
}

/* Videos Section */
.videos-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.videos-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 200px;
  width: 100%;
}

.video-card .video-embed {
  flex-shrink: 0;
  width: 400px;
  position: relative;
  padding-bottom: 0;
  height: 225px;
}

.video-card .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card .video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .video-card {
    flex-direction: column;
  }

  .video-card .video-embed {
    width: 100%;
  }
}

/* Shows List */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.shows-list.full-list {
  margin-bottom: 0;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: 8px;
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  padding: 10px;
  background: var(--color-accent);
  border-radius: 8px;
  text-align: center;
}

.show-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.show-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.show-date .year {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.show-info {
  flex: 1;
}

.show-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.show-city {
  color: var(--color-text-muted);
}

.show-details {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 5px;
}

/* Shows Sections */
.upcoming-shows,
.past-shows {
  margin-bottom: 60px;
}

.upcoming-shows h2,
.past-shows h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--color-text);
}

.past-shows {
  opacity: 0.7;
}

.past-shows .show-date {
  background: var(--color-bg-alt);
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.9rem;
}

/* Video Gallery */
.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-item {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.video-item .video-embed {
  flex-shrink: 0;
  width: 400px;
  height: 225px;
  padding-bottom: 0;
}

.video-item .video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  flex: 1;
}

@media (max-width: 768px) {
  .video-item {
    flex-direction: column;
  }

  .video-item .video-embed {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
  }
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Bio */
.bio-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
}

.bio-image img {
  width: 100%;
  border-radius: 8px;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.bio-text p {
  margin-bottom: 20px;
}

/* Band Members */
.band-members {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.band-members h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.members-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.member-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
  min-height: 250px;
  align-items: stretch;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-photo {
  flex-shrink: 0;
  width: 250px;
  position: relative;
}

.member-photo a {
  display: block;
  width: 100%;
  height: 100%;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.photo-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.photo-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-text);
}

.photo-toggle.active {
  background: var(--color-accent);
  color: var(--color-text);
}

.member-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-role {
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.member-bio-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-bio {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow: hidden;
}

.translate-link {
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: lowercase;
  text-align: right;
  margin-top: auto;
  padding-top: 10px;
}

.translate-link:hover {
  color: var(--color-accent-hover);
}

/* Single Member Page */
.member-single {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 900px;
  align-items: flex-start;
}

.member-single-photo {
  flex-shrink: 0;
  width: 300px;
}

.member-single-photo img {
  width: 100%;
  border-radius: 8px;
}

.member-single-info {
  display: flex;
  flex-direction: column;
}

.member-single-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.member-single-nav {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .member-single {
    flex-direction: column;
  }

  .member-single-photo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Member card as link */
.member-info h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.member-info h3 a:hover {
  color: var(--color-accent);
}

@media (max-width: 600px) {
  .member-card {
    flex-direction: column;
  }

  .member-photo {
    width: 100%;
    height: 200px;
  }
}

a.member-card:hover {
  color: inherit;
}

.member-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.member-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  width: fit-content;
}

.member-link:hover {
  color: var(--color-accent);
}

.member-link svg {
  flex-shrink: 0;
}

/* Contact */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-email-btn svg {
  flex-shrink: 0;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  padding: 12px 25px;
  background: var(--color-bg-card);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-text);
}

/* Friends */
.friends-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 20px;
  box-sizing: border-box;
}

.friend-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.friend-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  overflow: hidden;
}

.friend-image img {
  max-width: 50%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.friend-header {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.friend-title {
  max-width: 70%;
}

.friend-title h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.friend-title h3 a {
  color: var(--color-text);
}

.friend-title h3 a:hover {
  color: var(--color-text-muted);
}

.friend-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.friend-links {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.friend-links-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.friend-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
  width: fit-content;
}

.friend-link:hover {
  color: var(--color-text);
}

.friend-link svg {
  flex-shrink: 0;
}

.friend-links .btn {
  font-size: 0.8rem;
  padding: 6px 12px;
}

@media (max-width: 480px) {
  .friend-header {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .friend-links-list {
    align-items: center;
  }
}

/* Mailchimp Signup */
.mailchimp-signup {
  padding: 60px 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.mailchimp-signup h2 {
  margin-bottom: 10px;
}

.mailchimp-signup p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.signup-form .form-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background: var(--color-bg-card);
  color: var(--color-text);
}

.signup-form input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.signup-form button {
  padding: 12px 30px;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-form button:hover {
  background: var(--color-accent-hover);
}

/* Footer */
.site-footer {
  padding: 40px 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-accent);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.copyright {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* No Content */
.no-content {
  text-align: center;
  color: var(--color-text-muted);
  padding: 60px 20px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 10px;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 20px 15px;
  z-index: 10;
  transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 10px;
  border-radius: 4px;
}

.lightbox-next {
  right: 10px;
  border-radius: 4px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    padding: 15px 10px;
    font-size: 2rem;
  }

  .lightbox-close {
    font-size: 2.5rem;
    top: 10px;
    right: 10px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .featured-album,
  .album-card,
  .bio-content {
    grid-template-columns: 1fr;
  }

  .featured-album .album-artwork,
  .album-card .album-artwork,
  .bio-image {
    max-width: 300px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .site-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero {
    height: 50vh;
    background-attachment: scroll;
  }

  .show-item {
    flex-wrap: wrap;
  }

  .show-item .btn {
    width: 100%;
    text-align: center;
  }

  .signup-form .form-group {
    flex-direction: column;
  }
}
