:root {
    --actorange: #ff9933;
    --dkorange: #cc6633;
    --bgorange: #ffcc66;  
}

img.logo {
  display: inline;
  content: url(/images/ActBrowardLogo.svg);
  text-align: center;
  margin: 0 auto;
  width: 20%;
  max-height: 300px;
}

.banner {
  display: inline;
  text-align: center;
  width: 78%;
  min-height: 75px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.bannerimg {
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
}

header {
  max-width: 1080px;
  margin: auto;
}

nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    text-align: center;

}

nav ul {
    list-style-type: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
    font-size: 1.25em;
    font-weight: bold;
    background-color: var(--dkorange);
    margin: 2px; 
    border-radius: 5px;
    padding:0;
    width:100%;
}

nav a {
  color: white;
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px;
}

nav a:hover {
  color: var(--dkorange);
  text-decoration: none;
}

nav ul:hover {
  color: var(--dkorange);
  background-color: var(--actorange);
  text-decoration: none;
}

body {
    display: block;
    align-items: center;
    background-color: var(--bgorange);
}

h1 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 3em;
  font-weight: bold;
  color: white;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2.25em;
  }
}

h2 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 2em;
  font-weight: bold;
  color: white;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 1.75em;
    text-decoration: none;
  }
}

h3 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  h3 {
    font-size: 1.25em;
  }
}

h4 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1.0em;
  color: white;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  h4 {
    font-size: 0.75em;
  }
}

p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1em;
  text-align: justify;
  color: var(--dkorange);
  margin: auto;
  background-color: white;
  margin: 5px;
  padding: 5px;
  width: fit-content;
}

a {
  color: var(--dkorange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



li {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1em;
  text-align: justify;
  color: var(--dkorange);
  background-color: white;
  margin: 5px;
  max-width: 600px;
}

.imgfit {
  max-width: 100%;
  margin-top: 5px;  
}

.flex {
  display: flex;
  flex-wrap: wrap;
  max-height: 20%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  text-align: center;
  padding: 0px;
  max-width: 1080px;
  margin: auto;
}

.indexbox {
  display: inline-block;
  background-color: var(--actorange);
  height: fit-content;
  border-radius: 10px;
  width:auto;
  border-color: var(--bgorange);
  border-width: 4px;
  border-style: solid;
}

a .indexbox:hover {
  background-color: var(--dkorange);
}

.indexboxpic {
  border-radius: 5px;
}

h3 #month {
  width: auto;
  background-color: var(--bgorange);
  color: var(--dkorange)
}

.childpgbox {
  display: inline;
  background-color: var(--actorange);
  border-radius: 10px;
  max-width: 1080px;
  height: auto;
  border-color: var(--bgorange);
  border-width: 4px;
  border-style: solid;
  margin: auto;
}

#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
}

@media only screen and (max-width: 700px) {
  #about {
  display: block;
  }
}

#calendar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: var(--actorange);
  width: auto;
  height: auto;
  border-color: var(--bgorange);
  border-width: 4px;
  border-style: solid;
}

@media only screen and (max-width: 1079px) {
  #calendar {
    display: block;
  }
}

#classes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--actorange);
  max-width: 1080px;
  height: auto;
  border-color: var(--bgorange);
  border-width: 4px;
  border-style: solid;
}

@media only screen and (max-width: 800px) {
  #classes {
    display: block;
  }
}

.classposter {
  max-width: 800px;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media only screen and (max-width: 799px) {
  .classposter {
    display: block;
    width: 100%;
  }
}

#productions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
}

@media only screen and (max-width: 600px) {
  #productions {
    display: block;
  }
}

.prodinfo {
  background-color: var(--dkorange);
  width: 75%;
  margin: auto;
  margin-bottom: 40px; 
  height: fit-content;
}

#castandcrew {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  margin-top: 20px;
}

.member {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  width: 250px;
  height: auto;
  padding: 5px;
  margin: 5px;
}

@media only screen and (max-width: 501px) {
  .member {
    width:100%
  }
}

