/* The Intaglios EPK — black & white, 1950s / honky-tonk inspired
   Edit safely: search for "CUSTOMIZE" in HTML files.
*/

:root{
  --bg:#ffffff;
  --fg:#0b0b0b;
  --muted:#333333;
  --rule:#151515;
  --maxw: 980px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  letter-spacing: 0.2px;
}

a{ color: var(--fg); text-decoration: underline; }
a:hover{ text-decoration-thickness: 2px; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  border-bottom: 3px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 18px;
}

.logo{
  width: 280px;
  max-width: 52vw;
  height: auto;
  display:block;
}

.flier {
    width: 100%; /* Take up 100% of parent's width */
    height: 100%; /* Take up 100% of parent's height */
    box-sizing: border-box; /* Crucial: Includes padding/border in 100% */
}

.titleblock h1{
  margin:0;
  font-size: 34px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.titleblock p{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
  font-size: 14px;
}

.nav a{
  text-decoration:none;
  border: 2px solid var(--fg);
  padding: 6px 10px;
  border-radius: 999px;
}
.nav a:hover{
  background: var(--fg);
  color: var(--bg);
}

.hero{
  margin: 22px 0 8px;
}
.kicker{
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 10px;
}
.hero h2{
  margin:0 0 10px;
  font-size: 22px;
}
.hero p{
  margin: 0 0 10px;
  color: var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 860px){
  .header{ flex-direction: column; align-items:flex-start; }
  .nav{ justify-content:flex-start; }
  .grid{ grid-template-columns: 1fr; }
  .logo{ width: 340px; max-width: 88vw; }
}

.card{
  border: 2px solid var(--rule);
  padding: 16px;
  border-radius: 16px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card p{ margin: 0 0 10px; }
.card p:last-child{ margin-bottom: 0; }

.rule{ border:0; border-top: 2px solid var(--rule); margin: 18px 0; }

.list{
  margin: 0;
  padding-left: 18px;
}
.small{
  font-size: 14px;
  color: var(--muted);
}

.badge{
  display:inline-block;
  border: 2px solid var(--fg);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 6px 6px 0;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 680px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}
.ph{
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--rule);
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}

.button{
  display:inline-block;
  text-decoration:none;
  border: 2px solid var(--fg);
  padding: 8px 12px;
  border-radius: 999px;
}
.button:hover{
  background: var(--fg);
  color: var(--bg);
}

.footer{
  margin-top: 30px;
  padding-top: 18px;
  border-top: 3px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  margin-top: 60px;
  padding: 14px 0;
  text-align: center;
  border-top: 1px solid #000;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Lock the clickable circle size */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;     /* ⬅ smaller */
  height: 28px;    /* ⬅ smaller */
  border: 1px solid #000;
  border-radius: 999px;
  text-decoration: none;
  line-height: 0;  /* ⬅ IMPORTANT: prevents SVG inflation */
}

/* Lock the SVG size explicitly */
.social-link svg,
.social-icon {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
  display: block;
}

/* Instagram (stroke-based icon) */
.social-icon {
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

/* Facebook (filled path) */
.social-link svg path {
  fill: #000;
  stroke: none;
}

/* Hover inversion */
.social-link:hover {
  background: #000;
}

.social-link:hover .social-icon {
  stroke: #fff;
}

.social-link:hover svg path {
  fill: #fff;
}


/* ===== Media gallery images ===== */
.gallery img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
  border: 2px solid var(--rule);
}
img.epk-photo{
  cursor: zoom-in;
  transition: transform 0.18s ease;
}
img.epk-photo:hover{
  transform: scale(1.02);
}

/* ===== Lightbox (Pro) ===== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.lightbox.is-open{ display:block; }

.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.88);
  opacity:0;
  transition: opacity 180ms ease;
}
.lightbox__dialog{
  position:relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 6vh auto 0;
  opacity:0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
  outline: none;
  text-align:center;
}
.lightbox.is-open .lightbox__backdrop{ opacity:1; }
.lightbox.is-open .lightbox__dialog{
  opacity:1;
  transform: translateY(0) scale(1);
}

.lightbox__img{
  display:block;
  max-width: 100%;
  max-height: 74vh;
  margin: 0 auto;
  border: 3px solid #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
  background: #111;
}
.lightbox__caption{
  margin: 10px auto 0;
  max-width: 100%;
  color: #f3f3f3;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  text-align:center;
  text-shadow: 0 1px 0 rgba(0,0,0,0.55);
}

.lightbox__close{
  position:absolute;
  top: -18px;
  right: -10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 44px;
  text-align:center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.lightbox__close:hover{ transform: scale(1.03); }

/* Prev/Next navigation */
.lightbox__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 44px;
  text-align:center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  opacity: 0.95;
}
.lightbox__nav:hover{ transform: translateY(-50%) scale(1.03); }
.lightbox__prev{ left: -12px; }
.lightbox__next{ right: -12px; }

/* Prevent page scroll when lightbox is open */
body.no-scroll{ overflow: hidden; }

