/**
AFCA Website Base Design Elements:

WEBSITE TYPOGRAPHY
CSS rules to specify families:
font-family: 'Great Vibes', cursive;
font-family: 'IM Fell English', serif;
font-family: 'IM Fell English SC', serif;
font-family: 'Limelight', sans-serif;
font-family: 'Roboto', sans-serif;
1. Roboto for Headlines.
2. IM Fell English Body Copy & Main Navigation.
3. Great Vibes for Quotes & Drop Caps
4. Limelight for Membership Buttons

WEBSITE COLOR PALLETTE
rgba(198, 196, 195, 1) or #C6C4C3 light gray
rgba(155, 149, 154, 1) or #9B959A medium gray
rgba(122, 114, 106, 1) or #7A726A medium brownish gray
rgba(45, 39, 35, 1) or #2D2723 dark brownish black
rgba(175, 73, 44, 1) or #AF492C rust
**/

/**All box-sizing will include margins, padding and borders**/
html {
    box-sizing: border-box;
}

/**Everything in element will inherit the box-sizing of that element**/
*, *:before, *:after {
    box-sizing: inherit;
}

/**Removes Margin and Padding set by different browsers**/
* {
    margin: 0;
    padding: 0;
}

/**No images will ever be more than 100% of the viewport width**/
img {
    max-width: 100%;
}

/**Sets the base body copy to be IM Fell English or default to a serif font**/
body {
    font-family: 'IM Fell English', serif;
    background-color: rgba(0, 0, 0, 1);
    font-size: 120%;
}

/**Basic Page Grid Container, Sections & Styling**/
.container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 10px;
	color: rgba(0, 0, 0, 1);
    margin: 0 auto;
    max-width: 1200px;
}

.container > * {
    grid-column: 1 / span 12;
}

.header {
    color: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 5px 0px 5px 0px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: rgba(175, 73, 44, 1);
    margin-bottom: 10px;
}

.largeImages {
    padding: 15px 40px 0px 40px;
}

.largeImages2 {
    padding: 15px 40px 0px 40px;
}

.content {
    padding: 0px 50px;
    color: rgba(255, 255, 255, 1);
}

.content2 {
    padding: 0px 50px;
    color: rgba(255, 255, 255, 1);
}

.content p::first-letter {
    font-size: 200%;
    font-family: 'Great Vibes', cursive;
    line-height: 50%;
    color: rgba(175, 73, 44, 1);
}

.container .content > ul > li {
    list-style: none;
    color: rgba(175, 73, 44, 1);
    padding:3px;
}

/**Form Styling**/
.formWidth {
    display: block;
    margin: 0 auto;
    width: 290px;
}

.inputColorWidth {
    background-color: rgba(255, 255, 255, .75);
    margin: 0;
    display:table-cell; 
    width: 286px;
}

.formWidth2 {
    display: block;
    margin: 0 auto;
    width: 282px;
}

.inputColorWidth2 {
    background-color: rgba(255, 255, 255, .75);
    margin: 0;
    display: table-cell; 
    width: 278px;
	border-radius: 0;
    padding: 4px;
	border: 0px;
	-webkit-appearance: none;
	appearance: none; 
}

::placeholder {
  color: rgba(45, 39, 35, .6);
}

#exposure {
    background-color: rgba(198, 196, 195, 1);
}

#time {
    background-color: rgba(198, 196, 195, 1);
}

#FanFair {
    background-color: rgba(198, 196, 195, 1);
}

.formbutton {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(175, 73, 44, 1);
    border: 2px solid rgba(98, 23, 2, 1);
    padding: 5px;
    border-radius: 5px;
    
}

h3 {
    text-align: center;
    margin: 0 auto;
    width: 250px;
    padding: 0px 2px;
	border-radius: 3px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(175, 73, 44, 1);
}

ol { 
    padding: 0px 30px 0px 30px;
}

#smallgreen {
    font-size: .75em;
    color: rgba(76, 187, 23, 1);
}

.smallred {
    font-size: .75em;
    color: rgba(175, 73, 44, 1);
}

.footer {
    color: rgba(255, 255, 255, 1);
    text-align: center;
    padding-top: 10px;
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: rgba(175, 73, 44, 1);
    margin-top: 10px;
	padding-bottom: 10px;
}

.simple {
    margin-bottom: 5px;
    overflow: auto;
}

.simple2 {
    overflow: auto;
}

/**Styling for FAQs**/
details {
    margin: 0px 18px 0px -10px;
}

.extra_margin {
    margin-bottom: 5px;
}

details > summary {
    padding: 4px 12px 4px 12px;
    width: 100%;
    background-color: rgba(122, 114, 106, 1);
    border-right: 2px solid rgba(175, 73, 44, 1);
    border-left: 2px solid rgba(175, 73, 44, 1);
    cursor: pointer;
    list-style-image: url(../images/pointer_white.png);
}

