/* Reset and Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
}

:root {
  --button-color: #ffffff;
  --button-hover-color: #00ff00;
  --button-border-color: #ffffff;
  --button-hover-border-color: #00ff00;
  --transition-speed-1: 0.9s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: "Lato", Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.5;
}

.body-bg-image {
  position: fixed;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  height: 100%;
}

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

a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* Header */
.site-header {
  background-color: #000000;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.logo {
  max-width: 470px;
  margin: 0 auto;
  display: block;
}

.social-networks {
  display: flex;
  justify-content: center;
  gap: 1rem;
  order: 2;
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .header-social-networks {
    position: absolute;
    top: 1rem;
    right: 2rem;
    justify-content: flex-end;
    order: 0;
    padding-top: 0;
  }
}

.main-nav {
  text-align: center;
  padding: 1rem;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav a {
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.1em;
}

.main-nav a:not(:last-child)::after {
  content: "•";
  margin: 0 0.75rem;
  color: #ffffff;
  opacity: 0.5;
}

.social-icon {
  width: 33px;
  height: 33px;
  filter: brightness(3);
  transition: filter 0.3s;
}

.social-icon:hover {
  filter: brightness(5);
}

/* Main Content */
main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0rem;
  position: relative;
  gap: 1rem;
}

@media screen and (min-wdith: 768px) {
  .hero-content {
    padding: 2rem;
  }
}

.hero-content__eyebrow {
  font-size: clamp(2rem, 1.4vw, 3.75rem);
}

.hero-content__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 100%;
  margin: unset;
}

.hero-content__subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  margin: 1rem 0;
  font-weight: 400;
}

.hero-content a {
  text-decoration: underline;
}

.quote {
  font-style: italic;
  margin: 1rem 0;
}

.heart-icon {
  width: 50px;
  height: 50px;
  margin: 1.5rem auto 0;
  opacity: 0.8;
}

/* Newsletter Section */
.newsletter {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 8px;
}

.newsletter h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.newsletter form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter label {
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
}

.newsletter input[type="submit"] {
  background-color: var(--button-color);
  color: #000000;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter input[type="submit"]:hover {
  background-color: var(--button-hover-color);
}

.newsletter h5 {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Releases Section */

.releases__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .releases__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .releases__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.release {
  text-align: center;
  gap: 1rem;
  display: grid;
  place-items: start center;
  padding: 0rem;
}

.release.full-width {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .release.full-width {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

.release h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

/* Videos Section */
.videos {
  margin-bottom: 3rem;
}
.videos__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .videos__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.videos__item {
  width: 100%;
  iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
  }
}

.section-heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shows Section */
.shows {
  margin-bottom: 3rem;
}

.shows__container {
  text-align: center;
}

.shows__container p {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Contact Section */
.contact {
  margin-bottom: 3rem;
}

.contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-nav {
  margin-bottom: 1.5rem;
}

.footer-nav a {
  margin: 0 1rem;
}

.footer-nav a:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  color: #ffffff;
  opacity: 0.5;
}

.copyright {
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* CSS */
.button-6 {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family:
    system-ui,
    -apple-system,
    system-ui,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

@view-transition {
  navigation: auto;
}

/* Customize the default animation behavior */

::view-transition-group(root) {
  animation-duration: 0.4s;
}

/* Create a custom animation */

@keyframes move-out {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes move-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Apply the custom animation to the old and new page states */

::view-transition-old(root) {
  animation: 0.4s ease-in both fade-out;
}

::view-transition-new(root) {
  animation: 0.4s ease-in both fade-in;
}

.animate-on-entry-header,
.animate-on-entry-main {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-speed-1) ease-out,
    transform var(--transition-speed-1) ease-out;
}

.trigger-entry-animation {
  opacity: 1;
  transform: translateY(0);
}

/* CSS */
.button-47 {
  align-items: center;
  background: #ffffff;
  border: 0 solid #e2e8f0;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  color: #1a202c;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  height: 56px;
  justify-content: center;
  line-height: 24px;
  overflow-wrap: break-word;
  padding: 24px;
  text-decoration: none;
  width: auto;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
