/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-narrow {
  max-width: 720px;
}

/* ===== Hero Banner ===== */
.hero-banner {
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
    url("https://cdn.prod.website-files.com/6700a3d4dc8550a44ba43988/6704af07bba68093db3bc30f_Jingle%20Bots%20band%204k.jpg");
  background-position: 0 0, 30% 60%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 540px;
  margin-left: 40px;
  margin-right: 40px;
}

.hero-banner.hero-about {
  background-image: linear-gradient(rgba(0,0,0,0.57), #222),
    url("https://cdn.prod.website-files.com/6700a3d4dc8550a44ba43988/6704af07bba68093db3bc30f_Jingle%20Bots%20band%204k.jpg");
  background-position: 0 0, 30% 53%;
  min-height: 340px;
}

.hero-banner.hero-contact {
  min-height: 450px;
}

/* ===== Navigation ===== */
.navbar {
  background-color: transparent;
  padding-top: 28px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 20px;
  position: relative;
}

.nav-link:hover {
  color: #ccc;
}

.nav-link.active {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Logo Section ===== */
.hero {
  padding: 20px 0 32px;
  text-align: center;
}

.hero-logo {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(231, 76, 60, 0.15));
}

/* ===== Streaming Platforms ===== */
.platforms {
  padding: 32px 0 12px;
}

.platform-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-link {
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.75;
}

.platform-link:hover {
  transform: scale(1.1);
  opacity: 1;
}

.platform-icon {
  height: 44px;
  width: auto;
}

/* ===== Album Sections ===== */
.albums-section {
  padding: 40px 0;
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.album-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #141414;
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ===== Tribute Section ===== */
.tribute-section {
  padding: 48px 0;
  text-align: center;
}

.tribute-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #888;
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 64px 0;
  text-align: center;
}

.cta-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #e74c3c;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.cta-inline {
  margin-top: 40px;
  text-align: center;
}

/* ===== Social Section ===== */
.social-section {
  padding: 32px 0 48px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.social-link {
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}

.social-link:hover {
  transform: scale(1.15);
  opacity: 1;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #888;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-credit {
  font-size: 0.8rem;
  color: #555;
}

/* ===== Page Content (About / Contact) ===== */
.page-content {
  padding: 80px 0 60px;
  min-height: 60vh;
}

.page-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 24px;
  line-height: 1.7;
}

.page-content p {
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===== Contact Email Box ===== */
.contact-email-box {
  margin-top: 40px;
  padding: 32px;
  background: #141414;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.contact-email-box p {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}

.email-link {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e74c3c;
  transition: color 0.25s ease;
}

.email-link:hover {
  color: #ff6b5a;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .albums-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .hero-banner {
    min-height: 520px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: auto;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 8px 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-banner {
    min-height: 420px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-banner.hero-about {
    min-height: 230px;
  }

  .hero-banner.hero-contact {
    min-height: 290px;
  }

  .hero-logo {
    width: 200px;
    height: 200px;
  }

  .albums-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1.4rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .platform-icon {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
      url("https://cdn.prod.website-files.com/6700a3d4dc8550a44ba43988/6704af3fbba68093db3bdf5d_Jingle%20Bots%20band%20hires%20mobile.jpg");
    background-position: 0 0, 50%;
    background-size: auto, 100%;
    min-height: 340px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-banner.hero-about {
    background-image: linear-gradient(rgba(0,0,0,0.57), #222),
      url("https://cdn.prod.website-files.com/6700a3d4dc8550a44ba43988/6704af3fbba68093db3bdf5d_Jingle%20Bots%20band%20hires%20mobile.jpg");
    background-size: auto, 700px;
    min-height: 170px;
  }

  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-logo {
    width: 160px;
    height: 160px;
  }

  .hero {
    padding: 40px 0 10px;
  }

  .platform-links {
    gap: 14px;
  }

  .platform-icon {
    height: 30px;
  }

  .social-links {
    gap: 20px;
  }
}
