/* Variables */

:root {
    --choir-green: #2E564E;
    --choir-yellow: #E0B535;
}

/* Typography */

html, body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--choir-green);
}

*:not(nav) {
    background-color: #efefef;
}

#navbar li a {
    text-decoration: none;
    /* color: black; */
    color: var(--choir-green);
    transition-duration: 0.5s;
}

#navbar li {
    transition: 0.5s ease-in-out;
}

#navbar li:hover:not(:first-child):not(#about) {
    text-decoration: underline;
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}

#navbar li a:hover:not(#logo), #navbar li:hover:not(:first-child) {
    color: #0170b9;
    transition-duration: 0.5s;
}

#navbar li:active {
    opacity: 0.9;
}

ul {
    list-style-type: none;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #3a3a3a;
    color: white;
    height: 30rem;
}

footer div {
    width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer div h3 {
    align-self: start;
    text-transform: uppercase;
}

#footersocial div a {
    color: white;
    text-decoration: none;
    transition-duration: 0.25s;
}

#footersocial div a:hover {
    color: #0170b9;
    transition-duration: 0.25s;
}

#footersocial div a p {
    display: flex;
    flex-direction: row;
}

#footersocial div a p i {
    margin-right: 0.5rem;
    font-size: larger;
}





/* Classes */

.dropdown {
    display: inline-block;
}

.dropdowncontent {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    min-width: 160px;
    z-index: 1;
    padding-top: 1rem;
}

.dropdowncontent a {
    /* color: black; */
    color: var(--choir-green);
    padding: 12px 6px;
    display: block;
    text-align: left;
    transition-duration: 0ms;
    background-color: #ffffff;
}

.dropdowncontent a:hover {
    background-color: #efefef;
    transition-duration: 0ms;
}

.dropdown:hover .dropdowncontent {
    display: block;
    cursor: pointer;
}

.lineright {
    height: 3px;
    width: 15%;
    background-color: rgb(0, 201, 242);
}

.socialimages {
    width: 10rem;
}

.socialimagesfacebook {
    width: 20rem;
}

.collapsible {
    outline: none;
    background-color: #f9f9f9;
    border: none;
    width: 100%;
    font-size: xx-large;
    height: 5rem;
    display: block;
    cursor: pointer;
    transition-duration: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
}

.collapsible:after {
    content: '\002B';
    padding: 0 1rem;
    
}

.active:after {
  content: "\2212";
}

.collapsiblecontent {
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    transition: max-height 0.2s ease-out;
}

.collapsiblecontent ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0;
}

.collapsiblediv {
    margin-bottom: 3rem;
}

.active, .collapsible:hover {
    background-color: #999;
    transition-duration: 1s;
}

.italicbold {
    font-weight: bold;
    font-style: italic;
}

.row > .column {
    padding: 0 1rem;
    height: 10rem;
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    justify-self: center;
    height: 100rem;
    max-width: 82vw;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.modal .column {
    float: left;
    width: 50%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.925);
}

.modalcontent {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    top: 15%;
}

.modalcontent img {
    max-height: 60vh;
    max-width: 100%;
    object-fit: contain;
    background-color: black;
}

.photos {
    width: 18rem;
    height: 9rem;
    object-fit: cover;
    object-position: center;
    transition-duration: 0.5s;
    padding: 0.25rem;
    margin: 0 2rem;
    box-shadow: 0 0 10px 2px;
}

.photos:hover {
    cursor: pointer;
    transform: scale(1.25);
    opacity: 0.75;
    transition-duration: 0.5s;
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.myslides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.captioncontainer {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    display: none;
}

img.demo {
    opacity: 0.6;
}

img.hovershadow {
    transition: 0.3s;
}

.hovershadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60vw;
    /* background-color: #0170b9; */
    padding: 3rem 0;
}

form input:not(:last-of-type), form textarea {
    width: 100%;
    height: 3rem;
    border-width: 1px;
    margin-bottom: 2rem;
    background-color: #efefef;
}

form input:not(:last-of-type), form textarea {
    padding-left: 1rem;
}

form textarea {
    height: 10rem;
}

form label {
    display: flex;
    align-items: start;
}

#homeabout .leftdiv {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 15rem;
}

#homeabout .leftdiv h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

#homeabout .leftdiv p {
    margin-right: 2rem;
}

#homeabout .rightdiv {
    width: 50%;
    margin: 5rem 15rem 0 0;
}


.rightdiv img {
    height: 70%;
}

.teamleft {
    width: 75%;
    padding: 0 1rem;
}

.teamright {
    width: 10rem;
    float: right;
    display: inline;
}

.teamcontainer {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.teamnames {
    font-size: 2rem;
}

.membersdiv {
    /* display: flex; */
    flex-direction: column;
    /* width: 80vw; */
    /* justify-self: center; */
}

.fandldiv, .memberdouble div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 15rem;
}

