/* ===========================
   BASE KNOBS / VARIABLES
   =========================== */
:root{
  --maxw: 980px;
  --nav-gap: 12px;
  --text: #000;

  /* side squares */
  --sq-left-w: 1380px;       
  --sq-right-w: 1380px;      
  --sq-right-shift: 2500px;  
}

/* ===========================
   RESET / BASICS
   =========================== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  text-align:center;
  font-family: 'MyFont', system-ui, sans-serif;
  scroll-behavior: smooth;

  background-image: url("squares.png"), url("squares.png"), url("bg.png");
  background-repeat: repeat-y, repeat-y, repeat;
  background-position:
    left top,
    calc(100% - var(--sq-right-w) + var(--sq-right-shift)) top,
    center top;
  background-size:
    var(--sq-left-w) auto,
    var(--sq-right-w) auto,
    auto;
  background-attachment: scroll, scroll, scroll;
}

/* jitter strip */
body::before{
  content:"";
  position: fixed;
  top:0; bottom:0; right: calc(-1 * var(--sq-right-shift));
  width: var(--sq-right-w);
  background: url("squares.png") repeat-y;
  background-size: 100% auto;
  animation: jitter 4s infinite;
  z-index: -1;
}
@keyframes jitter{
  0%, 93%, 100% { transform: translateX(0); }
  95%           { transform: translateX(-6px); }
  97%           { transform: translateX( 5px); }
  99%           { transform: translateX(-3px); }
}

/* ===========================
   FONTS
   =========================== */
@font-face{
  font-family: 'MyFont';
  src: url('Myfont.ttf') format('truetype');
  font-display: swap;
}
body, .nav-link, h2, .show-list li, #show-history h2 {
  font-family: 'MyFont', system-ui, sans-serif;
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header{ padding:24px 16px 12px; }
.logo{ width:530px; max-width:92%; height:auto; display:block; margin:0 auto; }

.main-nav{
  display:inline-flex;
  align-items:center;
  gap:var(--nav-gap);
  margin:20px auto 24px;
}
.nav-link{
  text-decoration:none;
  color:var(--text);
  font-size:20px;
  line-height:1.1;
}
.main-nav{
  display:inline-flex;
  align-items:center;
  gap:var(--nav-gap);
  margin:20px auto 24px;
}

/* NAV LINKS – animated underline on hover */
.nav-link{
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
}

.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;           /* distance below text */
  width: 100%;
  height: 2px;            /* line thickness */
  background: currentColor; /* matches link color */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-link:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}

.star{ 
  width:18px; 
  height:auto; 
  opacity:.9; 
}


/* ===========================
   LAYOUT / HERO
   =========================== */
main{ max-width:var(--maxw); margin:0 auto; padding:0 16px 40px; }
.hero{ margin:28px 0; position:relative; }
.band-photo{
  width:520px; max-width:92%; height:auto;
  display:block; margin:0 auto;
  filter:grayscale(100%) contrast(1.05);
  border:none; box-shadow:none; background:transparent; outline:0;
}

/* ===========================
   IGGY
   =========================== */
.iggy-wrap{
  position: absolute;
  right: -175px;
  top: -270px;
  width: 200px;
  text-align: center;
  z-index: 2;
}
#iggy{
  width: 200px;
  display: block;
  cursor: pointer;
  border: 0; background: transparent; box-shadow: none;
  animation: wiggle 1s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.iggy-caption{ font-size: 16px; margin-top: 12px; opacity: 0.9; }
@keyframes wiggle{
  0%   { transform: translateX(-4px) rotate(-0.4deg); }
  50%  { transform: translateX( 4px) rotate( 0.4deg); }
  100% { transform: translateX(-4px) rotate(-0.4deg); }
}

/* ===========================
   FLOATING WELCOME GIF
   =========================== */
.floating-gif{
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  pointer-events: none;
}
.floating-gif img{ width:350px; height:auto; }

/* ===========================
   CIRCLE + OVERLAY (SHOWS)
   =========================== */
.circle-stack{
  position: relative;
  width: 180px;
  margin: 20px auto;
}
.circle-deco{ width: 100%; height: auto; display: block; }
.circle-overlay{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: auto;
}

/* ===========================
   SPINNING LOGO
   =========================== */
.spin-logo{
  position: absolute;
  top: 30px; left: 175px;
  width: 220px; height: auto;
  z-index: 1000;
  animation: spin 5.5s linear infinite;
}
@keyframes spin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===========================
   VIDEOS
   =========================== */
.video-grid{
  display:flex; flex-wrap:wrap; gap:20px; justify-content:center;
  margin:20px 0;
}
.video img{
  width:280px; height:auto; cursor:pointer;
  border:2px solid #000; border-radius:6px;
  transition: transform .2s ease;
}
.video img:hover{ transform: scale(1.05); }
.video-player{ margin-top:20px; display:flex; justify-content:center; }
.video-player iframe{ width:560px; height:315px; max-width:92%; border:none; }

/* ===========================
   ALL SHOW HISTORY
   =========================== */
#show-history{
  margin:60px auto;
  max-width:720px;
  padding:20px;
  text-align:center;
}
#show-history h2{
  font-size:32px;
  margin-bottom:20px;
}
.show-list{
  list-style:none;
  padding:0;
  margin:0 auto;
  display:inline-block;
  text-align:center;
}
.show-list li{
  font-size:18px;
  line-height:1.45;
  margin:0;
}
.show-list li + li{
  margin-top:14px;
  padding-top:14px;
  position:relative;
}
.show-list li + li::before{
  content:"";
  position:absolute;
  top:-14px; left:50%; transform:translateX(-50%);
  width:18px; height:18px;
  background:url("star.png") center/contain no-repeat;
  opacity:.95;
}
/* ===========================
   DISCOGRAPHY GRID (no black bg)
   =========================== */
.discography{
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.discography h2{
  font-size: 32px;
  margin: 0 0 14px;
}

.discography-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* each card = square image + caption */
.discography-card{
  display: block;
  text-decoration: none;
  color: inherit;
}
.discography-card:hover .discography-thumb img{
  transform: scale(1.03);
}

.discography-caption{
  margin-top: 8px;
  text-align: center;
  line-height: 1.3;
}

.discography-title{
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discography-meta{
  font-size: 0.85rem;
  opacity: 0.8;
}
/* Instagram Reel embed — bulletproof */
.reel-embed{
  max-width: 420px;      /* tweak wider if you want */
  margin: 16px auto;     /* centered */
}
.reel-embed .reel-frame{
  position: relative;
  width: 100%;
  padding-top: 177.78%;  /* 9:16 = 16/9 * 100% */
  overflow: hidden;
}
.reel-embed iframe{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
/* DISCOS: natural image size, no square box */
.discography-thumb{
 aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.discography-thumb img{
  width: 100%;
  height: auto;        /* keep proportions */
  object-fit: contain; /* no cropping */
  border-radius: 0;    /* no rounded corners */
}
/* FOOTER SOCIALS – extra small icons row */
.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:12px 0 20px;
  margin-top:30px;
}

.footer-socials a{
  display:inline-flex;
  width:50px;   /* smaller */
  height:50px;
  opacity:.8;
  transition:opacity .2s ease, transform .2s ease;
  text-decoration:none;
  color:inherit;
}

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

.footer-socials svg{
  width:100%;
  height:100%;
  display:block;
  fill: currentColor;
}
