/* Ensure the entire page has a black background */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: sans-serif;
  color: white;
  text-align: center;
}

/* Main container to center and limit width */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1em;
}

/* Top Navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav li {
  text-align: center;
}

.main-nav a {
  display: block;
  color: #f2f2f2;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  padding: 0.5rem 0;
  letter-spacing: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover for all links */
.main-nav a:hover {
  background-color: #11a760;
  color: #fff;
}

/* Special styling for social media icons */
.main-nav li.social a {
  font-size: 1.3rem;        /* slightly larger icons */
  padding: 0.4rem 0;
  text-transform: none;     /* no uppercase for icons */
}

.main-nav li.social a:hover {
  background: none;         /* no background hover for icons */
  color: #11a760;
}

/* highlight active nav link */
.main-nav a.active {
  background-color: #f04;
  color: #fff;
}

/* Band logo */
.logo {
  width: 30%;
  max-width: 250px;
  height: auto;
  margin-top: 1em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Youtube video effects */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Social icon bar (old image-based icons, currently unused but keeping just in case) */
.socials {
  margin: 2em 0;
}

/* Remove default link outlines and borders */
a {
  text-decoration: none;
  border: none;
  outline: none;
}

a:focus,
a:active {
  outline: none;
  border: none;
}

/* Social media icons (old image version) */
.icon {
  width: 36px;
  margin: 0 10px;
  vertical-align: middle;
  border: none;
  outline: none;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.3);
}

/* Copyright footer */
.footer {
  font-size: 12px;
  color: gray;
  margin-top: 2em;
}

/* ========================= */
/* NEW / UPDATED PAGE STYLES */
/* ========================= */

/* generic inner page section styling */
.page-section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #eee;
  text-align: center;
}

/* page title at top of each content page ("Bio", etc.) */
.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #f04;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* story text block under the title */
.band-story {
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  color: #ddd;
}

.band-story p {
  margin-bottom: 1rem;
}

/* promo photo + caption block */
.band-photo-block {
  text-align: center;
  margin: 0 auto 2rem auto;
  max-width: 900px;
}

/* responsive promo image */
.band-photo {
  width: 100%;
  height: auto;
  max-width: 900px;
  border: 2px solid #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

/* caption under band photo */
.lineup-caption {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.5;
  margin-top: 1rem;
}

/* If you have headings inside sections later (not the main title),
   this keeps them styled consistently */
.page-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid #f04;
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
}

/* Gigs list styling */
#gigs ul {
  list-style: none;       /* removes the dots */
  padding: 0;             /* removes the left indent */
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

#gigs li {
  font-size: 1rem;
  color: #ddd;
  margin: 0.5rem 0;
  line-height: 1.4;
}

/* Responsive styles for mobile */
@media screen and (max-width: 600px) {
  .logo {
    width: 50%;
  }

  .icon {
    width: 28px;
    margin: 0 6px;
  }

  .main-video {
    width: 100%;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .band-story {
    font-size: 0.95rem;
  }

  .lineup-caption {
    font-size: 0.85rem;
  }
}