.fandldiv {
    background-color: var(--choir-green);
    color: var(--choir-yellow);
}

.memberdouble {
    display: flex;
    flex-direction: row;
    background-color: #efefef;
    padding: 0 20rem;
    color: var(--choir-green);
}

.fandldiv p {
    width: 50%;
}

.memberdouble div p {
    width: 75%;
}

.fandldiv h1, .memberdouble div h1 {
    text-transform: uppercase;
}




/* ID's */

#navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

#logotext {
    display: flex;
    flex-direction: row;
}

#logotext h1 {
    padding: 0.5rem 0 0 1rem;
}

#masthead {
    display: flex;
    justify-self: center;
}

#masthead iframe {
    width: 60rem;
    height: 30rem;
    background-color: #3a3a3a;
    padding: 1rem;
    margin: 3rem 0;
}

#mastheadimage {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 50rem;
    background: url(../images/homepagemasthead.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

#mastheadimage h1, #mastheadimage div {
    margin-left: 15rem;
    margin-bottom: 15rem;
}

#mastheadimage h1 {
    font-size: 5rem;
    color: white;
    padding-bottom: 0;
    margin-bottom: 0;
    text-shadow: 2px 2px black;
}

#homeabout {
    display: flex;
    justify-content: space-around;
    height: 40rem;
}

#footerdiv {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

#charityeventssurround {
    width: 100%;
    background: url('../images/musicnotes.png') center no-repeat;
    background-color: #191a1f;
}

#charityeventsdiv {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
    height: 15rem;
    width: 60%;
    color: white;
    padding: 1rem 0;
}

#charityeventsdiv h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#charityeventsdiv p {
    font-size: 26px;
    text-align: center;
    padding-top: 2rem;
}

#socialmediadiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#follow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#videodiv {
    height: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
}

#videodiv iframe {
    height: 100%;
    width: 100rem;
}

#footersocial {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 20rem;
}

#footersocial div {
    width: min-content;
    align-items: start;
    font-size: 1.25rem;
}

#footernav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 20rem;
    font-size: 1.25rem;
}

#footernav li {
    width: max-content;
}

#footernav li a {
    color: white;
    text-decoration: none;
    transition-duration: 0.25s;
}

#footernav li a:hover {
    color: #0170b9;
    transition-duration: 0.25s;
    cursor: pointer;
}

#footercharity {
    align-items: start;
    height: 20rem;
}

#historyheader {
    display: flex;
    background-color: #efefef;
    height: 10rem;
    align-items: center;
    font-size: x-large;
    text-transform: uppercase;
    justify-content: center;
}

#historyheader h1 {
    width: 60rem;
}

#historytext, #masthead {
    display: flex;
    justify-content: center;
    align-items: center;
}

#historytext {
    display: flex;
    flex-direction: column;
    font-size: large;
    width: 60rem;
    justify-self: center;
    margin-bottom: 1rem;
}

#ceremonymasthead {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50rem;
    background: url('../images/wedding.jpg');
}

#ceremonymasthead h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#ceremonyintro, #ceremonyreasonsdiv {
    padding-left: 20rem;
}

#ceremonyintro {
    margin-bottom: 2rem;
}

#ceremonyintro h1 {
    font-size: 2.25rem;
    text-transform: uppercase;
    margin: 3rem 0;
}

#ceremonyreasonsdiv p {
    padding-right: 20rem;
}

#ceremonyreasonsdiv {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

#concertsmasthead {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50rem;
    background: url('../images/church.jpg');
}

#concertsmasthead h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px black;
    font-size: 3rem;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#concertsinfo {
    padding: 3rem 20rem;
    display: flex;
    flex-direction: column;
}

#concertacknowledgement {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

#photomasthead h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    height: 10rem;
}

#eventmasthead {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    background-color: #efefef;
}

#eventmasthead h1 {
    font-size: 2rem;
    text-transform: uppercase;
}

#eventyeardiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    padding-top: 2rem;
}

#new {
    height: 40rem;
    display: flex;
    justify-self: center;
    align-items: center;
}

#form {
    display: flex;
    justify-content: center;
}

#joincontent {
    justify-self: center;
    width: 80rem;
}

#joincontent img {
    width: 10rem;
    display: inline;
    float: left;
    margin-right: 1.5rem;
}

#joincontent p {
    font-size: large;
}

#span {
    margin-top: 4rem;
    font-weight: bold;
    font-style: italic;
}

#teaminfo {
    width: 80rem;
}

#teamimage1 {
    width: 20rem;
    float:inline-end;
    padding-left: 2rem;
    display: flex;
}

#teamimage2 {
    width: 20rem;
    float:inline-start;
    padding-right: 2rem;
    display: flex;
}

#surround {
    display: flex;
    justify-content: center;
}


/* Media Queries */