/* GLOBAL CSS VARS */
/* RTC BLUE: #4FC8F4 */
:root {

  --rtc-blue-light: hsla(196, 88%, 63%, 60%);
  --rtc-blue: hsla(196, 88%, 63%, 100%);
  --rtc-blue-dark: hsla(196, 88%, 34%, 100%);
  --rtc-black: rgb(39, 36, 36);


  --promobox-card-bg: hsla(168, 13%, 55%, 10%);
  --promobox-card-hover: hsla(196, 88%, 55%, 8%);
  --promobox-card-accent: hsla(168, 13%, 70%, 15%);
  --info-card-bg: #eeeeee50;
  --card-bg-radius: 8px;
}


* {
  box-sizing: border-box;
}

html,
body {
  background: linear-gradient(#e8eeef, #98babc);
  padding: 0px;
  margin: 0px;
  color: rgb(39, 36, 36);
}

body {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  min-width: 320px;
  font-size: 16px;
}


.container {
  margin: 0px auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height:100vh;
  /* box-shadow: 5px 0px 5px 0px rgba(0,0,0,.1), -5px 0px 5px 0px rgba(0,0,0,.1); */
}


h1,
h2,
h3,
h4,
h5 {
  font-family: 'Martel', Georgia, Times, Arial, sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
}
h1 + .subheading {  
  margin-top:.5rem;
  font-size: 1.25rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
}



p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
p.show-times {
  font-size: 1.15rem;
}
p+h3 {
  margin-top: 2rem;
}

a {
  text-decoration: none;
}

p a {
  text-decoration: underline;
 
}

td p a {
  color:var(--rtc-blue) 
}
td p a:hover {
  color:var(--rtc-blue-dark)
}

a:visited {
  color: inherit
}

ul {
  margin: 0;
  padding: 0;
}


/*
.logo-bg {
 background-image:url(../images/lwblur1200.jpg) ;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width:100%;
	height:50vh; 
	position:relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	border:10px solid #232323;
	border-left:0;
	border-right:0; 
}
*/


.header {
  position: relative;
  z-index: 999;
  background-image: url(../images/shows_2023/bmc-jump.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  /* min-height: 75vh; 
  max-height: 80vh; */
  height:75vh;
  max-height: 50vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom:2rem;
}

.header::before {
  content: '';
  margin: 0;
  background: rgba(39, 36, 36, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header .logo {
  position: relative;
  z-index: 99;
}


.tagline {
  font-family: 'Martel';
  font-weight: 600;
  padding: 1rem;
  color: #fff;
  font-size: 2rem;
  z-index: 99;
  position: relative;
  line-height: 1.5;
  display: block;
  text-transform: capitalize;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  /*border:1px solid #fff;
	background-color:rgba(255,255,255,0.1); */

}


.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--rtc-black);
  font-family: 'Martel';
  font-size: 1rem;
  font-weight: 300;
  padding: 0.5rem 1rem;
  position: relative;
  height:76px;
}


.main-nav img {
  max-width: 64px;
  margin-right: -4px;
}

.main-nav li.selected {
  color: var(--rtc-blue);
}

.logo-head .logo-wrapper {
  color: var(--rtc-blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  /* color:#fff; */
}


.logo-head {
  position: absolute;
  font-size: 0.875rem;
}

.main-nav input, .main-nav label{
  display: none;
}

.main-nav ul {
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex: auto;
  justify-content: center;
  margin: 1rem 0 1rem 2.5rem;

}

/* .main-nav li {
  margin: 0 1rem;
} */

.main-nav li a {
  color: #fff;
}

.main-nav li a:hover {
  color: var(--rtc-blue);
}


.main-content {
  flex:1;
}

/* HOMEPAGE */



.promobox {
  display: flex;
  flex-flow: row wrap;
  /* justify-content: space-evenly; */
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.promobox-column {
  flex: 1 1 0;
}

.promobox-column.copy {
  flex: 2 2 0;
}

.promobox-column.image {
  display: flex;
  flex-direction: column;
}

.promobox-column.image img {
  max-width: 100%;
  margin-bottom: 3rem;
}

.promobox-column.image .button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  align-self: flex-end
}

.promobox-column.copy p, .promobox-column.copy h4, .promobox-column.image a {
  font-size: 115%;
}

.promobox-column.copy .currprod {
  font-size: 14px;
  font-family: 'Raleway';
}

.promobox h2 {
  flex: 1 1 100%;
}


.promobox.centered {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.promobox.centered .text-only {
  max-width: 75%;
}

.promobox h2 {
  margin: 3rem 4rem 1rem 4rem;
  text-align: center;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

.promobox h2~h2 {
  margin-top: .5rem;
  padding-top: 1.5rem;
}

.promobox h2::before,
.promobox h2::after {
  display: inline-block;
  content: "";
  width: 10rem;
  margin: 0 1rem 0 1rem;
  height: 1px;
  border-top: 1px solid var(--rtc-black);
  transform: translateY(-.5rem);
}


.promobox h3 {
  font-size:1.5rem;
}


.grid-container {
  display: grid; /* Enables CSS Grid layout */
  grid-template-columns: repeat(3, 1fr); /* Creates 3 columns, each taking 1 fractional unit of available space */
  grid-template-rows: repeat(3, 1fr); /* Creates 3 rows, each taking 1 fractional unit of available space */
  gap: 16px; /* Adds a 10px gap between grid items */
  width: 100%; /* Ensures the grid takes the full width of its parent */
}

.promobox-show-info.grid-item .link-wrapper  {
  display: flex;  
  flex-direction: column;
  justify-content: space-between;
  height:100%;
}

.grid-item .img-wrapper {
  flex:1;
}

.promobox-show-info,
.promobox-show-current {
  display: flex;
  background-color: var(--promobox-card-bg);
  border-radius: var(--card-bg-radius);
}



.promobox-show-info {
  text-align: left;
  flex: 1 1 350px;
  /* min-width: 440px; */
  display: flex;
  flex-direction: column;
  position: relative;
}

.promobox-show-current {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding: 2rem;
  border-left: 8px solid var(--promobox-card-accent);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 4px 8px #00000015;
}

.show-location {
  margin-top:0px;
  font-size:1.15rem;
  font-weight:600;
}

.promobox-show-info .link-wrapper {
  color: var(--rtc-black);
}

.promobox-show-info .link-wrapper:hover {
  color: var(--rtc-blue-dark);
}


.promobox-show-info .link-wrapper:hover .button.solid {
  background-color: var(--rtc-blue-dark);
}

.promobox-show-info .img-wrapper {
  width: 100%;
  margin: 0 0 1rem 0;
  position: relative;
}

.promobox-show-info .img-wrapper.center-img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  height:402px;
  max-height: 440px;
  background-color: #FF990275;
}

.promobox-show-info .text-wrapper {
  padding: .5rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}


.promobox-show-info .img-wrapper.centered {
  width: 100%;
  height: 0;
  padding: 0 0 100% 0;
  background-color: #251E23;
}

.promobox-show-info .img-wrapper.centered img {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.promobox-show-info .img-wrapper img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.promobox-show-info .text-wrapper p {
  flex-grow: 1;
  padding-bottom: 1.5rem;
  line-height: 1.5;
}

.promobox-show-info .text-wrapper button {
  font-size: 115%;
}

img.cropped-vert {
  max-height:350px;
}


.promobox-show-info .button.solid {
  /* background-color: var(--rtc-blue-light); */
  text-align: center;
}


.promobox.upcoming-season {
  justify-content: flex-start;
}

.upcoming-season h1 {
  flex-basis:100%;
}

.upcoming-season .promobox-show-info + h1 {
  margin-top:3rem;
}

/* CONTENT DETAILS PAGES */
.content-details {
  padding: 4rem;
}

.content-details .text-highlight-link {
  font-size:125%;
  color:var(--rtc-blue);
  font-weight:bold;
}
.content-details .text-highlight-link:hover {
  color:var(--rtc-blue-dark);
}

/* OUR STAFF */
.bio {
  position: relative;
}


.bio.multicard.board {
  width:100%;
}

.bio-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.bio-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.8;
}


.bio-content p:last-child {
  margin-bottom: 0;
}


.bio-content div {
  flex: 1;
  padding-right: 1rem;
}

/* .bio.multicard:nth-child(odd) .headshot {
	order:0;
} */

.bio .headshot {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  align-self: center;
  border-radius: 16px;
}

.bio .programs-promo {
  border-radius: 50%;
  width: 300px;
  align-self: center;
  border-radius: 16px;
}
/* ----------------------- */

/* SHOW DETAILS PAGE */


.info-card,
.multicard-container {
  margin-top: 1rem;
  display: flex;
  flex-flow: row wrap;
  background: var(--info-card-bg);
  border-radius: var(--card-bg-radius);
  padding: 1.5rem;
}

.info-card {
  gap: 2.5rem;
}
.info-card .details h3 {
  font-size: 1.25rem;
}
.details h3 + p {

  margin-top: .5rem;
  padding-top: 0;
}

.multicard-container {
  background: none;
  padding: 0;
  border-radius: 0;
  gap: 1rem;
}

.details h2 {
  margin-bottom: 2rem;
  flex: 1 0 100%;
  font-size:1.75rem;
}

.auto-cols {
  column-gap: 2rem;
}

.auto-cols.two-cols {
  columns: 2;
}

.auto-cols.three-cols {
  columns: 3;
}

.details {
  flex: 1;
  min-width: 400px;
}

.auto-cols.two-cols p:first-child, .auto-cols.three-cols p:first-child {
  margin-top:0;
}




.multicard {
  background: var(--info-card-bg);
  border-radius: 8px;
  margin: 0;
  padding: 2rem;
}

/* .multicard:only-child h2, .multicard:only-child p{
	max-width:900px;
	max-width:75%;
	margin-left:auto;
	margin-right:auto;
} */



.details.quote {
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 2rem;
  min-width: 200px;
}

.details.quote .source {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.multicard .character h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: capitalize;
}

.multicard .character {
  break-inside:avoid;
  margin-bottom:2rem;
}


.multicard .character p {
  margin-top: .5rem;
}


.multicard .cast .vocal-range {
  font-style: italic;
  display: block;
  margin-top: .25rem;
  font-size: 1rem;
}

.character {
  margin-bottom: 1rem;
}

.details thead {
  font-size: 1.5rem;
}

.details thead  td,.creative-team  {
  padding-bottom: 3rem;
  position: relative;
}

.details thead td::after {
  content: '';
  width: 45%;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 1.5rem;
}


.details th,
.details td, .creative-team {
  vertical-align: top;
  font-size: 1.25rem;
}

.details tbody td {
  padding-bottom: 1rem;
}

.details th {
  font-weight: 800;
  text-align: left;
}

.show-poster {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.show-poster img {
  max-width: 100%;
}

.show-poster .register {
  margin: 2rem 0 0 auto;
  width: 50%;
  text-align: center;
  font-size: 125%;
}


/* ///// DONATE + FACTS PAGES ///// */
.donate .multicard.donate-now {
  flex-basis:100%;
  max-width:100%;
}
.donate-now p {max-width:75%;}

.donate ul {
  list-style-type:circle;
  list-style-position: inside;
  margin:0;
  padding:0;
}

.donate ul li {
  margin-bottom:.5rem;
}

ul.faq {list-style-type: none;}
ul.faq li {margin-bottom:2rem;}
ul.faq p {
  margin-top: 0.5rem;
}

.donate  h3.sponsor-level strong {
  display:block;
  font-weight:400;
  font-size:1.25rem;
  padding:.5rem 0 1rem 0;
}

.donate .multicard {
  flex:1 1 0;
  max-width:50%;
}

/* generic elements */

.button {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
}

.button:hover {
  cursor: pointer;
}

.button.solid {
  background-color: var(--rtc-blue);
  padding: 0.5rem;
  color: #fff;
  border-radius: 4px;
}

.button.solid:hover {
  background-color: var(--rtc-blue-dark);
}

.button.plain {
  color: var(--rtc-blue);
}

.button.plain:hover {
  color: var(--rtc-blue-dark);
}

.button.tickets {
  background-color: #7d1516;
  padding:0.75rem 2rem;
  margin-top:2rem;
  display:inline-block;
  font-size:1.25rem;
}
.button.tickets:hover {
  background-color: var(--rtc-blue-dark);
}

hr {
  color: transparent;
  width: 50%;
  border-color: var(--rtc-black);
  margin: 4rem auto;
  outline: 0;
}

footer {
  margin-top: 4rem;
  color: #fff;
  background-color: var(--rtc-black);
  padding:2rem;
  font-size:.85rem;
}

footer a {
  color:#fff;
}

footer a:hover {
  color:var(--rtc-blue);
}

footer.auto-cols.three-cols {
  gap:2rem;
}


/* older lower res laptops */
@media only screen and (max-height: 50rem) {
  .header {
    min-height: none;
    max-height:none;
    height: calc(100vh - 76px);
    padding-bottom:2rem;
  }

  .header .logo {   
    max-width: 40%;
  }
}

@media only screen and (min-height: 56rem) {
  .header {
    max-height:700px;
  }
}



/* mobile*/
@media only screen and (max-width: 60rem) {
  
  h1 {
    font-size:2rem
  }

  h2 {
    font-size:1.75rem;
  }
  
  h3 {
    font-size:1.25rem;
  }
  
  h4 {
    font-size:1rem;
  }


  .container {
    margin: 0px;
    width: 100%;
  }

  .main-nav {
    height:64px;
    position:relative;
  }

  .main-nav .mobile-menu {
    height:48px;
    width:48px;
    flex:0 0 48px;
    display:block;
    margin:0 0 0 auto;
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-position: center;
  }

  
  input[type='checkbox']:not(:checked) + ul {
    display: none;
  } 

 

  .main-nav ul {
    display:block;
    width:65%;
    position:absolute;
    right:0;
    top:100%;
    background:var(--rtc-black);
    z-index:9999;
    padding:1rem;
    margin:0;
    border-bottom-left-radius: 8px;
    height: auto;
    box-shadow: 0px 0px 5px rgba(0,0,0,5);
  }
  
  .main-nav ul li {
    margin-bottom:1rem;
  }

  .main-nav ul a {
    color:#fff;
    font-size: 1rem;
  }

  .main-nav ul li.selected {
    font-size:1rem;
  }

  .header {
    /* background:none; */
    min-height:30vh;
    max-height: 30vh;
    padding-bottom:1rem;
  }

  .header .tagline {
    font-size: 1rem;
    padding: 1rem;
  }

  .header .logo {
    max-width: 50%;
  }

  footer.auto-cols.three-cols {
    columns:1;
  }

  footer.auto-cols.three-cols p {
    font-size:.9rem;
  }

  



/* HOME PAGE */
  .promobox, .info-card {
    padding: 0 1rem;
    flex-flow: column;
    gap: 1rem;
  }

  .promobox h2 {
    margin:1.5rem auto .5rem auto;
    padding:0;
    line-height:1.25;
  }

  .promobox h2::before, .promobox h2::after {
    display: none;
  }

  .promobox ~ .promobox h2{
    margin-top:3rem;
  }

  .promobox-column {
    flex: 1 0 0;
    order: 1;
  }

  .promobox-column.copy p {
    font-size:100%;
  }

  .promobox-column.image {
    flex: 1 0 0;
    order: 2;
  }

  .promobox-show-current {
    flex-direction: column;
    padding:1.5rem 1rem;
  }

  /* only display 1 promo image */
  .promobox-column.image+.promobox-column.image {
    display: none;
  }

  .promobox.centered .promobox-column {
    max-width: 100%;
  }

  /* production page */

  .content-details {
    padding:2rem 1rem
  }

  .multicard-container {
    padding:0;
    flex-direction: column;
  }

  

  .bio-content {
    flex-direction: column;
  }
  .bio-content .headshot, .bio-content .programs-promo {
    width:100%;
    height:100%;
  }

  .details.multicard, .bio.multicard {
    padding:1rem;
  }



.info-card, .details.multicard {
  padding-top:2rem;
}

.details.multicard.donate-now {
  padding-top:1rem;
}

.details.multicard .cast, .details.multicard .auto-cols.two-cols {
  columns:1;
}

.donate-now p {
  max-width:100%;
  width:100%;
}



.content-details .show-poster {
  display: block;
  padding:1rem 0 2rem 0;
  width:100%;
  max-width:100%;
}

.content-details .show-poster img {
  display:none;
}

.content-details .show-poster .register {
  display:block;
  margin:0 auto;
  width:75%;
}

.content-details .details {
  min-width:auto;
  max-width:100%;
}
.grid-container {
  grid-template-columns: repeat(1, 1fr); /* Creates 3 columns, each taking 1 fractional unit of available space */
  gap: 16px; /* Adds a 10px gap between grid items */
}

}



/* smaller mobile screens */
@media only screen and (max-width: 24rem) {

  .header {
    padding-bottom: .75rem;
  }

  .header .tagline {
    font-size: .8rem;
    padding: 1rem .5rem .5rem;
  }

  .header .logo {
    max-width: 45%;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr); /* Creates 3 columns, each taking 1 fractional unit of available space */
    gap: 16px; /* Adds a 10px gap between grid items */
  }
}

/* ipad pro and smaller web */
@media only screen and (min-width: 50rem) and (max-width: 85rem) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* Creates 3 columns, each taking 1 fractional unit of available space */
    gap: 16px; /* Adds a 10px gap between grid items */
  }
  .main-nav ul {
    justify-content: flex-end;
    gap:1rem;
  }
  .main-nav ul {margin-left:145px;}
  
}




/* larger screens > 480px wide */
@media only screen and (min-width: 30rem) {
  .container {
    margin: 0px auto;
    max-width: 1400px;
  }
 
}
/* 
@media only screen and (max-width:82rem) {
  .main-nav ul  {
    justify-content: flex-end;
  
  }
}
@media screen and (max-width: 80rem) {
  .main-nav ul li {font-size:16px;}
} */



/* PRINT */
@media print {
  img {
    display: none;
  }
}