/* ============================================
   ODD MAN OUT — STYLESHEET
   Aesthetic: Raw gig-poster brutalism meets
   high-end editorial rock photography.
   Dark, textured, bold condensed type.
============================================ */

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --mid:      #1c1c1c;
  --panel:    #181818;
  --border:   rgba(255,255,255,0.08);
  --white:    #f0ece4;
  --cream:    #e8e0d0;
  --gold:     #2a7fc8;
  --gold-lt:  #3a9fe6;
  --red:      #c0392b;
  --gray:     #888880;
  --gray-lt:  #aaa9a0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --radius: 2px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,153,42,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================
   SECTION SCAFFOLDING
============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: var(--section-pad) 0; }

.section-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-title.centered { text-align: center; }
.section-intro {
  text-align: center;
  color: var(--gray-lt);
  max-width: 560px;
  margin: -1.5rem auto 3rem;
  font-size: 1.05rem;
}

/* ============================================
   HERO
============================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.45) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.75) 80%,
    rgba(10,10,10,1) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 15rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--gold); }
.hero-tagline {
  font-family: var(--font-cond);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-social {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-lt);
  transition: color 0.2s;
}
.hero-social a svg { width: 18px; height: 18px; }
.hero-social a:hover { color: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   ABOUT
============================================ */
#about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--gray-lt);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative; z-index: 1;
  filter: saturate(0.8);
}
.about-image-frame {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.4;
}

/* ============================================
   MEMBERS
============================================ */
#members { background: var(--black); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}
.member-card {
  background: var(--panel);
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.member-card:hover { transform: translateY(-4px); }
.member-photo {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.75) brightness(0.9);
  transition: transform 0.5s, filter 0.5s;
}
.member-card:hover .member-photo img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(1);
}
.member-info {
  padding: 1.5rem;
}
.member-instrument {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.member-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.member-info p {
  font-size: 0.9rem;
  color: var(--gray-lt);
  line-height: 1.65;
}
.member-info a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.member-info a:hover { color: var(--gold-lt); }

/* ============================================
   SHOWS / CALENDAR
============================================ */
#shows {
  background: var(--mid);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(42,127,200,0.06) 0%, transparent 70%);
}

/* Loading */
.calendar-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  color: var(--gray);
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
}
.loading-dots { display: flex; gap: 6px; }
.loading-dots span {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotBounce 1.2s infinite ease-in-out;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Events list */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 3rem;
}
.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: var(--panel);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  transition: background 0.2s, transform 0.2s;
  animation: eventFadeIn 0.4s ease both;
}
@keyframes eventFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.event-item:hover { background: #202020; transform: translateX(4px); }

.event-date-block {
  text-align: center;
}
.event-date-month {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--white);
}
.event-date-year {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  color: var(--gray);
}

.event-details {}
.event-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.event-meta {
  font-size: 0.88rem;
  color: var(--gray-lt);
}
.event-location { font-size: 0.85rem; color: var(--gray); }

.event-action .btn { font-size: 0.78rem; padding: 0.55rem 1.2rem; }

/* Empty state */
.events-empty {
  text-align: center;
  padding: 3rem;
  color: var(--gray);
}
.events-empty-sub { font-size: 0.9rem; margin-top: 0.5rem; }
.events-empty a { color: var(--gold); }

.shows-cta {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  color: var(--gray-lt);
  font-family: var(--font-cond);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* ============================================
   PRESS KIT
============================================ */
#press { background: var(--dark); }
.press-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mid);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.press-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.press-list {
  margin-bottom: 2rem;
}
.press-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray-lt);
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}
.press-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}

/* ============================================
   CONTACT
============================================ */
#contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--cream);
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--gold); }
.contact-social {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-social a:hover { color: var(--gold-lt); }

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.req { color: var(--gold); }
.form-group input,
.form-group textarea {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-note {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #6dbd6d;
  text-align: center;
  padding: 0.5rem;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.footer-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { order: -1; max-width: 480px; margin: 0 auto; }
  .press-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-social { left: 1rem; }
  .scroll-hint { display: none; }

  .members-grid { grid-template-columns: 1fr; }
  .event-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
  .event-action { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(4rem, 22vw, 7rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .event-item { grid-template-columns: 70px 1fr; padding: 1rem; gap: 0.75rem; }
}

/* ============================================
   LIVE BANNER
============================================ */
.live-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--red);
  animation: bannerSlideIn 0.4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes bannerSlideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.live-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.live-banner-left {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.live-dot-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.live-dot {
  width: 9px; height: 9px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.5); }
}
.live-venue-text {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}
.live-request-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  color: var(--red);
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.live-request-btn:hover { background: #f0ece4; transform: scale(1.03); }
.live-request-btn:active { transform: scale(.97); }
.live-btn-icon { font-size: 1rem; }

@media (max-width: 540px) {
  .live-banner-inner { padding: .55rem 1rem; }
  .live-venue-text   { font-size: .9rem; }
  .live-request-btn  { padding: .4rem .85rem; font-size: .82rem; }
  .live-btn-icon     { display: none; }
}
