html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body#page {
  background-image: url('images/me_collage_dec_2015.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body#gigs {
  background-color: #3bfff5; /* or any color you want for gigs page */
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
body#music {
  background-image: url('images/photo-roll-6.jpg');
  background-size: 100vw auto;   /* Each tile is 50% of the viewport width */
  background-repeat: repeat;
  background-position: top left;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
body#music nav {
  margin-top: auto;
}
body#music h1 {
  color: #44d726f6;   /* Your desired color */
  font-size: 2.5em;
  text-align: center;
  margin-top: 35px;
}
h1 {
  color: #8b0041;
  font-size: 2.5em;
  text-align: center;
  margin-top: 35px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 30px auto 0 auto;
  max-width: 320px;
  text-align: center;
}
nav ul li {
  margin: 1em 0;
}
nav ul li a {
  color: white;
  font-size: 1.1em;
  padding: 0.55em 1.2em;
  border-radius: 5px;
  background: rgba(0,0,0,0.4);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
nav ul li a:hover {
  background: rgba(0,0,0,0.7);
}
p {
  color: rgb(yellow);
  font-size: 1.1em;
  text-align: center;
  margin-top: 2em;
}
/* Table styles */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2em;
  max-width: 600px;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.5em 1em;
  text-align: left;
}
th {
  background-color: #f4f4f4;
}
tr:nth-child(even) {
  background-color: #fafafa;
}
.flex-schedule {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.flex-schedule table {
  width: 100%;
  max-width: 800px;
  min-width: 320px;
}
.flex-schedule img {
  max-width: 300px;
  height: auto;
  margin-left: 24px;
  border-radius: 8px;
}
.flex-schedule > div {
  margin-left: 16px; /* Adjust gap as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cc06 {
  width: 100%;
  text-align: center;
  display: block;
}
.large-img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
/* Mobile adjustments */
@media (max-width: 600px) {
  h1 { font-size: 1.5em; margin-top: 15px; }
  nav ul { max-width: 100%; font-size: 1em; }
  body#music p {
    font-size: 1em;
    margin: 1em 0;
  }
}
@media (max-width: 900px) {
  .flex-schedule {
    flex-direction: column;
    align-items: center;
  }
  .flex-schedule table {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow-x: auto;
    display: block;
  }
}
.highlight-link {
  background: #ffd90098;         /* Gold background */
  color: #222;                 /* Dark text */
  font-weight: bold;           /* Bold text */
  border: 2px solid #8b0013f8;   /* Dark red border */
  border-radius: 8px;
  padding: 0.7em 1.4em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.highlight-link:hover {
  background: #fffbe6;
  color: #8b0000;
}
.quote {
  margin-top: 200px;
}
.song-list {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 90vw;
}

.song-list a {
  color: #d7263d;   /* Change this to any color you like */
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.song-list a:hover {
  color: #d726a2;        /* Color on hover */
}
#now-playing {
  font-size: 1.5em;
  color: #d726a2;
  font-weight: bold;
  margin-top: 8px;
}
body#page p {
  color: #1a73e8; /* blue */
}
body#page h1 {
  color: #d72644; /* Your desired color */
}
#music-player {
  width: 90%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
.music-desc {
  font-size: 1.4em;
  color: #44d726f6; /* Try this, or pick any color you like */
  text-align: center;
  margin: 0.5em 0;
}