body {
  margin: 0;
  font-family: 'Arial Black', Arial, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding-bottom: 46px;
}

h1, h2, h3 {
  font-weight: 900;
  letter-spacing: 1px;
}

a {
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 15px;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid #222;
  color: white;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
}

.hamburger {
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.nav-menu {
  position: absolute;
  top: 50px;
  right: 10px;
  background: black;
  display: none;
  flex-direction: column;
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
  color: white;
  padding: 10px;
  text-decoration: none;
}

.nav-menu a:hover {
  background: #222;
}

.hero {
  height: 50vh;
  margin: auto;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 25px;
}

.home {
  background-image: url("photos/home_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  background: rgba(0,0,0,0.7);
  padding: 25px;
  border: 1px solid #333;
  border-radius: 12px;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
    font-size: 14px;
}

.spotify-section {
  padding: 10px 20px;
  text-align: center;
}

.spotify-embed {
  max-width: 500px;
  margin: 0 auto;

  border-radius: 12px;
  overflow: hidden;
}

.shows {
  padding: 20px;
  background-image: url("photos/gig_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

.gig {
  height: 20vh;
  position: relative;
  margin-bottom: 20px;

  background-size: cover;
  background-position: center;

  border-radius: 10px;
  overflow: hidden;

  transition: transform 0.15s ease;
}

.gig:active {
  transform: scale(0.98);
}

.gig-overlay {
  position: absolute;
  inset: 0;

  backdrop-filter: blur(2px);
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4)
  );

  z-index: 1;
}

.gig-content {
  height: 15vh;
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  color: white;
}

.gig-left h3 {
  margin: 0 0 5px 0;
}

.gig-left p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.gig-right a {
  background: white;
  color: black;
  font-weight: bold;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 4px;
}

@media (max-width: 570px) {
  .hero {
    height: 50vh;
  }

  .gig {
    height: 25vh;
  }

  .gig-content {
    height: 15vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gig-right {
    width: 100%;
  }

  .gig-right a {
    display: block;
    width: 70%;
    text-align: center;
    padding: 20px;
    margin-top: 10%;
    margin-left: 10%;
  }
}

.shop {
  padding: 20px;
}

.social-bar {
  z-index: 3;
  position: fixed;
  bottom: 0;
  width: 100%;

  display: flex;
  justify-content: space-around;
  align-items: center;

  background: rgba(0,0,0,0.95);
  border-top: 1px solid #222;

  padding: 6px 4px;
}

.social-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: white;
  text-decoration: none;

  gap: 3px;
  min-width: 60px;
}

.social-bar i {
  font-size: 20px;
}

.social-bar span {
  font-size: 9px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.social-bar a:hover {
  opacity: 0.7;
}

.social-bar a:active {
  transform: scale(0.95);
}

/* ================= BASE SECTION ================= */

.booking-section {
  position: relative;
  padding: 20px;

  background-size: cover;
  background-position: center;
}

/* ================= OVERLAY ================= */

.booking-overlay {
  position: absolute;
  inset: 0;

  backdrop-filter: blur(3px);
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.5)
  );

  z-index: 1;
}

/* ================= CONTENT ================= */

.booking-content {
  position: relative;
  z-index: 2;
}

.booking-content.center {
  text-align: center;
}

/* ================= TEXT ================= */

.booking-quick p {
  margin: 5px 0;
  font-size: 14px;
}

/* ================= TECH ================= */

.tech-item img {
  width: 100%;
  max-width: 500px;
  margin-top: 10px;
  border: 1px solid #222;
  border-radius: 6px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 15px;
  padding: 14px 18px;

  background: white;
  color: black;

  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;

  text-decoration: none;
  border-radius: 8px;

  border: 1px solid #000;
  cursor: pointer;

  transition: all 0.2s ease;
}

.download-btn:hover {
  background: #ddd;
  transform: translateY(-1px);
}

.download-btn:active {
  transform: scale(0.97);
}

/* ================= BUTTON ================= */

.booking-btn {
  display: inline-block;
  margin-top: 15px;

  background: white;
  color: black;

  padding: 12px 16px;
  font-weight: bold;

  text-decoration: none;
  border-radius: 6px;
}

.booking-btn:hover {
  background: #ddd;
  transform: translateY(-1px);
}

.booking-btn:active {
  transform: scale(0.97);
}

/* ================= HISTORY ================= */

.gig-history-item {
  border: 1px solid #222;
  padding: 12px;
  margin-bottom: 12px;
  background: #0f0f0f;
  border-radius: 8px;
}

.gig-history-item p {
  margin: 4px 0;
  font-size: 13px;
}