/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-image: url("IMG_1379.jpeg");
  background-position: center;
  background-size: cover;
  font-size: 16px;
}

/* Header Styles */
header {
  text-align: center;
  padding: 20px 0;
}

h1 {
  margin-bottom: 5px;   /* tighten space below Family Underground */
}

h2 {
  margin-top: 5px;      /* tighten space above Music & Video */
  text-align: center;
  color: black;
  font-size: 2em;
}

/* Navigation Styles */
nav {
  text-align: center;
}

nav a {
  display: block;              /* makes links stack vertically */
  margin-bottom: 12px;         /* adds space between links */
  text-decoration: none;
  font-size: 20px;
}

/* Hover State for Navigation Links */
nav a:hover {
  color: #2301ff;
}

/* Content Area Styles */
.content-container {
  background-color: white;
  max-width: 900px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 20px;
}

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Show List */
.show-list ul {
  list-style-type: none;
  padding: 0;
}

.show-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

.show-list li a {
  color: #007BFF;
  text-decoration: none;
}

/* Button Styles */
.button {
  background-color: #2301ff;
  color: white;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  margin: 20px auto;
  font-size: 18px;
}

.button:hover {
  background-color: #1100aa;
}

/* Video Container */
.video-container {
  text-align: center;
  margin: 20px auto;
}

.video-container iframe {
  display: block;
  margin: 0 auto;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {

  body {
    background-size: contain;
  }

  nav a {
    display: block;
    padding: 12px 0;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

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

  .button {
    width: 80%;
  }
}