* {
  box-sizing: border-box;
}



body {
  margin: 0;
  font-family: 'Signika', Arial, sans-serif;
  font-weight: 300;
  color: #E6DCC8;
  background: #000100;
}




h1, h2, h3 {
  font-family: 'Signika', Arial, sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  margin: 0 0 8px;
}

.tickets,
.band,
.contact,
.merch {
  min-height: calc(100vh - 49px);
}

.merch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




.merchsoon {
  font-family: 'Signika', Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #E2C079;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 16px 0 0;
}


/* nav */

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 1, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230, 220, 200, 0.14);
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
}




.navlinks a {
  color: #E6DCC8;
  opacity: 0.72;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navlinks a:hover {
  opacity: 1;
  color: #E2C079;
}

/* home button */
.navhome img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}



.navhome:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* about dropdown */
.navdropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navdropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(4px);
  
  
  background: rgba(0, 1, 0, 0.96);
  border: 1px solid rgba(230, 220, 200, 0.18);
  padding: 8px 0;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
}

.navdropdown-menu a {
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
}








.navdropdown:hover .navdropdown-menu,
.navdropdown:focus-within .navdropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}



.navbrand {
  justify-self: center;
  color: #E2C079;
  text-decoration: none;
  
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-12px);
}

.navsocial {
  display: flex;
  gap: 16px;
  justify-self: end;
}



.navsocial a {
  color: #E6DCC8;
  opacity: 0.7;
}

.navsocial a:hover {
  opacity: 1;
  color: #E2C079;
}

.navsocial svg {
  width: 19px;
  height: 19px;
  display: block;
}



/* moon page */

.landing {
  
  
  --moon-shift: -1.5%;
  background: #000100;
  width: 100%;
  min-height: calc(100vh - 49px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 40px 16px;
}




.moonhint {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #E6DCC8;
  opacity: 0.7;
}





.landing .moonwrap {
  position: relative;
  width: min(80vmin, 620px);
  aspect-ratio: 960 / 955;
  transform: translateX(var(--moon-shift));
}

.landing .moonimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.landing .mare {
  position: absolute;
  inset: 0;
  
  display: block;
  pointer-events: none;
  text-decoration: none;
}

.landing .mare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  
  border: none;
  opacity: 0.85;
  filter: brightness(0.88) drop-shadow(0 0 3px rgba(226, 192, 121, 0.35));
  transition: filter 0.15s ease, opacity 0.15s ease;
  animation: marePulse 15s ease-in-out infinite;
}


.landing .mare::after {
  content: "";
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
}

.landing .mare:hover img {
  opacity: 1 !important;
  filter: brightness(1.5) drop-shadow(0 0 5px rgba(226, 192, 121, 0.6)) !important;
  animation-play-state: paused;
}



.landing .mare span {
  
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: 'Signika', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  
  
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 0 3px #000, 0 1px 2px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  opacity: 0;
  
  
  
  transition: opacity 0.15s ease;
  pointer-events: none;
  animation: mareLabelPulse 15s ease-in-out infinite;
}

.landing .mare:hover span {
  
  opacity: 1 !important;
  animation-play-state: paused;
}

@keyframes marePulse {
  0%, 1%    { opacity: 0.85; filter: brightness(0.88) drop-shadow(0 0 3px rgba(226, 192, 121, 0.35)); }
  7%, 12%   { opacity: 1;    filter: brightness(1.5)  drop-shadow(0 0 5px rgba(226, 192, 121, 0.6)); }
  19%, 100% { opacity: 0.85; filter: brightness(0.88) drop-shadow(0 0 3px rgba(226, 192, 121, 0.35)); }
}

@keyframes mareLabelPulse {
  0%, 1%    { opacity: 0; }
  7%, 12%   { opacity: 1; }
  19%, 100% { opacity: 0; }
}




.landing .mare-gigs    img, .landing .mare-gigs    span { animation-delay: 0s; }
.landing .mare-listen  img, .landing .mare-listen  span { animation-delay: 3s; }
.landing .mare-about   img, .landing .mare-about   span { animation-delay: 6s; }
.landing .mare-merch   img, .landing .mare-merch   span { animation-delay: 9s; }
.landing .mare-contact img, .landing .mare-contact span { animation-delay: 12s; }



.landing .mare-gigs::after    { left: 48.85%; top: 25.13%; width: 13.33%; height: 11.62%; }
.landing .mare-listen::after  { left: 41.46%; top: 55.50%; width: 12.19%; height: 14.66%; }
.landing .mare-about::after   { left: 23.44%; top: 36.34%; width: 10.21%; height: 12.36%; }
.landing .mare-merch::after   { left: 65.42%; top: 43.56%; width: 10.10%; height: 11.31%; }
.landing .mare-contact::after { left: 70.42%; top: 26.18%; width: 6.46%;  height: 6.81%; }

.landing .mare-gigs    span { left: 55.20%; top: 31.18%; }
.landing .mare-listen  span { left: 47.61%; top: 63.97%; }
.landing .mare-about   span { left: 28.06%; top: 42.35%; }
.landing .mare-merch   span { left: 70.30%; top: 49.53%; }
.landing .mare-contact span { left: 73.62%; top: 29.55%; font-size: 12px; }

@media (prefers-reduced-motion: reduce) {
  .landing .mare img,
  .landing .mare span { animation: none; }
}


/* listen page */

