/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0),  rgba(19, 0, 15, 1)), 
    url('images/bgpat.png');
  background-repeat: repeat;
  background-size: auto, 459px 818px; 
  font-family: "Fredoka", sans-serif; /* Default body font */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header {
  width: 100%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 14px;
}


.logo-banner {
  background-color: #f7ebe8;
  outline: #d11a5b solid 5px;
  display: inline-flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 45px; 
  border-radius: 40px; 
}

.logo-img {
  height: 260px;
  width: auto;
  display: block;
}

.site-title {
  font-family: "Fredoka One", cursive; 
  color: #2f0b3a; 
  font-size: 3.4rem;
  text-align: center;
  margin-top: 10px;
  line-height: 1;
}


.main-nav {
  background-color: #f7ebe8;
  width: 100%;
  padding: 15px 25px;
  border-radius: 8px; 
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-nav a {
  text-decoration: none;
  color: #000000;
  font-size: 1.3rem;
  font-weight: 500; 
  transition: color 0.2s ease;
}


.main-nav a.active,
.main-nav a:hover {
  color: #C9044D; 
}


.content-container {
  width: 100%;
  max-width: 850px;
  margin-top: 10px;
}

.content-container-cent {
  place-items: center;
  width: 100%;
  max-width: 850px;
  margin-top: 10px;
}

.page-title-section {
  background-color: #F7EAE7;
  width: 100%;
  padding: 22px;
  border-radius: 8px;
  text-align: center;
}

.page-title {
  font-family:
    "Fredoka One", cursive; 
  color: #C9044D;
  font-size: 2.2rem;
}

.grid {
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    max-width: 1600px;
}

.grid-cent {
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    max-width: 1600px;
    margin-left: auto; 
    margin-right: auto; 
}

.grid-items-cent {
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1600px;
    -ms-flex-pack: center;
    justify-content: center;
}

.card {
    text-decoration: none;
    position: relative;
    -ms-flex: 25%; 
    flex: 25%;
    max-width: 25%;
}

.card-cent {
    text-decoration: none;
    place-self: center;
    -ms-flex: 25%; 
    flex: 25%;
    max-width: 25%;
}

.item {
    text-decoration: none;
    position: relative;
    -ms-flex: 25%; 
    flex: 25%;
    max-width: 25%;
}

.content {
    margin-left: 5px;
    margin-right: 5px;
}

.card-body a:hover {
    text-decoration: none;
    color: #C9044D;
}

.body-text {
    max-width: 1600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    color: #320036;
    font-weight: light;
    height: 20px;
    line-height: 20px;
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
    margin-top: 0px;
    padding: auto;
    font-size: 1em;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 0px;
}

.title {
    color: #C9044D;
    font-weight: regular;
    font-family:
    "Fredoka One", cursive; 
    line-height: 25px;
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
    margin-top: 0px;
    padding: auto;
    font-size: 1.5em;
    margin-bottom: 0px;
    margin-top: 5px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 0px;
}

.description {
    color: #C9044D;
    display: block;
    line-height: 18px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    margin-top: 0px;
    padding: auto;
    font-size: 1.25em;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 20px;
}
.lightbox {
    /* Default to hidden */
    display: none;

    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* A bit of padding around image */
    padding: 1em;

    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
    display: block;
}

.lightbox span {
    /* Full width and height */
    display: block;
    width: 100%;
    height: 100%;

    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.item img {
    color: white;
    text-align: center;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 10px;
    padding: 0px;
}

.img-full {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 10px;
    padding: 0px;
}
.card img {
    color: #FF8710;
    text-align: center;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 5px;
    padding: 0px;
    border-radius: 5px 5px 5px 5px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-background-clip: padding;
   /* -webkit-transform: translateZ(0);
    outline: solid 2px #e8961a;
    outline-offset: -2px;*/
}

.card-body {
    background-color: #F7EAE7;
    height: auto;
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-top: 0px;
    padding: auto;
    border-radius: 0px 0px 5px 5px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-background-clip: padding;
}

.hero-image {
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 5px;
}

.coverArt {
    color: rgb(109, 68, 68);
    text-align: center;
    max-height: 350px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 0px;
}

.hero-text {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F7EAE7;
}
@media screen and (max-width: 1200px) {
    .card {
        -ms-flex: 33.33333%; /* IE10 */
        flex: 33.33333%;
        max-width: 33.33333%;
    }
    
    .item {
        -ms-flex: 33.33333%; /* IE10 */
        flex: 33.33333%;
        max-width: 33.33333%;
    }
}

@media screen and (max-width: 900px) {
    .card {
        -ms-flex: 50%; /* IE10 */
        flex: 50%;
        max-width: 50%;
    }
    
    .item {
        -ms-flex: 50%; /* IE10 */
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .card {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
        max-width: 100%;
    }
    
    .item {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
        max-width: 100%;
        
    }
}