/* 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;
}