details[open] > summary {
    list-style-image: url(../images/pointer_white_rotate.png);
}

details > p {
    margin: 0px;
    padding: 18px 12px 10px 12px;
    width: 100%;
    border-right: 2px solid rgba(175, 73, 44, 1);
    border-left: 2px solid rgba(175, 73, 44, 1);
    border-bottom: 2px solid rgba(175, 73, 44, 1);
}

.text_rust {
    color: rgba(175, 73, 44, 1);
}

details > p .text_gray {
    color: rgba(122, 114, 106, 1);
}

.horizontal-line{
	display:none;
}

@media (min-width: 600px) {
    .largeImages {
        grid-column: 1 / span 6;
        grid-row: 2;
        padding: 15px 50px 0px 50px;
    }
    .largeImages2 {
        grid-column: 1 / span 6;
        grid-row: 2;
        padding: 15px 300px 0px 300px;
    }
    .content {
        grid-column: 7 / span 6;
        grid-row: 2;
        padding: 0px 50px 0px 0px;
    }
	.horizontal-line{
		display: none;
		border-color: rgba(175, 73, 44, 1);
        height: 1px;
        width: 100%;
        grid-column: 1 / span 12;
        grid-row: 3;
        margin: 10px 0 0 0;
	}
}


/** unvisited footer link **/
.footer a:link {
    color: rgba(175, 73, 44, 1);
    text-decoration: none;
	display: inline-block;
	margin: 0 5px;
}

/** visited footer link **/
.footer a:visited {
    color: rgba(175, 73, 44, 1);
}

/** mouse over footer link **/
.footer a:hover {
    color: rgba(175, 73, 44, .7);
}

/** selected footer link **/
.footer a:active {
    color: rgba(175, 73, 44, 1);
}

.inline {
    display: inline-block;
}

/** unvisited inline link **/
.inline a:link {
    color: rgba(175, 73, 44, 1);
    text-decoration: none;
}

/** visited inline link **/
.inline a:visited {
    color: rgba(175, 73, 44, 1);
}

/** mouse over inline link **/
.inline a:hover {
    color: rgba(155, 149, 154, 1);
}

/** selected inline link **/
.inline a:active {
    color: rgba(175, 73, 44, 1);
}

.boring {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/** unvisited inline link **/
.boring a:link {
    color: rgba(175, 73, 44, 1);
    text-decoration: none;
}

/** visited inline link **/
.boring a:visited {
    color: rgba(175, 73, 44, 1);
}

/** mouse over inline link **/
.boring a:hover {
    color: rgba(155, 149, 154, 1);
}

/** selected inline link **/
.boring a:active {
    color: rgba(175, 73, 44, 1);
}

/** unvisited FAQ link **/
details p a:link {
    color: rgba(175, 73, 44, 1);
    text-decoration: none;
}

/** visited FAQ link **/
details p a:visited {
    color: rgba(175, 73, 44, 1);
}

/** mouse over FAQ link **/
details p a:hover {
    color: rgba(155, 149, 154, 1);
}

/** selected FAQ link **/
details p a:active {
    color: rgba(175, 73, 44, 1);
}

/** Styling Return to Top of Page Link **/
div .back_to_top {
    text-decoration: none;
    width: 25px;
    height: 25px;
    background-color: rgba(175, 73, 44, 1);
    border-radius: 3px;
    text-align: center;
    margin: 0 0 0 auto;
    position:fixed;
    top: 80%;
    right: 10px;
}

div .back_to_top a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

/** Dropdown Menu **/
/* Dropdown Button */
.dropbtn {
    background-color: rgba(175, 73, 44, 1);
    color: rgba(255, 255, 255, 1);
    padding: 5px 10px;
    font-size: .65em;
    border: none;
    font-family: 'IM Fell English', serif;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, .75);
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: .75em;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: rgba(198, 196, 195, 1);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: rgba(175, 73, 44, 1);
}

.steampunk {
    border: 3px solid rgba(255, 180, 0, 1);
    border-radius: 4px;
    color: rgba(0, 0, 0, 1);
    padding: 2px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Impact', sans-serif;
    font-size: 1em;
    margin: 5px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.steampunk1 {
    text-shadow: 1px 1px rgba(255, 255, 255, 1);
    background-image: linear-gradient(rgb(255, 223, 147,1), rgba(255, 180, 0, 1)); 
    color: rgba(0, 0, 0, 1); 
    border: 3px solid rgba(255, 180, 0, 1);
    border-radius: 4px;
    padding: 2px 10px;
}

.steampunk1:hover {
    text-shadow: 5px rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, .7);
    padding: 2px 10px;
}