* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

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

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
  text-decoration: none;
  color: #000;
}

nav {
  display: flex;
  gap: 70px;
  font-size: 32px;
  font-weight: 900;
}

nav a {
  color: #000;
  text-decoration: none;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 50px 10vw;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
}

.hero img {
  display: block;
  width: 100%;
  max-width: 720px;
}

.hero h1 {
  position: static;
  font-size: 78px;
  line-height: 1.08;
  margin: 20px 0 0;
  font-weight: 900;
  text-align: center;
}

.feature {
  max-width: 280px;
}

.feature img {
  display: block;
  width: 260px;
  max-width: 100%;
}

.feature p {
  font-size: 20px;
  line-height: 1.35;
}

.button {
  display: inline-block;
  border: 1px solid #000;
  padding: 12px 50px;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.socials {
  position: fixed;
  right: 24px;
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 34px;
}

.socials a {
  display: block;
  width: 34px;
  height: 34px;
}

.socials img {
  display: block;
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}

@media (max-width: 800px) {
  header {
    display: block;
  }

  nav {
    margin-top: 30px;
    font-size: 24px;
    gap: 30px;
  }

  .home-layout {
    display: block;
    padding: 30px 20px;
  }

  .hero {
    max-width: 100%;
  }

  .hero h1 {
    position: static;
    font-size: 52px;
    margin-top: 20px;
  }

  .feature {
    margin-top: 40px;
  }

  .socials {
    position: static;
    flex-direction: row;
    padding: 20px;
    width: auto;
  }
}

.music-page {
  padding: 60px 10vw;
}

.release-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.release-card img {
  width: 300px;
  max-width: 100%;
  display: block;
}

.release-card h1 {
  font-size: 56px;
  line-height: 1;
  margin: 0 0 12px;
}

.release-card p {
  font-size: 22px;
  margin-bottom: 24px;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.release-links a {
  border: 1px solid #000;
  padding: 12px 24px;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.release-links a:hover {
  opacity: 0.6;
}

@media (max-width: 800px) {
  .music-page {
    padding: 30px 20px;
  }

  .release-card {
    display: block;
    margin-bottom: 70px;
  }

  .release-card img {
    width: 100%;
    margin-bottom: 24px;
  }

  .release-card h1 {
    font-size: 42px;
  }
}

.shows-page {
  padding: 60px 10vw 80px;
  max-width: 900px;
}

.shows-page h1 {
  font-size: 72px;
  line-height: 1;
  margin: 0 0 60px;
}

.show-card {
  margin-bottom: 50px;
  padding-left: 24px;
  border-left: 3px solid #000;
}

.show-date {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.show-card h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.show-card a,
.booking a {
  color: #000;
  text-decoration: none;
}

.show-card a:hover,
.booking a:hover {
  opacity: 0.6;
}

.show-card p {
  font-size: 20px;
  margin: 0;
}

.booking {
  margin-top: 110px;
}

.booking h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px;
}

.booking p {
  font-size: 20px;
  margin: 0;
}

@media (max-width: 800px) {
.shows-page {
  padding: 60px 10vw 80px;
  max-width: 900px;
  margin: 0 auto;
}

  .shows-page h1 {
    font-size: 52px;
  }

  .show-card {
    padding-left: 18px;
  }

  .show-card h2 {
    font-size: 30px;
  }

  .booking {
    margin-top: 80px;
  }
}

.photo-hover {
  position: relative;
}

.photo-hover img {
  display: block;
  width: 100%;
}

.photo-message {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.photo-message p {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.photo-hover:hover .photo-message {
  opacity: 1;
}
