/* Reset some basic styling */
body, h1, p, ul, li, img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: "Helvetica W01 Light", Helvetica, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Container for content centering */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-right: 110px;
  margin-left: 100px;
}

header .social-icons {
  display: flex;
  gap: 10px;
}

header nav ul {
  display: flex;
  list-style-type: none;
  gap: 35px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #27D3B4; /* Highlight color on hover */
}

main .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  height: 100vh; 
  width: 1200px;
}

/* Overlay text styling */
main .hero .overlay-text {
  font-family: "Raleway", "Helvetica W01 Light", Helvetica, sans-serif;
  font-size: 66px;
  margin-bottom: -284px;
  z-index: 2;
  color: #222; 
  line-height: 1;
  transform: translate(-332px, 401px);
}

main .hero .overlay-text p {
  letter-spacing: 5px;
  background: #FFF;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  padding-top: 5px;
  vertical-align: baseline;
  width: fit-content;
  height: fit-content;
  font-weight: 700;
}

/* Band Name styling */
main .hero .band-name {
  font-family: "Marzo W00 Regular", Helvetica, sans-serif;
  font-size: 33px;
  font-weight: 700;
  position: absolute;
  top: 31%;
  left: 10%;
  z-index: 3; /* Ensures this text is on top of everything */
  color: #222; /* Color similar to the original */
  line-height: 1.2;
  letter-spacing: 6px;
}

main .hero .band-name span {
  display: block; /* Forces each word onto a new line */
}


main .hero img.band-image-large {
  width: 910px;
  height: 685px;
  z-index: 1;
  display: block;
}

main .hero img.band-image-mobile {
  width: 269px; 
  height: 202px;
  display: none;
}


/* Video Grid Styling */
main .video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 980px;
}

.video-grid iframe,
.video-grid video {
  width: 100%;
  max-width: 480px;
}

/* Contact Section Styling */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  gap: 20px;
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  flex: 1;
  font-family: "Raleway", "Helvetica W01 Light", Helvetica, sans-serif;
}

.contact-info h1 {
  font-size: 80px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info ul {
  margin-top: 20px;
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
}

.contact-info ul li + li {
  margin-top: 20px;
}

.contact-image {
  flex: 1;
  max-width: 100%;
}

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

@media (max-width: 768px) {

  main .hero .overlay-text h1 {
    font-size: 2em;
  }

  main .hero .overlay-text p {
    font-size: 1.2em;
  }

  main .video-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}


/* Gallery Section Styling */
.gallery-section {
  margin-top: 10px;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  width: 255px;
  height: 255px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Fullscreen Viewer */
.fullscreen-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.viewer-image {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Review section styling */
.review-hero {
  display: flex;
  position: relative;
  justify-content: flex-end;
  margin: 5px 90px 0 0;
}

.review-hero img {
  width: 786px;
  height: 448px;
  z-index: 1;
  object-fit: contain;
}

.review-hero .overlay-text {
  font-family: "Raleway", "Helvetica W01 Light", Helvetica, sans-serif;
  font-size: 80px;
  position: absolute;
  top: 81%;
  left: 14%;
  z-index: 2; /* Ensures this text is on top of the image */
  color: #222; 
  line-height: 1;
}

.review-hero .overlay-text p {
  letter-spacing: 5px;
  background: #FFF;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  padding-top: 5px;
  vertical-align: baseline;
  width: fit-content;
  height: fit-content;
  font-weight: 700;
}

.review-hero .review-award {
  position: absolute;
  top: 0%;
  left: 14%;
}

/* Reviews iframe styling */
.reviews-iframe {
  margin-right: 66px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

.reviews-iframe iframe {
  border: none;
  width: 786px; /* Adjust to match the width of your content */
  height: 740px;
}

/* Music Section Styling */
.music-section {
  margin-top: 40px;
  padding: 20px;
}

#player-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

#tracklist ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  max-height: 650px;
  overflow-y: auto;
}

#tracklist ul li {
  margin: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  transition: background-color 0.3s ease;
}

#tracklist ul li:hover,
#tracklist ul li.active {
  background-color: #f0f0f0;
  border-radius: 5px;
}

.download-link {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

.download-link:hover {
  text-decoration: underline;
}

audio {
  width: 100%;
  margin-bottom: 20px;
}
