@font-face {
  font-family: "PlaypenSans";
  src: url("/resources/fonts/PlaypenSans-VariableFont_wght.ttf"); /* Locate the .ttf file within your directory*/
}
@font-face {
  font-family: "Eagle Horizon";
  src: url("/resources/fonts/eagle-horizon-personal-use.regular.ttf"); /* Locate the .ttf file within your directory*/
}

html {
  font-size: 16px;
}
body {
  font-size: clamp(0.8rem, 2vw, 1rem);
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 900px;
  min-width: 360px;
  background-color: #203866;
  color: lightgrey;
  background-image: url(/resources/img/stones_bg.png);
  background-repeat: repeat;
}
.pageContainer {
  background-color: rgba(4, 4, 4, 0.9);
  min-height: 100vh;
  margin-bottom: 20px;
}
.page-title {
  font-family: "Eagle Horizon", "PlaypenSans", "Brush Script MT", cursive;
  font-weight: 300;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  margin: 0;
  color:beige;
}
.contentContainer {
  position: relative;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 20px;
  text-align: justify;
  text-justify: inter-word;
  justify-content: center;
  align-items: flex-start;
}
.content-header {
  font-family: "PlaypenSans", "Brush Script MT", cursive;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 5px;
  color: lightsteelblue;
}
.content-subheader {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  margin: 10px;
}
.contentColumn {
  vertical-align: top;
  max-width: 530px;
  font-size: clamp(0.8rem, 1em, 1.3rem);
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.aquamarine {
  color: aquamarine;
}
.red {
  color: crimson;
}
.blue {
  color: #203866;
}
.lightsteelblue {
  color: lightsteelblue;
}
.grey {
  color: #737373;
}
.lightgrey {
  color: lightgrey;
}
.link {
  text-decoration: none;
}
.image-link {
  text-decoration: none;
}
.disabled-link {
  pointer-events: none;
  cursor: default; /* Optional: Change cursor to indicate it's not clickable */
}
.concertGridContainer {
  display: grid;
  grid-template-columns: 200px 200px 200px 200px;
  grid-gap: 1rem;
}
.concertGridContainer > div {
  border: 1px solid black;
  border-radius: 7px;
  text-align: center;
}
.concertList > div {
  height: 300px;
  background-color: #d6b548;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
}
.concert-title {
  font-size: 1rem;
  font-family: "PlaypenSans", "Brush Script MT", cursive;
}
.concert-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
}
.concert-artist {
  height: 50px;
  font-size: 0.9rem;
  font-family: "Brush Script MT", cursive;
}
.button {
  width: 4rem;
  height: 1.5rem;
  border: 1px solid black;
  background-color: cornsilk;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 1.3rem;
}
.button a {
  font-size: 0.7rem;
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.thumb_100x150 {
  width: 100px;
  height: 150px;
}
.thumb_150x150 {
  width: 150px;
  height: 150px;
}
.center-text {
  text-align: center;
}
.width100 {
  width: 100%;
}
.justify-full {
  text-align: justify;
  text-justify: inter-word;
}
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr));
  text-align: left;
  margin-left: -20px;
  margin-right: 20px;
  padding: 10px;
}
.responsive-image {
  max-width: 100%;
  height: auto;
}
header {
  background-color: black;
  height: 30px;
}
.special-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background-color: black;
  color: lightgray;
  font-size: 9pt;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
a.email {
  color: aquamarine;
}
a.email:hover {
  color: lemonchiffon;
}
a.email:visited {
  color: lightsteelblue;
}

@media screen and (max-width: 880px) {
  .concertGridContainer {
    display: grid;
    grid-template-columns: 200px 200px;
    grid-gap: 0.5rem;
  }
}
@media screen and (max-width: 500px) {
  .concertGridContainer {
    display: grid;
    grid-template-columns: 180px 180px;
    grid-gap: 0.2rem;
  }
}
@media screen and (min-width: 800px) {
  .concertGridContainer {
    display: grid;
    grid-template-columns: 180px 180px;
    grid-gap: 0.2rem;
  }
  .largeScreen {
    display: block;
  }
  .smallScreen {
    display: none;
  }
    .shiftLeft40 {
    left: -40px;
  }
  .shiftLeft60 {
    left: -60px;
  }
}
@media screen and (max-width: 799px) {
  .largeScreen {
    display: none;
  }
  .smallScreen {
    display: block;
  }
  .shiftLeft40 {
    left: 0px;
  }
    .shiftLeft60 {
    left: 0px;
  }
}
