/*****************************Global Styles*/
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 130%;
}

/*****************************Global Font Styles*/
h1, h2, h3, h4 {
  font-family: "Open Sans", sans-serif;
  margin-top: 0;
  line-height: 110%;
}

h2 {
  font-size: 36px;
  margin: 0 0 30px 0;
}

h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

p, li, a { 
  font-size: 14px;
}

section a {
  color: #fff;
}

button {
  cursor: pointer;
}

/*****************************Global Section Styles*/
section.candy {
  background-image: url('../img/bg-home.png');
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 26%;
}

section div.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

img.circle {
  border: 10px solid #fff;
  border-radius: 100%;
  max-width: 200px;
  float: right;
  margin-left: 10px;
}

/*****************************Global Button Styles*/
a.btn,
button.btn {
  text-decoration: none;
  padding: 20px 40px;
  background-color: #216e95;
  border-color: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 4px;
  transition: all 100ms ease-out;
  display: inline-block;
}

a.btn:not(.nohover):hover,
button.btn:not(.nohover):hover {
  background-color: #ff3366;
}

/*****************************Global Miscellaneous Styles*/
.hidden { display: none; }

section.promo {
  background-color: #ff3366;
  color: #fff;
  min-height: 100vh;
}

section.promo div.wrapper {
  text-align: left;;
}

section.promo textarea {
  width: 100%;
  min-height: 70px;
  border-radius: 5px;
  background-color: #fd0061;
  border-color: #fff;
  padding: 6px;
  color: #fff;
}

/*****************************Home Section Styles*/
section#home div.wrapper {
  max-width: 540px;
}

section#home #logo {
  width: 100%;
  max-width: 318px;
}

/*****************************About Section Styles*/
section#about {
  background-color: #216e95;
  color: #fff;
}

section#about div.wrapper {
  text-align: left;
}

/*****************************Values Section Styles*/
section#definitions {
  background-color: #e32252;
  color: #fff;
}

section#definitions div.wrapper {
  text-align: left;
}

section#definitions h3:not(:first-child) {
  margin-top: 30px;
}

/*****************************Dates Section Styles*/
section#dates {
  background-image: url('../img/market-vinestreet.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

section#dates div.wrapper {
  text-align: left;
}

section#dates h2:after {
  content: '';
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
  max-width: 500px;
}

section#dates div.overlay {
  background-color: rgba(0, 0, 0, .80);
  width: 100%;
  height: 100%;
}

section#dates a {
  color: #42c0ff;
}

section#dates ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: '1000px';
  padding-left: 0;
}

section#dates ul > li {
  flex: 1 0 31%;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0 5px 10px 5px;
}

section#dates .past {
  text-decoration: line-through;
}

section#dates .next {
  background-color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

section#dates .next::before {
  content: 'NEXT EVENT!';
  display: block;
}


/*****************************Shop Section Styles*/
section#shop {
  background-color: #8517a3;
  color: #fff;
}

section#shop div.wrapper {
  text-align: left;
}

section#shop img#two-ounce-tin {
  border: 10px solid #fff;
  border-radius: 100%;
  max-width: 200px;
  float: right;
  margin-left: 10px;
}

section#shop .disclaimer {
  max-width: 390px;
}

section#shop .disclaimer p {
  font-size: 12px;
  line-height: 110%;
}

section#shop .disclaimer a {
  color: #fff;
  font-size: inherit;
}

/*****************************Merch Section Styles*/
section#merch {
  background-color: #f78214;
  color: #fff;
}

section#merch div.wrapper {
  text-align: left;
}

/*****************************Newsletter Section Styles*/
section#email-list {
  background-color: #177d17;
  color: #fff;
}

section#email-list div.wrapper {
  max-width: 560px;
}

section#email-list form input[name="Email"] {
  border: none;
  border-radius: 5px; 
  padding: 10px;
  font-size: 16px;
}

section#email-list form#email-form input[name="Email"]:focus-visible {
  border: none;
}

section#email-list form#email-form button {
  border-radius: 5px;
  border: none;
  padding: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 100%;
  background-color: #e32252;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
}

section#email-list form#email-form button:disabled {
  background-color: rgb(80, 78, 78);
  color: rgb(204, 200, 200);
}

/*****************************Footer Section Styles*/
section#footer {
  padding: 10px;
}

section#footer div.wrapper {
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

section#footer div.content a {
  font-size: inherit;
}

section#footer div.social a {
  display: inline-block; 
  margin: 5px;
}

section#footer p {
  font-size: 10px;
  margin: 0;
  line-height: 150%;
}