/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY / GLOBAL
========================= */
body {
  background: #030303;
  color: #d7d7d7;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

a {
  color: #c20000;
  text-decoration: none;
}

a:hover {
  color: #ff2b2b;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
}

h1,
h2,
h3,
.nav-links a,
.button {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================
   HERO / SLIDESHOW (UPGRADED)
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Blurred background */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(50px) brightness(0.40);
  transform: scale(1.1);
  z-index: 0;
}

/* Main image */
.slide img {
  position: relative;
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  z-index: 1;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.navbar,
.hero-content {
  position: relative;
  z-index: 2;
}

/* =========================
   NAVIGATION
========================= */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #3a0000;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.08);
}

.logo a {
  display: inline-block;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 1rem;
  color: #e0e0e0;
}

.nav-links a.active {
  color: #ff2b2b;
  border-bottom: 1px solid #ff2b2b;
  padding-bottom: 3px;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 20px 100px;
}

.hero-logo {
  max-width: 550px;
  width: 90%;
  animation: pulse 6s infinite ease-in-out;

  filter:
    drop-shadow(0 0 8px rgba(255, 0, 0, 0.6))
    drop-shadow(0 0 18px rgba(255, 0, 0, 0.5))
    drop-shadow(0 0 35px rgba(255, 0, 0, 0.35));
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.hero-content h1 {
  font-size: 4.5rem;
  letter-spacing: 8px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 16px rgba(255, 0, 0, 0.4);
}

.tagline {
  font-size: 1.2rem;
  color: #c8c8c8;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #8b0000;
  color: #f5f5f5;
  background: linear-gradient(to bottom, #1b0000, #090000);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.08);
  transition: 0.3s;
}

.button:hover {
  background: #8b0000;
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.35);
}

/* =========================
   MAIN LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =========================
   CARDS
========================= */
.card {
  background: linear-gradient(to bottom, #0a0a0a, #050505);
  border: 1px solid #2f0000;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.07);
}

.card h2 {
  color: #ffffff;
  margin-bottom: 15px;
  border-left: 4px solid #8b0000;
  padding-left: 12px;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.25);
}

.card h3 {
  color: #f0f0f0;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 12px;
}

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

.shop-card {
  padding: 20px;
  overflow: hidden;
}

.shop-frame {
  width: 100%;
  height: 1400px;
  border: none;
  background: #000;
  display: block;
}

/* =========================
   ABOUT PAGE PHOTO
========================= */
.band-photo-card {
  overflow: hidden;
  padding-top: 10px;
}

.band-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #2a0000;
  background: #050505;
  box-shadow: 
    0 0 18px rgba(255, 0, 0, 0.08),
    inset 0 0 25px rgba(0, 0, 0, 0.6);
}

.band-photo {
  display: block;
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.band-photo-frame:hover .band-photo {
  transform: scale(1.02);
  filter: brightness(1.04) contrast(1.04);
}

/* =========================
   MUSIC PAGE
========================= */
.music-grid {
  align-items: start;
}

.music-embed-card {
  padding: 10px;
}

.spotify-embed {
  display: block;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #111111;
}

/* =========================
   DISCOGRAPHY PANEL
========================= */
.discography-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

.discography-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to bottom, #0b0b0b, #050505);
  border: 1px solid #2a0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.discography-item:hover {
  transform: translateY(-2px);
  border-color: #8b0000;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.18);
  background: linear-gradient(to bottom, #120000, #070707);
}

.discography-item img {
  display: block;
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  flex: 0 0 100px;
  object-fit: cover;
  border: 1px solid #2a0000;
  margin: 0;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.discography-item:hover img {
  transform: scale(1.05);
  border-color: #8b0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.22);
  filter: brightness(1.06) contrast(1.05);
}

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

.discography-info h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #ffffff;
}

.discography-info p {
  margin: 0;
  font-size: 0.88rem;
  color: #aaaaaa;
  letter-spacing: 0.5px;
}

.discography-item:hover .discography-info h3 {
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.18);
}

/* =========================
   STREAMING LINKS
========================= */
.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.streaming-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background: #0a0a0a;
  border: 1px solid #2a0000;
  text-decoration: none;
  color: #e0e0e0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.streaming-links a:hover {
  background: #120000;
  border-color: #8b0000;
  transform: translateX(3px);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.12);
}

.streaming-links a img {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.streaming-links span {
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #e0e0e0;
}

.music-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #2a0000;
}

.music-note p {
  margin: 0;
  color: #999999;
  font-size: 0.9rem;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-intro-card {
  margin-bottom: 20px;
}

.contact-intro {
  color: #cfcfcf;
  max-width: 800px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-form label {
  font-size: 0.85rem;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: #0a0a0a;
  border: 1px solid #2a0000;
  color: #fff;
  padding: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8b0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.12);
}

.contact-form button {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(to bottom, #1b0000, #090000);
  border: 1px solid #8b0000;
  color: #fff;
  cursor: pointer;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.contact-form button:hover {
  background: #8b0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

/* =========================
   SOCIAL SECTION
========================= */
.social-text {
  margin-bottom: 16px;
  color: #b8b8b8;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #0a0a0a;
  border: 1px solid #2a0000;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
  background: #120000;
  border-color: #8b0000;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.16);
}

.social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* =========================
   COUNTER
========================= */
.counter-label {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter {
  text-align: center;
  margin: 15px 0;
}

.counter img {
  border: 1px solid #2a0000;
  background: #000;
  padding: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  filter: contrast(120%);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #2a0000;
  color: #888;
  margin-top: 40px;
  background: #050505;
}

/* =========================
   SUB PAGES
========================= */
.sub-header {
  background: linear-gradient(to bottom, #120000, #050505);
  padding-bottom: 40px;
}

.sub-header h1 {
  text-align: center;
  padding-top: 50px;
  font-size: 3rem;
  letter-spacing: 5px;
  color: #f0f0f0;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}

/* =========================
   TABLES / LISTS
========================= */
.show-table {
  width: 100%;
  border-collapse: collapse;
}

.show-table th,
.show-table td {
  border: 1px solid #2a0000;
  padding: 12px;
  text-align: left;
}

.show-table th {
  background: #190000;
  color: #ffffff;
}

.custom-list {
  margin-left: 20px;
  padding-left: 10px;
}

blockquote {
  font-style: italic;
  color: #bbbbbb;
  border-left: 4px solid #8b0000;
  padding-left: 15px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .logo img {
    max-height: 55px;
  }

  .hero-content {
    padding: 140px 20px 80px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

  .tagline {
    font-size: 1rem;
  }

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

  .sub-header h1 {
    font-size: 2.2rem;
  }
  
    .discography-item {
    align-items: flex-start;
  }

  .discography-item img {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    flex: 0 0 72px;
  }

  .streaming-links a {
    padding: 10px;
  }

  .streaming-links span {
    font-size: 0.9rem;
  }
}