.name {
  color: var(--dkorange);
  width: fit-content;
}

.title {
  color: var(--dkorange);
  width: 100%;
}

.memberpic {
  width: 80%;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  border-color: var(--actorange);
}

.smlinks {
  display: inline-flex;
}

.smicon {
  height: 40px;
  padding: 5px
}

#headshots {
  display: block;
  margin: auto;
  padding: 5px;
}

.headshotpricelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  margin-top: 20px;
}

.headshotpackage {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  max-width: 327px;
  height: auto;
  padding: 5px;
  margin: 5px;
}

@media only screen and (max-width: 501px) {
  .headshotpricelist {
    width:100%
  }
}

.headshotpackagename {
  color: var(--dkorange);
  width: fit-content;
}

.headshotprices {
display: inline-flex;
padding: 5px;
}

.headshotpackageprice {
  color: white;
  width: fit-content;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--bgorange);
  background-color: var(--dkorange);
  padding: 5px;
  margin: auto;
}

.headshotpackagepricediscount {
  color: white;
  width: fit-content;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--bgorange);
  background-color: var(--actorange);
  padding: 5px;
  margin: 5px;
  margin: auto;
}

#Membership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    max-width: 1080px;
    padding: 5px;
}

@media only screen and (max-width: 800px) {
  #Membership {
    display: block;
  }
}

.membershiptext {
  background-color: white;
  padding: 10px;
  max-width: 100%;
}

#membershipbenefits {
  display: block;
  margin: auto;
  padding: 5px;
  background-color: white;
}

.jointodaybutton {
  background-color: var(--dkorange);
  color: var(--bgorange);
  border-radius: 5px;
  border-style: solid;
  border-color: var(--bgorange);
  margin: auto;
  width: fit-content;
  padding: 10px;
}

#resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  margin-top: 20px;
  max-width: 1080px;
}

@media only screen and (max-width: 600px) {
  #resources {
    display: block;
  }
}

.actingresource {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  width: 300px;
  height: auto;
  padding: 5px;
  margin: 5px;
}

.actingresource:hover {
  background-color: white;
}

.resourcepic {
  width: 80%;
  margin: auto;
}

.resourcepages {
  max-width: 1080px;
  display: block;
  margin: auto;
  padding-left: 10%;
  padding-right: 10%
}

@media only screen and (max-width: 600px) {
  .resourcepages {
    padding: 0%
  }
}

.steps {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  width: 100%;
  height: auto;
  padding: 5px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .steps {
    width: 90%
  }
}

.steptitle {
  text-decoration: solid;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1.5em;
  font-weight: bold;
  color:var(--dkorange);
  margin: auto;
}

.stepdetail {
  text-decoration: solid;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 1.0em;
  color:var(--dkorange);
  text-align: left;
  background-color: white;
  padding: 5px;
}

.stepdetail2 {
  text-decoration: solid;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 0.8em;
  color:var(--dkorange);
  text-align: left;
  padding-left: 20px;
  padding-top: 5px;
  background-color: white;
}

ol.numbered {
  list-style-type: decimal;
}

ol.loweralpha {
  list-style-type: lower-alpha;
}

ol.lowerroman {
  list-style-type: lower-roman;
}

#weeklymeetings {
  display: block;
  margin: auto;
  padding: 5px;
}

.nextmeeting {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  width: 95%;
  height: auto;
  padding: 5px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.previousmeetings {
  background-color: var(--actorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  width: 95%;
  height: auto;
  padding: 5px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.previousmeeting {
  background-color: var(--bgorange);
  border-style: solid;
  border-color: var(--dkorange);
  border-radius: 5px;
  display: block;
  width: 250px;
  height: auto;
  padding: 5px;
  margin: 5px;
}


@media only screen and (max-width:700px) {
  .previousmeeting {
    width: 90%
  }
}

footer {
  width: 100%;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;   
  font-size: 0.75em;
  color: var(--dkorange);
  background-color: var(--bgorange);
  align-items: center;
  text-align: center;
  position: relative;
  bottom: 0px;
  margin: 0 0;
}