
/* GLOBAL */
body {
  font-family: "Times New Roman", serif;
  background: #fefefe url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  color: #111;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 5px solid black;
  padding: 20px;
  position: relative;
  z-index: 5;
}

/* BAND NAME */
.band-name {
  font-size: 4.8em;
  font-weight: 900;
  color: #000;
  margin: 0;
  text-transform: lowercase;
  letter-spacing: -3px;
  line-height: 0.9;
  display: inline-block;
  background: #fff;
  padding: 10px 25px;
  border: 4px solid #000;
  box-shadow: 7px 7px 0 #ff0000, -5px -5px 0 #000;
  transform: rotate(-3deg);
  text-shadow: 2px 2px 0 #fff;
  position: relative;
  z-index: 6;
}

/* NAVIGATION */
nav {
  margin-top: 20px;
}

/* force ALL nav links to white text */
.nav-link {
  font-size: 1.2em;
  margin: 0 12px;
  padding: 6px 14px;
  background: #000 !important;
  color: #fff !important; /* ✅ fixed: ALL links are white now */
  text-decoration: none;
  border: 2px solid #000;
  display: inline-block;
  transform: rotate(-1deg);
  transition: all 0.2s ease;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-link:hover {
  background: #ff0000 !important;
  color: #fff !important;
  transform: rotate(2deg) scale(1.1);
  box-shadow: 4px 4px 0 #000;
}

/* MAIN CONTENT */
main {
  padding: 40px 20px;
}

.content-section {
  margin: 60px auto;
  padding: 25px;
  border: 3px dashed #000;
  background: #fff;
  width: 80%;
  max-width: 800px;
  text-align: left;
  box-shadow: 12px 12px 0 #000, -6px -6px 0 #ff0000;
  transform: rotate(-1deg);
  position: relative;
  z-index: 2;
}

/* HEADINGS */
.section-heading,
#contact h2 {
  font-size: 2.6em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 6px 12px;
  background: #ff0000;
  color: #fff;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 #000;
animation: jitter 1s infinite;
}

/* TEXT */
p, ul, li {
  font-size: 1.15em;
  line-height: 1.7em;
}

ul {
  list-style-type: square;
  padding-left: 25px;
}

/* LINKS */
a {
  color: #000;
  text-decoration: none;
  border-bottom: 3px solid #ff0000;
  font-weight: bold;
  transition: all 0.2s ease;
}

a:visited {
  color: #222;
  border-bottom-color: #666;
}

a:hover {
  color: #fff;
  background: #000;
  border-bottom-color: #000;
  padding: 0 3px;
  transform: rotate(-3deg);
}

/* FOOTER */
footer {
  margin-top: 80px;
  padding: 20px;
  background: #000;
  border-top: 6px solid #ff0000;
}

footer p {
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

/* EXTRA CHAOS */

/* alternate tilt per section */
.content-section:nth-child(odd) {
  transform: rotate(2deg);
}
.content-section:nth-child(even) {
  transform: rotate(-2deg);
}

/* torn-paper edges */
.content-section::before,
.content-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 12px;
  left: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 5px,
    #000 5px,
    #000 10px
  );
}

.content-section::before {
  top: -12px;
}
.content-section::after {
  bottom: -12px;
}

/* Softer jitter for headings */
@keyframes jitter {
  0%   { transform: rotate(-1deg) translate(0,0); }
  25%  { transform: rotate(-1.5deg) translate(-1px, 0.5px); }
  50%  { transform: rotate(-0.5deg) translate(1px,-0.5px); }
  75%  { transform: rotate(-1deg) translate(-0.5px, 1px); }
  100% { transform: rotate(-1deg) translate(0,0); }
}


/* fake tape strips for DIY collage look */
.content-section::before {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 6px,
    #000 6px,
    #000 12px
  );
  opacity: 0.15;
}

.content-section::after {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    #000 6px,
    #000 12px
  );
  opacity: 0.15;
}
/* Fix long text (like email addresses) overflowing on mobile */
.content-section li,
.content-section p,
.content-section a {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

#gallery img {
    max-width: 100%;
    max-height: 95vh;
    height: auto;
    display: block;
    margin: 0 auto;
}


