﻿/* Enjoyus - single-page band site
   ------------------------------------------------------------
   This is intentionally plain HTML/CSS/JS so it's easy to edit
   and host anywhere.
*/

:root{
  --bg: #0b0f14;
  --surface: #121826;
  --surface-2: #0f1723;
  --text: #e8eef8;
  --muted: #a9b3c6;

  --accent: #18c56e;   /* green inspired by the logo */
  --accent-2: #0ea5e9; /* subtle blue for contrast */
  --danger: #ff4d4d;

  --shadow: 0 16px 44px rgba(0,0,0,.30);
  --radius: 14px;

  --max: 1100px;
  --header-h: 74px;

  --hero-image: url("assets/photos/hero.jpg");
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a{ color: inherit; }
a:hover{ opacity: .95; }

.nowrap{ white-space: nowrap; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: .5rem .75rem;
  border-radius: .5rem;
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 20, .68);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  position: relative;
  min-height: var(--header-h);
  padding: .75rem 0;
  padding-left: clamp(180px, 26vw, 360px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.brand{
  position: absolute;
  top: .35rem;
  left: 0;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img{
  width: clamp(180px, 26vw, 360px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}

/* Nav */
.site-nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  flex-wrap: wrap;
  text-align: right;
}
.site-nav a{
  text-decoration: none;
  font-weight: 600;
  color: rgba(232,238,248,.92);
  opacity: .92;
  padding: .15rem 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover{
  opacity: 1;
  border-bottom-color: rgba(232,238,248,.35);
}

@media (max-width: 760px){
  :root{
    --header-h: 68px;
  }

  .header-inner{
    padding-left: clamp(130px, 40vw, 220px);
  }

  .brand img{
    width: clamp(130px, 40vw, 220px);
  }

  .site-nav{
    flex-wrap: nowrap;
    gap: .75rem;
  }

  .site-nav a{
    font-size: .95rem;
  }

  .site-nav .nav-booking{
    display: none;
  }
}

/* Sections */
.section{
  padding: 4.5rem 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#about.section{
  padding-top: 50px;
}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

h2{
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  letter-spacing: -.02em;
  margin: 0 0 1.2rem 0;
}
h3{
  margin: 0 0 .75rem 0;
  letter-spacing: -.01em;
}
.lead{
  font-size: 1.08rem;
  color: rgba(232,238,248,.95);
  max-width: 70ch;
}

.muted{ color: var(--muted); }
.small{ font-size: .95rem; }

/* Hero */
.hero{
  position: relative;
  min-height: clamp(420px, 62vh, 680px);
  display: grid;
  place-items: end center;
  padding: 2rem 0 1.25rem 0;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center calc(50% + 50px);
  filter: saturate(1.02) contrast(1.03);
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,.22), rgba(11,15,20,.78) 56%, rgba(11,15,20,.96));
}
.hero-inner{
  position: relative;
  z-index: 1;
}
.hero-content{
  max-width: 64ch;
  margin-top: 0;
}
.hero-logo{
  display: none;
}
.hero-tagline{
  margin: 0 0 1.1rem 0;
  max-width: 60ch;
  font-weight: 600;
  color: rgba(232,238,248,.95);
}
.hero-bullets{
  margin: 0 0 1.1rem 1.1rem;
  padding: 0;
}
.hero-bullets li{
  margin: .45rem 0;
}
.hero-links{
  margin: 0;
}
.hero-links a{
  text-decoration: none;
  border-bottom: 1px solid rgba(232,238,248,.35);
}
.hero-links a:hover{
  border-bottom-color: rgba(232,238,248,.6);
}

/* Hero framing overrides by device size (must come after base .hero-bg) */
@media (max-width: 1024px){
  .hero-bg{
    background-position: center calc(50% - 100px);
  }
}

@media (max-width: 760px){
  .hero-bg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -110px;
  }
}

/* Layout helpers */
.split{
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Cards / panels */
.panel{
  background: rgba(18, 24, 38, .60);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.photo-card{
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img{
  width: 100%;
  height: auto;
}
.photo-card figcaption{
  padding: .75rem .9rem;
  font-size: .95rem;
  color: rgba(232,238,248,.9);
}

/* Lists */
.checklist, .setlist{
  margin: .25rem 0 0 0;
  padding-left: 1.2rem;
}
.checklist li{
  margin: .45rem 0;
}
.setlist{
  columns: 2;
  column-gap: 1.5rem;
}
@media (max-width: 620px){
  .setlist{ columns: 1; }
}


/* Simple bullet lists */
.bullets{
  margin: .75rem 0 0 1.1rem;
  padding-left: 1rem;
}
.bullets li{
  margin: .35rem 0;
  break-inside: avoid;
}
.bullets--cols{
  columns: 2;
  column-gap: 1.6rem;
}
@media (max-width: 740px){
  .bullets--cols{ columns: 1; }
}

.subhead{
  margin-top: 1.25rem;
}

/* Media embeds */
.media-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.embed-card{
  background: rgba(18, 24, 38, .58);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.youtube-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
@media (max-width: 900px){
  .youtube-list{ grid-template-columns: 1fr; }
}

.youtube-item{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,.22);
}

.youtube-item iframe{
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.soundcloud-list{
  display: grid;
  gap: .8rem;
  margin-top: .5rem;
}

.soundcloud-item{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: rgba(0,0,0,.16);
  padding: .45rem;
}

.soundcloud-item iframe{
  display: block;
  width: 100%;
  border: 0;
}

.soundcloud-meta{
  margin-top: .35rem;
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
}

.soundcloud-meta a{
  color: #cccccc;
  text-decoration: none;
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.25rem;
}
@media (max-width: 900px){
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
}
.gallery-item{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.gallery-item img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .2s ease;
}
.gallery-item:hover img{
  transform: scale(1.03);
}

/* Footer */
.footer{
  padding: 2.5rem 0 3.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.footer-inner{
  display: grid;
  gap: .35rem;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.78);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 100;
}
.lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img{
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  background: rgba(255,255,255,.06);
}
.lightbox-close{
  position: fixed;
  top: 14px;
  right: 16px;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  color: rgba(232,238,248,.92);
  padding: .2rem .35rem;
}
.lightbox-close:hover{
  opacity: .75;
}

.placeholder-text{
  color: rgba(232,238,248,.95);
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.22);
  padding: .1rem .4rem;
  border-radius: .5rem;
}




