/* ---------- Fonts ---------- */
@font-face {
  font-family: "Storybook";
  src: url("../fonts/storybook.woff2") format("woff2"),
       url("../fonts/storybook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Work Sans (body font) */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap");

:root{
  --bg:#ffffff;
  --fg:#111111;
  --muted: rgba(17,17,17,.65);
  --border: rgba(17,17,17,.12);
  --max: 980px;

  --font-body: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Storybook", "Work Sans", system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: var(--font-body);
  letter-spacing: 0.1px;
}

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

/* ---------- Header (logo + nav) ---------- */

.site-header{
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo{
  height: 30px;     /* adjust to taste: 26–34px */
  width: auto;
  display: block;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;  /* allows wrapping on small screens */
  justify-content: flex-end;
}

.nav-links a{
  text-decoration: none;
  color: var(--fg);
  font-size: 16px;
  padding: 2px 0;
}

.nav-links a:hover{
  opacity: .7;
}


/* Page title: "Tarias and the _____" */
.page-title{
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .6px;
  margin: 18px 0 18px;
  text-transform: uppercase;
}

/* Home photo */
.home{
  display:grid;
  place-items:center;
  text-align:center;
  padding-top: 16px;
}

.home-photo{
  width: min(520px, 92vw);
  height:auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  display:block;
}

/* Social buttons */
.social-row{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:16px;
  flex-wrap:wrap;
}

.pill{
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg);
  background: transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.pill:hover{
  transform: translateY(-1px);
  background: rgba(17,17,17,.04);
  border-color: rgba(17,17,17,.22);
  text-decoration:none;
}

.footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 16px 50px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}
/* ---------- Discography grid (covers only) ---------- */

.discography-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 16px;
  padding: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.release{
  display: block;
}

.cover{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .15s ease, opacity .15s ease;
}

.release:hover img{
  transform: scale(1.03);
  opacity: .9;
}

/* ---------- Video page ---------- */

.video-grid{
  display:grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}

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

.embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ---------- Booking ---------- */

.form-wrap{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.form-wrap iframe{
  width: 100%;
  height: 1100px; /* adjust later */
  border: 0;
  display: block;
}
/* ---------- EPK ---------- */

.epk-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.epk-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: white;
}

.epk-h{
  margin: 0 0 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .5px;
}

.epk-p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.epk-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(17,17,17,.75);
  font-size: 14px;
  line-height: 1.6;
}
/* ---------- Home layout ---------- */

.home-page .container{ /* Home no longer uses .container */
  padding: 0;
}

.home-main{
  min-height: calc(100vh - 52px); /* approximate header height */
  display: grid;
  grid-template-rows: 1fr auto;
}

.home-hero{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}


.home-page .home-photo{
  width: 100vw;
  height: calc(100vh - 140px);
  object-fit: cover;
  object-position: center 57%;
  display: block;
}




.home-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px 16px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.home-socials{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-credit{
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 520px)
  .home-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px 16px;
  width: 100%;
}
.home-socials{
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-credit{
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
}
/* ---------- Social icons ---------- */

.home-socials.icons{
  gap: 14px;
}

.home-socials.icons a{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: transform .12s ease, opacity .12s ease;
}

.home-socials.icons svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.home-socials.icons a:hover{
  transform: translateY(-1px);
  opacity: .7;
}

/* ---------- EPK Press Photos ---------- */

.press-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.press-grid img{
  width: 100%;
  height: auto;
  display: block;
  background: #f2f2f2;
  transition: opacity .15s ease;
}

.press-grid a:hover img{
  opacity: .85;
}

.epk-download{
  margin-top: 12px;
  font-size: 14px;
}
