/* LANDING PAGE CSS */
/* BEGIN - HIDES HERO 1 TEXT (Remove this section if you want the text above the hero 1 banner or for all other hero banners to show) */
body > main > section:nth-child(1) > div {
display: none !important;
}
/* FONT COLOR CHANGE */
body > header > div > div > h1 > a {
color: #df5726 !important;
}
/* BEGIN - ADD BACKGROUND IMAGE */
/* event information section */
#content-block-29735 {
  background-image: url("https://d2y9d0ry7vx6k5.cloudfront.net/events/21706/images/lpi_6y56RaN6pg.png") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  }
/* event information text box color */
#event-details{
  position: relative;
  z-index: 0;
}

#event-details::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 120px; /* MOBILE default */
  background-color: rgba(241,225,197,0.75);
  z-index: -1;
  border-radius: 18px;

  box-shadow:
    inset 0 0 0 4px rgba(74,45,26,0.6),
    inset 0 0 18px rgba(74,45,26,0.25);
}

/* Desktop/tablet: start the box lower */
@media (min-width: 768px){
  #event-details::before{
    top: 220px; /* your desktop value */
  }
}

/* keep content above the box */
#event-details > *{
  position: relative;
  z-index: 1;
}

/* inner padding (override inline padding) */
#event-details > *:not(:first-child){
  padding-left: clamp(16px, 6vw, 110px) !important;
  padding-right: clamp(16px, 6vw, 110px) !important;
  box-sizing: border-box;
}

/* space above date + below button */
#event-details > p:nth-of-type(2){ padding-top: 40px !important; }
#event-details > div:last-child{ padding-bottom: 50px; }
/* END - ADD BACKGROUND IMAGE */
/* END - HIDES HERO 1 TEXT (Remove this section if you want the text above the hero 1 banner or for all other hero banners to show) */

/* TICKET PAGE CSS */

/* DONATION PAGE CSS */


/* ALL PAGES */
/* BEGIN - CHANGE ALL LINK COLORS */
/* a:-webkit-any-link {
  color: #6eceb2 !important;
  text-decoration: none !important;
} */
/* END - CHANGE ALL LINK COLORS */
/* BEGIN – RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.event-logo {
width: 100% !important;
}
.event-date {
font-size: 20px !important;
}
.event-details {
font-size: 18px !important;
}
.event-attire {
font-size: 16px !important;
}
.event-url {
font-size: 16px !important;
}
.event-desc {
font-size: 18px !important;
}
.event-title-tix {
width: 80% !important;
}

}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.event-logo {
width: 100% !important;
}
.event-date {
font-size: 20px !important;
}
.event-details {
font-size: 18px !important;
}
.event-attire {
font-size: 16px !important;
}
.event-url {
font-size: 16px !important;
}
.event-desc {
font-size: 18px !important;
}
.event-title-tix {
width: 80% !important;
}

}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.event-logo {
width: 45% !important;
}
.event-date {
font-size: 28px !important;
}
.event-details {
font-size: 20px !important;
}
.event-attire {
font-size: 19px !important;
}
.event-url {
font-size: 18px !important;
}
.event-desc {
font-size: 18px !important;
}
.event-title-tix {
width: 60% !important;
}

}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.event-logo {
width: 50% !important;
}
.event-date {
font-size: 28px !important;
}
.event-details {
font-size: 20px !important;
}
.event-attire {
font-size: 19px !important;
}
.event-url {
font-size: 18px !important;
}
.event-desc {
font-size: 18px !important;
}
.event-title-tix {
width: 60% !important;
}

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.event-logo {
width: 50% !important;
}
.event-date {
font-size: 28px !important;
}
.event-details {
font-size: 20px !important;
}
.event-attire {
font-size: 19px !important;
}
.event-url {
font-size: 18px !important;
}
.event-desc {
font-size: 18px !important;
}
.event-title-tix {
width: 60% !important;
}

}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/