/* Rock/Metal Band Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');




          .control-panel {
            background: rgba(0,0,0,0.9);
            border: 3px solid #0ff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 0 30px #0ff;
          }

          .top-controls { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; }
          .category-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
          .tab-btn { padding: 12px 18px; background: #111; border: 2px solid #0ff; color: #0ff; cursor: pointer; border-radius: 6px; }
          .tab-btn.active { background: #0ff; color: #000; }

          .pattern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 14px;
          }
          .number-btn {
            background: #111;
            border: 3px solid #0ff;
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
          }
          .number-btn:hover {
            transform: translateY(-4px);
            border-color: #f0f;
            box-shadow: 0 0 20px #0ff;
          }
          .led-preview {
            height: 42px;
            border-radius: 6px;
            margin-bottom: 8px;
          }

          .modal { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.95); z-index:9999; align-items:center; justify-content:center; }
          .modal-content { background:#111; border:4px solid #0ff; padding:25px; border-radius:12px; max-width:700px; text-align:center; }
          .color-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(100px,1fr)); gap:12px; margin:20px 0; }
          .color-btn { height:70px; border:3px solid #0ff; border-radius:8px; cursor:pointer; }
          .color-btn:hover { transform:scale(1.1); }

          .status { margin-top:20px; padding:12px; border:2px solid #0f0; border-radius:8px; text-align:center; background:rgba(0,255,0,0.1); }

          .credit {
            text-align: center;
            margin-top: 40px;
            color: #777;
            font-size: 13px;}




:root {
  --bg-black: #0a0a0a;
  --center-bg: #14141f;
  --header-light: #252538;
  --footer-light: #252538;
  --deep-red: #b91c1c;
  --accent-blue: #1e40af;
  --accent-purple: #6d28d9;
  --text-white: #f5f5f5;
  --text-muted: #a1a1aa;
  --border-subtle: #2e2e42;
  --glow-red: rgba(185, 28, 28, 0.4);
}
/* Essential: Makes the text look clickable */
.clickable-text {
  cursor: pointer;
  color: #0066cc; /* Optional: Add link-like color */
  text-decoration: underline; /* Optional: Add underline */
  font-weight: bold;
}

.clickable-text:hover {
  color: #004499; /* Optional: Darken on hover */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden; /* Prevent body scroll */
}

/* Full page container with slight rounded border */
.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--center-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* HEADER - sticks to top */
.site-header {
  flex: 0 0 auto;
  width: 100%;
  background: linear-gradient(to bottom, var(--header-light) 0%, var(--center-bg) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  text-shadow: 0 0 12px var(--glow-red);
  transition: color 0.2s ease;
}

.logo:hover {
  color: var(--deep-red);
}

.logo span {
  color: var(--deep-red);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-desktop a {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-red);
  transition: width 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--deep-red);
}

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

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: linear-gradient(to bottom, var(--header-light), var(--center-bg));
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.nav-mobile.open {
  max-height: 320px;
}

.nav-mobile a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(185, 28, 28, 0.15);
  color: var(--deep-red);
}

/* CENTER BOX - scrollable, 80-95% height */
.center-box {
  flex: 1 1 auto;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--center-bg);
  padding: 2rem 1.5rem;
  /* Subtle scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--deep-red) var(--center-bg);
}

.center-box::-webkit-scrollbar {
  width: 8px;
}

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

.center-box::-webkit-scrollbar-thumb {
  background: var(--deep-red);
  border-radius: 4px;
}

.center-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* FOOTER - sticks to bottom */
.site-footer {
  flex: 0 0 auto;
  width: 100%;
  background: linear-gradient(to top, var(--footer-light) 0%, var(--center-bg) 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

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

.copyright span {
  color: var(--deep-red);
}

/* Typography & Content */
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(4rem, 6vw, 3.2rem);
  color: var(--text-white);
  text-shadow: 0 0 20px var(--glow-red);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(2.6rem, 3vw, 1.9rem);
  color: var(--deep-red);
  margin-top: 2rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--accent-blue);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 400;
}

/* Accent elements */
.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-red), var(--accent-blue));
  margin: 0.75rem auto 1.5rem;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  margin: 0.5rem;
}

.btn-primary {
  background: var(--deep-red);
  color: var(--text-white);
  border: 2px solid var(--deep-red);
}

.btn-primary:hover {
  background: transparent;
  color: var(--deep-red);
  box-shadow: 0 0 15px var(--glow-red);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--text-white);
}

/* Cards / sections */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--deep-red);
  transform: translateY(-3px);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: left;
}

/* Image placeholder */
.band-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--border-subtle);
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .header-inner {
    padding: 0.85rem 1.25rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .center-box {
    padding: 1.5rem 1rem;
  }

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

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0.5rem auto;
  }
}

/* Ensure high contrast and readability */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}
