/* ------------------------------
   Base layout
   ------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Page fade-in on load */
body {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

body.page-loaded {
  opacity: 1;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: #f5f3ee;
  scroll-behavior: smooth; /* smooth auto-scroll */
}

body {
  line-height: 1.5;
   font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}


/* ------------------------------
   Navigation
   ------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {  
  font-size: 1.25rem;  /* default ~20px */
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}


.nav-links a {
 color: #c8b591;
  text-decoration: none;
  font-size: 1.1rem;     /* slightly larger (≈17–18px) */
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  color: #ffde9a;      /* lighter gold on hover */
  text-decoration: underline;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #f7f7f7;
}

/* ------------------------------
   Hero / Home
   ------------------------------ */

.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7f7f7;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  overflow: hidden;
  z-index: 0;  /* was -2 */
}

/* Background image fallback (if video fails) */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/front_page.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;   /* was -2 */
}

/* Background video itself */
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;   /* was -1 */
}

/* Dark overlay for text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent),
              rgba(0, 0, 0, 0.6);
  z-index: 2;   /* was 0 */
}

.hero-content {
  padding: 6rem 1.5rem 3rem;
  max-width: 640px;
  position: relative;
  z-index: 3;   /* was 1 */
}
 
.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  font-weight: 300;
}

/* ------------------------------
   Sections
   ------------------------------ */

.section {
  padding: 5rem 1.5rem 4rem;
  min-height: 80vh;   /* each section roughly 80% of the viewport height */
}
.section {
  padding: 5rem 1.5rem 4rem;
  min-height: 80vh;
  scroll-margin-top: 80px; /* so anchor scroll stops nicely below navbar */
}


.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.7rem;
  margin: 0 0 1rem;
  color: #c8b591;      /* brass gold for headings */
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.75rem;
  color: #aaa;
   font-size: 1rem;
}

.section-light {
  background: #1a1a1a;  /* charcoal */
  color: #f5f3ee;
}

.section-dark {
  background: #000000;   /* pure black */
  color: #f5f3ee;
}



/* About */

.about-quote {
  font-style: italic;
  color: #777;
  font-size: 1rem;
}

.about-quote span {
  font-style: normal;
  font-size: 0.9rem;
  color: #999;
}

/* ------------------------------
   Listen / Player
   ------------------------------ */

.player-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.player-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#player-cover {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  background: #222;
}

.player-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.player-title {
  font-weight: 600;
}

.player-subtitle {
  font-size: 0.95rem;
  color: #bbb;
}

#audio-player {
  width: 100%;
}

/* Track list */

.track-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.track-item {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.track-item .track-title {
  flex: 1;
}

.track-item .track-length {
  font-size: 0.9rem;
  color: #999;
}

.track-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.track-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ------------------------------
   Media grid
   ------------------------------ */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.media-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.media-item figcaption {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.media-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.media-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* ------------------------------
   Contact form
   ------------------------------ */

.contact-form {
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.form-row input,
.form-row textarea {
  border-radius: 6px;
  border: 1px solid #333;
  padding: 0.65rem 0.75rem;
  background: #090b0e;
  color: #f6f6f6;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #e0a94f;
  border-color: transparent;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  background: #e0a94f;
  color: #111;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #f0bf6a;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ------------------------------
   Footer
   ------------------------------ */

.site-footer {
  background: #050608;
  padding: 1.5rem 1.5rem 1.75rem;
  color: #777;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.85rem;
}

/* ------------------------------
   Responsive
   ------------------------------ */

@media (max-width: 768px) {

  .nav {
    position: relative; /* so the dropdown is positioned under this */
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0.75rem 1.25rem 1rem;
    list-style: none;

    background: rgba(5, 6, 8, 0.97);
    display: none;          /* <-- hide completely by default */
    z-index: 999;
  }

  .nav-links.open {
    display: flex;          /* <-- only show when JS adds .open */
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding-top: 4rem;
  }

  .player-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 5.5rem;
  }
 .nav-brand {
    font-size: 1.05rem;
  }
  #player-cover {
    width: 64px;
    height: 64px;
  }
}


.card-block, .media-item {
  background: #333333;
  color: #f5f3ee;
}


.btn-primary {
  background-color: #57343c;
  border-color: #57343c;
}
.btn-primary:hover {
  background-color: #7b4a59;
  border-color: #7b4a59;
}

/* Use a clean, uniform font */
html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

/* Each section scrolls nicely under the fixed nav */
.section {
  scroll-margin-top: 80px;
}

/* Gigs section background different from Media/Contact */
.gigs-section {
  background: #080808; /* slightly different from pure black & charcoal */
}

/* Gigs table styling */
.gigs-table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
}

.gigs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.gigs-table th,
.gigs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

.gigs-table thead th {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  color: #c8b591; /* warm accent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/* charcoal over black feel */
.gigs-table tbody tr:nth-child(odd) {
  background: #141414;
}
.gigs-table tbody tr:nth-child(even) {
  background: #101010;
}

.gigs-table tbody tr:hover {
  background: #1f1a12; /* subtle warm hover */
  transition: background 0.18s ease-out;
}

