/* ═══════ NAVIGATION (minimal top bar) ═══════ */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

/* Image logo "64" */
.nav-logo {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: scale(1.1);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* ═══════ MOBILE TAB BAR (bottom, app-style) ═══════ */
.mobile-tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 16, 16, 0.97);
  border-top: 1px solid rgba(230, 81, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  justify-content: space-around;
  align-items: center;
  padding: 12px 8px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-tab-bar.tab-hidden {
  transform: translateY(100%);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: rgba(184, 172, 158, 0.85);
  padding: 4px 6px;
  border-radius: 12px;
  transition: color 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.tab-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tab-icon {
  width: 24px;
  height: 24px;
}

.tab-item.active {
  color: var(--fire-orange);
}

.tab-item.active span {
  font-weight: 700;
}

/* ═══════ PILL MENU (RIGHT SIDE - primary nav) ═══════ */
.pill-menu {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: menuSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.pill-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
  text-align: center;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pill-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--deep-red), var(--fire-orange), var(--golden));
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50px;
}

.pill-btn:hover::before {
  left: 0;
}

.pill-btn:hover {
  border-color: rgba(230, 81, 0, 0.6);
  color: var(--bg-dark);
  transform: translateX(-8px) scale(1.02);
  font-weight: 700;
}

/* Active pill state */
.pill-btn.active {
  border-color: rgba(230, 81, 0, 0.3);
  color: var(--fire-orange);
  background: rgba(230, 81, 0, 0.06);
}

.pill-btn.active:hover {
  color: var(--bg-dark);
}

/* Inverted state — over light/orange backgrounds */
.pill-menu.inverted .pill-btn {
  color: var(--bg-dark);
  border-color: rgba(17, 16, 16, 0.2);
}

.pill-menu.inverted .pill-btn.active {
  color: var(--bg-dark);
  border-color: rgba(17, 16, 16, 0.4);
  font-weight: 800;
}

/* ═══════ MARQUEE ═══════ */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  background: var(--bg-section);
  position: relative;
}

.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(to left, var(--bg-section) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-muted);
  transition: all 0.3s;
}

.marquee-item:hover {
  -webkit-text-stroke: 0px;
  color: var(--fire-orange);
}

.marquee-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fire-orange);
  flex-shrink: 0;
}

/* ═══════ STAT CARDS ═══════ */
.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.stat-card:hover {
  border-color: var(--fire-orange);
  transform: translateX(-8px);
  background: linear-gradient(135deg, rgba(230,81,0,0.08) 0%, var(--bg-card) 100%);
}

.stat-number {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'Consolas', monospace;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fire-orange), var(--warm-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  white-space: nowrap;
}

.stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.stat-label strong {
  color: var(--text-primary);
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

/* ═══════ INSTRUMENT CARDS ═══════ */
.instrument-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.instrument-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to top, var(--deep-red), transparent);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.instrument-card:hover::before {
  height: 100%;
}

.instrument-card:hover {
  border-color: var(--burning-orange);
  transform: translateY(-8px);
}

.instrument-icon {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}

.instrument-card:hover .instrument-icon {
  transform: scale(1.2);
}

.instrument-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.instrument-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.instrument-card:hover .instrument-desc {
  color: var(--silver);
}

/* ═══════ CTA BANNER (reusable) ═══════ */
.cta-banner {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--deep-red) 0%, var(--burning-orange) 50%, var(--golden) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
  opacity: 0.08;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(17, 16, 16, 0.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-orange);
  background: var(--bg-dark);
  border: none;
  padding: 18px 48px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.cta-dark-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* ═══════ FOOTER ═══════ */
footer {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-left {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heart {
  color: var(--fire-orange);
}

.footer-right {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.footer-right a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.footer-right a:hover {
  color: var(--fire-orange);
  text-decoration-color: var(--fire-orange);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.footer-socials a:hover {
  color: var(--fire-orange);
  text-decoration-color: var(--fire-orange);
}

/* ═══════ GDPR CONSENT BANNER ═══════ */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 24, 23, 0.97);
  border-top: 1px solid rgba(230, 81, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 40px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gdpr-banner.visible {
  transform: translateY(0);
}

.gdpr-banner.hiding {
  transform: translateY(100%);
}

.gdpr-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.gdpr-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

.gdpr-text strong {
  color: var(--text-primary);
}

.gdpr-link {
  color: var(--fire-orange);
  text-decoration: underline;
  text-decoration-color: rgba(230, 81, 0, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.gdpr-link:hover {
  color: var(--warm-gold);
  text-decoration-color: var(--warm-gold);
}

.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.gdpr-accept {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: linear-gradient(90deg, var(--fire-orange), var(--golden));
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.gdpr-accept:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(230, 81, 0, 0.3);
}

.gdpr-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.gdpr-more:hover {
  color: var(--fire-orange);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .nav-fixed { padding: 16px 20px; }
  .pill-menu { display: none; }
  .mobile-tab-bar { display: flex; }
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-bottom: 100px; /* space for tab bar */
  }

  /* GDPR banner sits above the tab bar on mobile */
  .gdpr-banner { padding: 16px 20px; bottom: 64px; }
  .gdpr-content { flex-direction: column; gap: 12px; text-align: center; }
  .gdpr-actions { width: 100%; justify-content: center; }
  .gdpr-text { font-size: 12px; }
}
