/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Header ────────────────────────────────────────────── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  position: relative;
  z-index: 1001;
}

.logo { flex-shrink: 0; }

.logo img {
  height: clamp(42px, 7vw, 82px);
  width: auto;
  display: block;
  position: relative;
  /*top: -4px;*/
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.main-nav a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      160deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.2) 50%,
      rgba(0,0,0,0.7) 100%
    ),
    url('media/Livewire-2026_1920w.jpg') center -10% / cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 600px) and (orientation: portrait) {
  .hero {
    background:
      linear-gradient(
        160deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.7) 100%
      ),
      url('media/Livewire-2026_1920w.jpg') center center / cover no-repeat;
  }
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 90px;
}

.hero-text {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 800px;
  animation: heroFadeUp 0.9s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 .accent {
  color: rgba(255,255,255,0.5);
}

.hero p {
  margin-top: 28px;
  max-width: 580px;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  animation: heroFadeUp 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.buttons {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(255,255,255,0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
}

/* Hero scroll hint */


/* ─── Sections ──────────────────────────────────────────── */
section {
  padding: 40px 0;
}

.section-dark {
  background: #0a0a0a;
}

.section-title-small {
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 28px;
}

.section-lead {
  /*max-width: 680px;*/
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

/* ─── About Grid ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-grid p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ─── Stats Cards ───────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 24px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.card:hover,
.gig:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.stat-card {
  animation: fadeUp 0.5s calc(var(--i, 0) * 0.07s) both;
  animation-play-state: paused;
}

.revealed .stat-card {
  animation-play-state: running;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 6px;
  font-size: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* ─── Members ───────────────────────────────────────────── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.member {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.6s both;
  animation-play-state: paused;
}

.reveal.revealed .member {
  animation-play-state: running;
}

.member:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.member-img-wrap {
  position: relative;
  overflow: hidden;
}

.member-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.member:hover .member-img-wrap img {
  transform: scale(1.04);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}

.member-content {
  padding: 20px 22px 24px;
}

.member h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  line-height: 1.1;
}

.member-role {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.member p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ─── Repertoire ────────────────────────────────────────── */
.repertoire-intro {
  width: 100%;
  margin-bottom: 36px;
  padding: 28px 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
}

.repertoire-intro span {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.repertoire-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.repertoire-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.song-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  transform: translateX(4px);
}

.song-item strong {
  font-weight: 600;
  font-size: 1.1rem;
}

.song-artist {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── Gigs ──────────────────────────────────────────────── */
.gigs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.gig {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 28px 32px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gig-date-block {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 32px;
}

.gig-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gig-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.gig-venue {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.gig-city {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 6px;
}

.gig-details {
  margin-top: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
}

.gig-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 16px;
}

/* ─── Contact ───────────────────────────────────────────── */
.contact-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  padding: 48px;
}

.contact-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
}

.contact-value {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

/* ─── Logo Section ──────────────────────────────────────── */
.logo-section {
  padding: 20px 0 10px;
  background: #000;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  height: clamp(140px, 14vw, 340px);
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.logo-box img:hover {
  opacity: 1;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  padding: 24px 0 48px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #000;
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ────────────────────────────────────────── */

/* ─── Tablet (max-width ≤ 900px) ───────────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-width: 200px;
    padding: 20px;
    background: rgba(8, 8, 8, 0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    z-index: 1000;
    backdrop-filter: blur(16px);
  }

  .main-nav.active { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .repertoire-list { grid-template-columns: 1fr; }

  .gig {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .gig-badge { display: none; }

  .section-lead     { font-size: 0.95rem; }
  .gig-day          { font-size: 2.2rem;  }
  .gig-venue        { font-size: 1.25rem; }
  .stat-number      { font-size: 1.6rem;  }
  .repertoire-intro { font-size: 0.95rem; }
  .hero p           { font-size: 1rem;    }
  .about-grid p     { font-size: 1rem;    }
  .member p         { font-size: 0.95rem; }
}

/* ─── Mobile Portrait (max-width ≤ 700px) ───────────────────────────────────── */
@media (max-width: 700px) {
  .container    { width: min(100% - 28px, 1100px); }
  .stats        { grid-template-columns: 1fr 1fr; }
  .contact-box  { padding: 28px 22px; }
  .members-grid { grid-template-columns: 1fr; gap: 14px; }

  .repertoire-column:last-child { display: none; }

  .gig {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gig-date-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-bottom: 16px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
}

/* ─── Mobile Landscape(max-width ≤ 900px 
  and max-height ≤ 500px 
  and orientation: landscape) ───────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  header        { padding-top: 14px; }
  .hero h1      { font-size: clamp(2rem, 6vw, 3rem); }
  .hero p       { margin-top: 14px; }
  .buttons      { margin-top: 18px; }
  section       { padding: 50px 0; }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .stats        { grid-template-columns: repeat(3, 1fr); }
  .repertoire-column:last-child { display: none; }
  .gig-day      { font-size: 2rem; }
  .gig-venue    { font-size: 1.3rem; }
}