:root {
  --white: #ffffff;
  --text: #e6e8ee;
  --gold: #d4af37;
}

/* FONT */
@font-face {
  font-family: 'Arizonia';
  src: url("fonts/Arizonia-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* BASE RESET */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #000;
  color: var(--text);
  text-align: center;
}

/* BACKGROUND IMAGE LAYER */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/nashville_pic.jpg") center center / cover no-repeat;
  opacity: 0.18;
  z-index: -1;
}

/* HERO */
.hero {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 20px 20px;
}

.hero-title {
  font-family: 'Arizonia', cursive;
  color: #fff;
  font-size: 5.0rem;
  line-height: 1;
  margin: 0;
  text-shadow: 0 3px 10px #000;
}

.hero-subtitle {
  font-family: 'Arizonia', cursive;
  color: #fff;
  font-size: 3.0rem;
  margin: 10px 0 20px;
  text-shadow: 0 3px 10px #000;
}

/* MAIN LAYOUT (FIXED BALANCE) */
.band-side-layout {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 50px;
  align-items: start;
  padding: 0 25px;
}

/* SIDE COLUMNS */
.side-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* SIDE IMAGES */
.side-column img {
  width: 320px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 0 14px rgba(0,0,0,.9);
}

/* CENTER STORY (WIDER + CLEANER) */
.center-story {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 34px;
  background: rgba(0,0,0,.55);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 0 25px rgba(0,0,0,.8);
}

/* STORY TEXT */
.center-story h2 {
  font-family: 'Arizonia', cursive;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #fff;
}

.center-story p {
  font-size: 1rem;
  line-height: 1.7;
}

/* LINKS */
.bio-text-link,
.bio-text-link:visited,
.bio-text-link:hover,
.bio-text-link:active {
  font-family: 'Arizonia', cursive;
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 12px;
}

/* HERO TAGLINE */
.hero-tagline {
  margin: 24px auto 10px;
  max-width: 900px;
}

.hero-tagline p {
  font-family: 'Arizonia', cursive;
  color: #fff;
  font-size: 1.8rem;
  margin: 4px 0;
  text-shadow: 0 3px 10px #000;
}

/* NAV */
nav {
  width: 100%;
  padding: 18px 10px;
  text-align: center;
}

nav a,
nav a:visited,
nav a:hover,
nav a:active {
  font-family: 'Arizonia', cursive;
  color: var(--gold);
  text-decoration: none;
  font-size: 2.0rem;
  margin: 0 12px;
}

/* FOOTER */
footer {
  font-family: 'Arizonia', cursive;
  color: var(--text);
  padding: 15px 10px 25px;
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 850px) {
  .band-side-layout {
    display: block;
    padding: 0 15px;
  }

  .side-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px auto;
  }

  .side-column img {
    width: 180px;
  }

  .center-story {
    max-width: 95%;
    padding: 18px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}