/* main body and container */

body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-image: url('images/background.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 700px;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

.logo {
  display: block;
  width: 80%;
  max-width: 700px;
  margin: 0 auto 30px;
}

.text-block {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 20px 25px;
  line-height: 1.6;
}

.text-block p {
  margin: 0;
  padding: 0;
}

.text-block p + p {
  margin-top: 1.2em;
}

a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease;
}

a:hover {
  border-color: white;
}

.text-block .mix-embed {
  margin-top: 25px;
}

@media (max-width: 600px) {
  .container {
    padding: 25px 15px;
    max-width: 90%;
  }

  .logo {
    width: 100%;
    max-width: 250px;
  }

  p {
    font-size: 1rem;
  }
}

#upcoming {
  text-align: center;
}

.upcoming-flyer {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 15px;
}

.upcoming-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.upcoming-placeholder:hover {
  border-color: rgba(255, 105, 180, 0.6);
  color: rgba(255, 105, 180, 0.8);
}

/* DJ profile */

.spaceboy-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 1.8em;
  position: relative;
}

.spaceboy-layout .profile-image {
  width: 50%;
  max-width: 350px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.booking-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  background: rgba(255, 105, 180, 0.15);
  border: 2px solid rgba(255, 105, 180, 0.4);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: 10%;
  flex-shrink: 0;
}

.booking-button:hover {
  background: rgba(255, 105, 180, 0.25);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .spaceboy-layout {
    flex-direction: column-reverse;
    align-items: center;
  }

  .booking-button {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-left: 0;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .spaceboy-layout .profile-image {
    width: 100%;
    max-width: none;
  }
}

/* top button bar */

.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 10px;
  gap: 10px;
}

.nav-buttons button {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 8px;
  color: white;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.nav-buttons button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-buttons button.active {
  background: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .nav-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* instagram logo link */

.instagram-link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-bottom: none;
}

.instagram-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
  border-bottom: none;
}

.instagram-logo {
  width: 40px;
  height: 40px;
  display: block;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .instagram-link {
    bottom: 20px;
    right: 20px;
  }

  .instagram-logo {
    width: 32px;
    height: 32px;
    opacity: 0.95;
  }
}

@media (max-width: 480px) {
  .instagram-link {
    bottom: auto;
    top: 20px;
    right: 20px;
  }
}
