/* ========== Global Reset & Layout ========== */

* {
    box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #111;
  color: #ddd;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

html {
    scroll-behavior: smooth;
}

/* ========== Header / Navigation ========== */

header {
  height: 80px;
  background: #000;
  display: flex;
  align-items: center;
}

/* Full-width nav */
.nav {
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 1.5rem;
  box-sizing: border-box;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  background-color: #000;

  transition: transform 0.3s ease;
}

.nav.hide {
    transform: translateY(-100%);
}

/* Logo link */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo SVG */
.nav-logo svg {
  display: block;
  height: 170px;
  width: auto;
  color: #ddd;
  transform:translateY(-43.5px);
}

.nav-logo svg:hover {
    transform: translateY(-45.5px);
    color: #b30000;
}

.nav-logo svg:active {
    color: #8b0000;
    transform: translateY(-43.5px);
}

/* Nav links list */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;

  margin: 0;
  padding: 0;
}

/* Nav links */
.nav-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-links a:hover {
  color: #b30000;
  transform: translateY(-2px);
}

.nav-links a:active {
    color: #8b0000;
    transform: translateY(0);
}

/* ========== Hero Section (Home Page) ========== */

.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: #ddd;

    padding: 1.5rem 2rem;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.35);
    border-radius: 8px;
}

.hero img {
  width: 110%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
}

.email-signup {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.email-signup input {
    padding: 0.6rem;
    border-radius: 4px;
    border: none;
    width: 220px;
}

.email-signup button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* ========== Home Preview Sections ========== */

.home-section {
  padding: 100px 20px;
  text-align: center;
  background: #111;
}

.home-section.dark {
  background: #0d0d0d;
}

.home-section h2 {
  font-size: 6rem;
  margin-bottom: 15px;
}

.home-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #aaa;
  font-size: 1.5rem;
}

