body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #444;
}

body {
  background-color: #888;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

header {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  align-items: start;
  grid-column: 1 / -1;
}

h1 {
  text-align: center;
  color: #fff;
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  font-family: "Righteous", sans-serif;
  font-style: normal;
  font-size: 122px;
  font-weight: bold;
  margin: 0;
  padding: 2px;
}

h2 {
  color: #fff;
}

/* .multicolor-text {
  background: linear-gradient(to right, #f95725, #95248e, #09c586, #ffc051);
  -webkit-background-clip: text;
  color: transparent;
} */

.social-icons-container {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icons {
  width: 45px;
  height: 40px;
}

.icon-gmail {
  fill: #555;
  transition: fill 0.3s ease;
  padding-right: 10px;
}

.icon-gmail:hover {
  fill: #d93025;
}

.icon-instagram {
  fill: #555;
  stroke: #555;
  stroke-width: 1.46px;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.icon-instagram:hover {
  fill: #f00;
  stroke: #f00;
}

.fb-icon {
  fill: #555;
  transition: fill 0.3s ease;
}

.fb-icon:hover {
  fill: #f00;
}

.write-up {
  padding: 50px 0 50px 0;
}

.write-up p {
  font-size: 18px;
  letter-spacing: 0.2px;
}

.write-up a,
a:visited {
  text-decoration: none;
  color: #e94346;
  font-weight: 600;
  transition: color 0.3s ease;
}

.write-up a:hover {
  color: #fff;
}

a:hover .insta-path {
  fill: #04c989;
  transform: scale(1.04);
}

#facebook-f:hover {
  fill: #73b4f7;
  transform: scale(1.06);
}

a:hover .mail-path {
  fill: #f95725;
  transform: scale(1.04);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 30px;
}

.upcoming-shows {
  grid-column: span 1;
  width: 100%;
}

.upcoming-shows h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.upcoming-shows table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.upcoming-shows th,
.upcoming-shows td {
  padding: 12px;
}

.upcoming-shows th {
  text-align: left;
  font-weight: bold;
}

.upcoming-shows td {
  text-align: left;
}

.upcoming-shows a {
  /* text-decoration: none; */
  color: #fff;
}

.upcoming-shows a:visited {
  color: #fff;
}

.upcoming-shows a:hover {
  color: #e94346;
}

.artist-photo {
  grid-column: span 1;
  width: 100%;
}

.artist-photo img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 10%;
}

.artist-photo:hover {
  transform: scale(1.003);
}

.seperator {
  content: "";
  width: 90%;
  height: 4px;
  background: linear-gradient(
    to right,
    #f95725,
    #95248e,
    #09c586,
    #ffc051,
    #58b5ff,
    #f95725,
    #95248e,
    #09c586,
    #ffc051,
    #58b5ff,
    #f95725
  );
  background-size: 200% 100%;
  margin: 50px auto;
  animation: rainbowWave 6s linear infinite;
}

@keyframes rainbowWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-info h3 {
  font-size: 24px;
  margin: 0;
}

.footer-info p {
  margin: 15px 0;
  font-size: 16px;
}

.footer-info a {
  color: #e94346;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  display: inline-block;
}

.footer-social-link svg {
  width: 35px;
  height: 35px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.footer-social-link svg:hover {
  fill: #e94346;
}

.cromatic-design {
  width: 12%;
  font-size: 12px;
  margin: 0 auto;
}
.chromatic-logo {
  /* margin-top: 5px; */
  width: 60%;
}

.header-seperator {
  margin-top: 20px;
  margin-bottom: 0;
}
