/* =====================
   RESET
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =====================
   BASE
===================== */
body {
  background: #000;
  color: #eee;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  line-height: 1.6;
}

/* Headings – Option A */
h1, h2, h3, nav a {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* =====================
   TOP RED BAR
===================== */
.top-bar {
  height: 4px;
  background: #e10600;
}

/* =====================
   HEADER / NAV (full width)
===================== */
nav {
  padding: 15px 0;
  min-height: 1px;
}

/* =====================
   NAV INNER (constrained + grid)
===================== */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* match .container */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* =====================
   LOGO
===================== */
.logo {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
}

.logo img {
  max-height: 80px;
  width: auto;
}

/* =====================
   NAVIGATION
===================== */
nav ul {
  grid-column: 3;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

/* Active + hover */
nav a:hover,
nav a.active {
  border-bottom: 2px solid #e10600;
  color: #e10600;
}

/* =====================
   MAIN CONTAINER
===================== */
.container {
  max-width: 1200px;
  margin: 5px auto; /* minimal vertical gap */
  padding: 0 10px;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  display: flex;
  gap: 30px;
  background: #111;
  padding: 15px 20px; /* top/bottom tighter */
  border: 1px solid #333;
}

.hero-image img {
  max-width: 100%;
  border: 1px solid #444;
}

/* =====================
   HERO TEXT
===================== */
.hero-text {
  max-width: 500px;
}

.hero-text p {
  margin-bottom: 15px;
}

/* =====================
   SOCIAL LINKS
===================== */
.social a {
  margin-right: 10px;
  color: #e10600;
  text-decoration: none;
}

/* =====================
   LOWER SECTION
===================== */
.lower {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

/* =====================
   PANEL (Reusable component)
===================== */
.panel {
  flex: 1;
  background: #111;
  padding: 20px;
  border: 1px solid #333;
}

.panel h3 {
  color: #e10600;
  border-bottom: 3px solid #e10600;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* =====================
   VIDEO (Responsive YouTube)
===================== */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================
   GIGS BOX
===================== */
.placeholder {
  color: #aaa;
}

/* =====================
   BUTTONS
===================== */
.button {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 14px;
  background: #e10600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 900px) {
  .nav-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero,
  .lower {
    flex-direction: column;
  }

  .hero-text {
    max-width: 100%;
  }
}

/* =====================
   GIG LIST GRID STYLE – FIXED FOR TOWN
===================== */
.gig-list-text {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

.gig-list-text .gig-row {
  display: grid;
  grid-template-columns: 120px 1fr auto; /* date | venue | town */
  gap: 15px;
  padding: 6px 10px;
  border-bottom: 1px solid #333;
  align-items: center;
  max-width: 700px; /* constrain width */
}

.gig-list-text .gig-date {
  font-weight: bold;
  color: #e10600;
}

.gig-list-text .gig-venue {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gig-list-text .gig-town {
  color: #ccc;
  text-align: left;
  white-space: nowrap;
}

/* Striping */
.gig-list-text .gig-row:nth-child(odd) { background: #111; }
.gig-list-text .gig-row:nth-child(even) { background: #1a1a1a; }

/* Hover highlight */
.gig-list-text .gig-row:hover { background: #222; }

/* Last row border */
.gig-list-text .gig-row:last-child { border-bottom: none; }

/* Mobile stacking */
@media (max-width: 600px) {
  .gig-list-text .gig-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px 0;
  }

  .gig-list-text .gig-venue,
  .gig-list-text .gig-town {
    text-align: left;
  }
}

/* =====================
   GIG LIST PANEL
===================== */
.gig-list-wrapper {
  background: #111;
  border: 1px solid #333; 
  padding: 20px;
  max-width: 750px;
  margin: 0 auto 40px;
  border-radius: 6px;
}

.gig-list-wrapper h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* =====================
   YOUTUBE VIDEO GALLERY
===================== */
.youtube-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
}

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-gallery iframe {
  width: 280px;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 400px) {
  .video-gallery iframe {
    width: 100%;
    height: 180px;
  }
}

/* =====================
   SET LIST PANEL
===================== */
.setlist-wrapper {
  background: #111;
  border: 1px solid #333;
  padding: 20px;
  max-width: 750px;
  margin: 0 auto 40px;
  border-radius: 6px;
}

.setlist-wrapper h3 {
  text-align: center;
  color: #e10600;
  border-bottom: 3px solid #e10600; /* red line under heading */
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

/* =====================
   SET LIST GRID – 3 COLUMN
===================== */
.setlist-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 15px;
  color: #eee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;  /* smaller font */
  line-height: 1.4;
}

.setlist-text span {
  display: block;
  margin-bottom: 8px;
}

/* Mobile – stack columns */
@media (max-width: 700px) {
  .setlist-text {
    grid-template-columns: 1fr;
  }
}