/* Album preview image */
.album-preview img {
  width: 220px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

/* Buttons on home page */
.btn-link {
  display: inline-block;
  padding: 14px 36px;

  background: #8b0000;
  color: #ddd;
  text-decoration: none;

  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.6);

  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-link:hover {
  background: #b30000;
  transform: translateY(-2px);
}

.btn-link:active {
    background: #8b0000;
    transform: translateY(0);
}

/* ========== Home Sections ========== */

.features {
  background: #111;
  padding: 60px 20px;

  display: flex;
  justify-content: center;
  gap: 20px;
}

.features img {
  width: 250px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* ========== Home About Intro ========== */

.home-about {
  background: #111;
  padding: 80px 20px;
}

.home-about-content {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

.home-about-text {
  flex: 1;
}

.home-about-text h2 {
  font-size: 6rem;
  text-align: center;
  margin-bottom: 15px;
}

.home-about-text p {
  color: #bbb;
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.home-about-images {
  flex: 1;
  display: flex;
  gap: 15px;
}

.home-about-images img {
  width: 150%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* ========== Home Music Promo ========== */

.home-music {
  background: #0d0d0d;
  padding: 100px 20px;
}

.music-promo {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Album artwork */
.music-art img {
  width: 500px; /* noticeably larger */
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

/* Text side */
.music-info {
  max-width: 500px;
  text-align: left;
}

.album-title {
  font-size: 6rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.album-desc {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1.5rem;
}

/* Buttons */
.music-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.music-buttons .btn-link {
  display: inline-block;
  padding: 14px 28px;

  background: #8b0000;
  color: #ddd;
  text-decoration: none;

  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.6);

  transition: background 0.3s ease, transform 0.2s ease;
}

.music-buttons .btn-link:hover {
  background: #b30000;
  transform: translateY(-2px);
}

.music-buttons .btn-link:active {
    background: #8b0000;
    transform: translateY(0);
}

/* Secondary button */
.music-buttons .btn-link.secondary {
  background: #222;
}

.music-buttons .btn-link.secondary:hover {
  background: #444;
  transform: translateY(-2px);
}

.music-buttons .btn-link.secondary:active {
    background: #222;
    transform: translateY(0);
}

/* ===== Music Page Layout ===== */

.music-page {
  background: #111;
  padding: 100px 40px;
}

.music-feature {
  max-width: 1100px;
  margin: auto;

  display: flex;
  gap: 60px;
  align-items: center;
}

/* Album art */
.music-art img {
  width: 420px; /* MUCH larger */
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

/* Album info */
.music-info {
  flex: 1;
}

.album-title {
  font-size: 6rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.album-desc {
  color: #aaa;
  font-size: 1.5rem;
  max-width: 500px;
  margin-bottom: 25px;
}

/* Audio preview */
.music-preview {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

/* Buttons */
.music-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Secondary button variation */
.btn-book.secondary {
  background: #222;
}

.btn-book.secondary:hover {
  background: #444;
}

/* More Coming Note */
.music-note {
  background: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
}

.music-note p {
  color: #aaa;
  max-width: 700px;
  margin: auto;
  font-size: 0.95rem;
}

/* ========== Shows Page ========== */

.shows,
.past-shows {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.shows h2,
.past-shows h2 {
  font-size: 6rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* No shows booked */
.no-shows p {
  color: #aaa;
  font-size: 1.5rem;
}

/* Past shows list */
.show-list {
  list-style: none;
  padding: 0;

  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}

.show-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;

  border-bottom: 1px solid #222;
  font-size: 0.95rem;
}

.show-date {
  width: 120px;
  color: #ccc;
}

.show-venue {
  flex: 1;
  font-weight: bold;
}

.show-location {
  color: #999;
}

/* ========== About Page ========== */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;

  background-image: url("images/band-photo-live.jpg"); /* change to your photo */
  background-size: cover;
  background-position: center 35%; /* adjust to taste */
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 20px;
}

/* Dark overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Keep text above overlay */
.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 1;
}

/* Title */
.about-hero h1 {
  font-size: 6rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Subtitle */
.about-hero p {
  font-size: 1.5rem;
  color: #ccc;
  max-width: 700px;
}

.about-section {
  background: #111;
  padding: 80px 20px;
}

.about-section.dark {
  background: #0d0d0d;
}

.about-block {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
  font-size: 6rem;
}

.about-text p {
  color: #bbb;
  line-height: 1.6;
  font-size: 1.25rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ===== About – Performance Photo ===== */

.about-performance {
  width: 100%;
  background: #000;
}

.about-performance img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

/* ===== About – Band Members ===== */

.about-members {
  background: #111;
  padding: 80px 40px;
  text-align: center;
}

.about-members h2 {
  font-size: 6rem;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.member-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.95);
  transition: transform 0.35s ease;
}

.member-card h3 {
  margin: 14px 0 6px;
  font-size: 1.5rem;
  color: #ddd;
  transition: color 0.3s ease;
}

.member-card:hover h3 {
    color: #b30000;
}

.member-card p {
  color: #aaa;
  font-size: 1rem;
}

.member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-6px);
}

.member-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* ========== Book Us CTA ========== */

.book-us {
  background: #0d0d0d;
  padding: 100px 20px;
  text-align: center;
}

.book-us h2 {
  font-size: 6rem;
  margin-bottom: 15px;
}

.book-us p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #aaa;
  font-size: 1.5rem;
}

.btn-book {
  display: inline-block;
  padding: 14px 36px;

  background: #8b0000;
  color: #ddd;
  text-decoration: none;

  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 4px;
  border: none;
  box-shadow: 0 5px 10px rgba(0,0,0,0.6);

  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-book:hover {
  background: #b30000;
  transform: translateY(-2px);
}

.btn-book:active {
    background: #8b0000;
    transform: translateY(0);
}

/* ========== Contact Page ========== */

.contact,
.contact-form {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
    font-size: 6rem;
}

.contact p {
    font-size: 1.5rem;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
}

/* ========== Footer ========== */

footer {
  background: #000;
  padding: 15px;
  text-align: center;
  font-size: 0.85rem;
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: #ddd;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
}

.social-links a:hover svg {
  fill: #b30000;
  transform: translateY(-2px);
}

.social-links a:active svg {
    fill: #8b0000;
    transform: translateY(0);
}

@media (max-width: 768px) {

    /* Remove ugly mobile tap highlight */
    a,
    button {
        -webkit-tap-highlight-color: transparent;
    }

    /* General tap feedback */
    a:active,
    button:active {
        opacity: 0.75;
    }

    /* Nav links tap */
    .nav-links a:active {
        transform: scale(0.95);
        color: #8b0000;
    }

    /* Buttons tap */
    .btn-link:active,
    .btn-book:active {
        transform: translateY(2px) scale(0.97);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    body {
        padding-top: 135px;
    }

    .about-hero {
        padding-top: 80px;
    }

  /* ===== HEADER / NAV ===== */
  header {
    height: auto;
    display: block;
  }

  .nav {
    flex-direction: column;
    align-items: center;

    height: auto;
    padding: 12px 16px;
    padding-top: 0;
    padding-bottom: 8px;
    overflow: hidden;
  }

  .nav.hide {
    transform: translateY(-100%);
  }

  .nav-logo svg {
    height: 64px;
    transform: none;
    margin-top: -6px;
  }

  .nav-logo {
    position: relative;
    top: -20px;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .nav-logo svg {
    height: 115px;
    width: auto;
    display: block;
    margin-bottom: 0;
  }

  .nav-links {
    flex-direction: row;   /* horizontal */
    flex-wrap: wrap;       /* wrap to next line if needed */
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

  .nav-links a {
    font-size: 1rem;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    height: auto;
  }

  .hero img {
    width: 150%;
    height: auto;
    object-fit: contain;
    object-position: 55% 40%; /* removes the weird translateX */
    transform: translateX(-50px);
  }

  .hero-overlay {
    width: 90%;
    max-width: 420px;
    padding: 1.5rem;
  }

  .email-signup input,
  .email-signup button {
    width: 100%;
  }

  /* ===== HEADERS & TITLES ===== */
  .home-section h2,
  .home-about-text h2,
  .shows h2,
  .past-shows h2,
  .book-us h2,
  .contact h2,
  .album-title {
    font-size: 2.4rem;
    padding: 0 16px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
  }

  .home-section p,
  .home-about-text p,
  .shows p,
  .past-shows p,
  .book-us p,
  .contact p,
  .album-title p {
    font-size: 1.5rem;
  }

  /* ===== MUSIC SECTION ===== */
  .music-feature,
  .music-promo {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* reduced gap for mobile */
  }

  .music-info p {
    font-size: 1.5rem;
  }

  .music-info,
  .music-art,
  .music-preview {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .music-info h1, h2 {
    font-size: 2.4rem;
  }

  .music-art img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .music-buttons {
    justify-content: center;
    gap: 12px;
  }

  /* ===== ABOUT PAGE ===== */
  .about-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-block h2 {
    font-size: 2.4rem;
  }

  .about-block p {
    font-size: 1.5rem;
  }

  .about-block.reverse p {
    font-size: 1.5rem;
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }

  .about-hero p {
    font-size: 1.5rem;
  }

  .about-block.reverse {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-hero {
    min-height: auto;
    background-size: contain;
    background-position: center top;
  }

  .about-performance img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-members h2 {
    font-size: 2.4rem;
  }

  .members-grid {
    grid-template-columns: 1fr; /* one column */
    gap: 20px;
    justify-items: center;
}

.member-card img {
    width: 80%; /* responsive width */
    max-width: 300px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

  .member-card h3 {
    font-size: 2.4rem;
  }

  .member-card p {
    font-size: 1.5rem;
  }

  /* ===== SHOWS LIST ===== */
  .show-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  /* ===== HOME / ALBUM PREVIEW ===== */
  .album-preview img {
    width: 160px;
  }

  /* ===== HOME ABOUT IMAGES ===== */
  .home-about-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .home-about-images img {
    width: 100%;
    max-width: 300px;
  }

  .home-about-text {
    text-align: center;
  }

  /* ===== BOOK US & CONTACT ===== */
  .book-us p,
  .contact p {
    font-size: 1.5rem;
    padding: 0 16px;
  }

  .book-us h2,
  .contact h2 {
    font-size: 2.4rem;
  }

  .contact-form form {
    width: 100%;
    padding: 0 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
  }

  /* ===== FOOTER ===== */
  .social-links {
    gap: 12px;
  }

  .social-links svg {
    width: 24px;
    height: 24px;
  }
}
