* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000078;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 2px,
      transparent 2px,
      transparent 4px
    );
  color: white;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.page {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  text-shadow: 0 0 2px #fff, 0 0 5px #fff;
}

.logo-header {
  background-color: transparent;
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.logo-header img {
  display: block;
  width: 100%;
  max-width: 1000px;
  max-height: 250px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.about-band {
  max-width: 850px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  text-align: center;
  line-height: 1.65;
  font-size: 1.05rem;
}

.about-band h1 {
  margin-bottom: 1rem;
}

.band-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  padding: 2rem 1rem;
}

.band-photo-container img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.photo-credit {
  font-size: 0.85rem;
  color: white;
  margin-top: 0.5rem;
  text-align: center;
  opacity: 0.9;
}

.spotify-embed {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1rem;
  background-color: transparent;
  border-radius: 8px;
}

.contact-form h2 {
  text-align: center;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  border: none;
  border-radius: 4px;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.85rem;
  background-color: white;
  color: #000078;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.contact-form button:hover {
  filter: brightness(0.9);
}

.social-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: transparent;
}

.social-footer img.icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-footer img.icon:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 100px;
  }

  .social-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000078;
    background-image:
      repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.06) 2px,
        transparent 2px,
        transparent 4px
      );
    z-index: 999;
    padding: 1rem 0;
    border-top: 1px solid #ffffff30;
  }
}

@media (max-width: 600px) {
  .logo-header {
    padding-top: 1rem;
  }

  .about-band {
    font-size: 1rem;
  }

  .spotify-embed iframe {
    height: 380px;
  }

  .social-footer {
    gap: 1.1rem;
    padding: 1.5rem 1rem;
  }
}