/* General styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 25px;
}

/* Styles for all hyperlinks */
a {
  color: #8f1212; /* Inherit the color from the parent (normal text color) */
  text-decoration: underline; /* Remove default underline */
  font-size: inherit; /* Inherit the font size from the parent */
  transition: text-decoration 0.3s; /* Add a smooth transition for the underline */
}

/* Hover styles for hyperlinks */
a:hover {
  text-decoration: underline; /* Add underline on hover */
}


/* Header styles */
header {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: auto;
  max-height: 100px;
  max-width: 100%; /* Ensure the image doesn't exceed its container */
}

/* Section styles */
section {
  padding: 20px;
  margin-bottom: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 80px auto;
}

.band-info {
  text-align: center;
}

.band-info img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.announcements h2 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

/* Image grid styles */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.grid-item {
  width: 100%;
  max-width: 400px;
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Image link styles */
.artist-link {
  text-align: center;  
}

.artist-link img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Full-size image overlay */
.full-image-container {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.full-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 40px; /* Increase close button size for better touch usability */
  cursor: pointer;
}

/* Footer styles */
footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  z-index: 999; /* Ensure footer remains on top */
}
