/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "arial", serif;
  background: #000 url('img/noise.png');
  color: #dcdcdc;
  line-height: 1.6;
}

/* LINKS */
a {
  color: #f00;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: #fff;
  letter-spacing: 2px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.socials a {
  border: 1px solid #111;
  background: #050505;
}

.socials a:hover {
  background: #111;
}
.socials img {
  width: 100%;
  max max-width: 20px;
}


/* HEADINGS */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: normal;
}
h4 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  color: #F00;
}

/* HEADER */
header {
  text-align: center;
  padding: 40px 15px 20px;
  border-bottom: 3px solid #111;
}

.logo {
  width: 100%;
  max-width: 1000px;
  filter: grayscale(100%) contrast(160%);
}

.band {
  width: 100%;
  max-width: 750px;
  filter: grayscale(100%) contrast(110%);
}
.members {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 across */
  gap: 20px;
  margin-top: 20px;
}

.member {
  text-align: center;
  padding: 5px;
}
@media (max-width: 700px) {
  .members {
    grid-template-columns: 1fr 1fr; /* 2 per row on mobile */
  }
}
.bandcamp {
  margin-top: 20px;
}

.bandcamp iframe {
  border: 0;
  width: 100%;
  max-width: 400px;
  height: 66px;
}

/* NAV */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #111;
}

nav a {
  font-size: 12px;
  opacity: 0.8;
}
/* MAIN */
main {
  max-width: 1000px;
  margin: auto;
  padding: 30px 15px;
}

.section {
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}
.flyer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
  
.flyer img {
  width: auto;
  max-height: 800px;
  border: 3px solid #111;
  padding: 5px;
  filter:  contrast(100%);
}

/* NEWS */
.news-item {
  border-bottom: 1px solid #111;
  padding: 15px 0;
}

.news-item p {
  font-size: 13px;
  opacity: 0.8;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}
/* GRID: 3 items across */
.grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.card3 img {
  width: auto;
  height: 300px;              
  object-fit: cover;        
  border: 3px solid #111;
  filter: grayscale(100%) contrast(100%);
  transition: transform 0.2s;
}
.card img {
  width: auto;
  max-height: 300px;
  border: 3px solid #111;
  filter: grayscale(100%) contrast(140%);
}
.card2 img {
  width: auto;
  max-height: 400px;
  border: 3px solid #111;
  padding: 5px;
  filter:  contrast(100%);
}

.card p {
  margin-top: 10px;
  font-size: 12px;
}

/* TOUR */
.tour div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #111;
  padding: 8px 0;
  font-size: 13px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 10px;
  border-top: 1px solid #111;
  font-size: 11px;
  opacity: 0.6;
}

/* DESKTOP */
@media (min-width: 700px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
