@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  color: #f0f8ff;
  text-shadow: 0 0 10px rgba(0, 132, 255, 0.3);
}

.booking-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ccf2ff !important;
  background: radial-gradient(circle, rgba(0,132,255,0.1) 0%, rgba(0,0,0,0.85) 100%);
  border: 2px solid #999;
  border-radius: 12px;
  box-shadow:
    0 0 12px rgba(0,132,255,0.4),
    inset 0 0 5px rgba(255,255,255,0.1),
    0 0 0 3px rgba(192,192,192,0.2); /* outer chrome ring */
  transition: all 0.3s ease;
  text-decoration: none;
}

.book-button-inline {
  margin-top: 3rem;
  text-align: left;
}

.booking-button:hover {
  color: #fff;
  background: radial-gradient(circle, rgba(0,132,255,0.3), rgba(0,0,0,0.9));
  border-color: #00bfff;
  box-shadow:
    0 0 16px rgba(0,132,255,0.7),
    inset 0 0 8px rgba(0,132,255,0.2),
    0 0 0 3px rgba(0,132,255,0.3);
  transform: scale(1.04);
}


.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-align: center;
  color: #f0f8ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px rgba(0,132,255,0.4);
  letter-spacing: 1px;
}


.hero {
  position: relative;
  height: 100vh;
  background: url('trb-band.jpg') center center/contain no-repeat;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .tagline {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: #ccf2ff;
  text-shadow: 0 0 10px rgba(0, 132, 255, 0.4);
  padding: 0 1rem;
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.about-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.about-media img,
.about-media iframe {
  width: 320px;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,132,255,0.3);
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,132,255,0.3);
}

.brag-points {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.brag-points li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.brag-points li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0, 132, 255, 0.4);
}

.contact a {
  color: #00bfff;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
}

footer .social {
  margin-top: 0.5rem;
}

footer .social a {
  color: #3399ff;
  font-size: 1.5rem;
  text-decoration: none;
  margin: 0 0.25rem;
  display: inline-block;
}

.video-thumb-wrapper {
  width: 320px;
  height: 360px; /* 320 image + 40 for title */
  margin-bottom: 1.5rem;
  text-align: center;
}

.video-thumb-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,132,255,0.3);
  text-decoration: none;
}

.video-thumb {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: #ff4d4d;
  text-shadow: 0 0 15px rgba(255, 77, 77, 0.7);
  pointer-events: none;
  z-index: 2;
}

.song-title {
  display: block;
  font-size: 1.1rem;
  color: #ccf2ff;
  text-shadow: 0 0 6px rgba(0,132,255,0.3);
  margin-top: 0.5rem;
}

.tagline-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.tagline-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #3399ff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0,132,255,0.3);
}

.tagline-social a:hover {
  color: #66ccff;
  text-shadow: 0 0 12px rgba(0,132,255,0.5);
}

.tagline-social i {
  color: #3399ff;
}
.center-of-page {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.floating-player {
  width: 300px;
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 14px;
  border: 1px solid #00bfff;
  box-shadow:
    0 0 20px rgba(0, 132, 255, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.floating-caption {
  font-size: 1rem;
  font-weight: bold;
  color: #ccf2ff;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(0, 132, 255, 0.5);
}

.floating-player audio {
  width: 100%;
  height: 35px;
  border-radius: 6px;
}