.home {
  background-image:
    linear-gradient(rgba(0, 1, 0, 0.35), rgba(0, 1, 0, 0.78)),
    url("full_band_bendigohotel.png");
  
  
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 49px);
  display: flex;
  
  
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 18px;
  padding: 250px 16px;
}

.home h1 {
  font-size: 64px;
  margin: 0;
}

.nowout {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #E2C079;
}


/* gigs */

.tickets {
  background: #2A1512;
  text-align: center;
  padding: 60px;
}

.giglist {
  max-width: 800px;
  margin: 40px auto 0;
}



.gigrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(199, 151, 60, 0.4);
  text-align: left;
}

.gigdate {
  width: 120px;
  font-weight: 600;
  color: #E2C079;
}

.gigvenue {
  flex: 1;
}


/* about page */

.band {
  background: #14130F;
  text-align: center;
  padding: 60px;
}



.bandgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto;
}

.member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #C7973C;
  display: block;
}

.membername {
  margin: 12px 0 4px;
}

.bandbuttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}







/* merch */

.merch {
  background: #1C1410;
  text-align: center;
  padding: 60px;
}

.merchgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}


.merchitem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merchitem img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid #C7973C;
  display: block;
  margin-bottom: 12px;
}



.merchfree {
  margin: 0;
  
  color: #E2C079;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}


/* contact */
.contact {
  background: #191B1E;
  text-align: center;
  padding: 60px;
}

.contactrow {
  display: flex;
  justify-content: center;
  
  align-items: flex-start;
  gap: 48px;
  
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contactnav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.contactnav .btn {
  text-align: center;
}

.contactmain {
  max-width: 460px;
}



.logo {
  
  
  width: 62px;
  height: auto;
  display: block;
  margin: 0 0 20px;
}

.contactbiz {
  margin: 0;
  color: #E6DCC8;
}

.contactbiz a {
  
  
  color: #E2C079;
}

.followlabel {
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E2C079;
}

.contactsocial {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contactsocial a {
  color: #E6DCC8;
  opacity: 0.75;
}

.contactsocial a:hover {
  opacity: 1;
  color: #E2C079;
}

.contactsocial svg {
  width: 22px;
  
  height: 22px;
  display: block;
}

.contactphoto img {
  width: 100%;
  max-width: 460px;
  border: 1px solid #C7973C;
  display: block;
}



/* buttons */
.btn {
  display: inline-block;
  background: #C7973C;
  
  
  color: #000100;
  padding: 10px 22px;
  text-decoration: none;
  
  
  
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
}

.btn:hover {
  background: #E2C079;
}


/* phone */

@media (max-width: 760px) {

  nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 16px;
  }

  .navbrand {
    order: -1;
  }

  .navlinks, .navsocial {
    justify-self: center;
  }

  .navlinks {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navdropdown-menu {
    min-width: 120px;
  }

  .navlinks a {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .landing {
    min-height: calc(100vh - 96px);
  }

  .home {
    min-height: calc(100vh - 96px);
  }

  .landing .moonwrap {
    width: 88vw;
  }

  .home h1 {
    font-size: 40px;
  }

  .gigrow {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .gigdate {
    width: auto;
  }



  .bandgrid {
    grid-template-columns: 1fr 1fr;
  }

  .merchgrid {
    grid-template-columns: 1fr 1fr;
  }



  .contactrow {
    flex-direction: column;
    align-items: center;
    
    text-align: center;
  }

  .contactmain {
    text-align: center;
  }



  .contactsocial {
    justify-content: center;
  }
}










/* our story */

.storymodal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 1, 0, 0.85);
}




.storymodal:target {
  display: flex;
}

.storyclose {
  position: absolute;
  top: 20px;
  
  
  
  right: 28px;
  color: #E6DCC8;
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
}

.storyclose:hover {
  color: #E2C079;
}




.storycard {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 820px;
  background: #14130F;
  
  border: 1px solid #C7973C;
  padding: 28px;
  text-align: left;
}

.storycard img {
  width: 300px;
  object-fit: cover;
  border: 1px solid #C7973C;
  display: block;
}





.storytext h3 {
  margin: 0 0 12px;
}




.storytext p {
  margin: 0;
  line-height: 1.6;
}






/* media */
.media-page {
  background: #14130F;
  text-align: center;
  padding: 60px;
}

.mediahead {
  margin: 48px 0 20px;
  color: #E2C079;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
}




.mediagrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.mediagrid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid #C7973C;
  display: block;
}



.videogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.videoitem {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid #C7973C;
}




.videoitem iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}




@media (max-width: 760px) {
  .storycard {
    flex-direction: column;
  }
  .storycard img {
    width: 100%;
    height: 240px;
  }
  .mediagrid {
    grid-template-columns: 1fr 1fr;
  }
  .videogrid {
    grid-template-columns: 1fr;
  }
}



/* phones cant hover so just show the shadows */
@media (hover: none) {
  .landing .mare img {
    opacity: 1;
    filter: brightness(1.5) drop-shadow(0 0 5px rgba(226, 192, 121, 0.6));
    animation: none;
  }
  .landing .mare span {
    opacity: 1;
    animation: none;
  }
}





/* posters */

.posters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}


.poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
}



.poster img {
  width: 100%;
  height: auto;
  border: 1px solid #C7973C;
  display: block;
}

.posterdate {
  margin: 18px 0 4px;
  font-weight: 600;
  font-size: 18px;
  color: #E2C079;
}






.postervenue {
  margin: 0 0 16px;
  color: #E6DCC8;
}