/* html element selectors */

:root {
    --red: #2980b9;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

nav {
    height: 12%;
    display: flex;
    align-items: center;
    margin-left: 0;
    position: fixed;
    width: 100%;
    transition: 0.5s;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #282c34;
    background-color: #fff;
}

body {
    background-color: #282c34;
}

p {
    color: #fff;
    font-size: 16px;
    line-height: 130%;
}

h1 {
    color: #fff;
    font-size: 100px;
}

h3 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 15px;
}

button {
    width: 220px;
    color: #000;
    font-size: 16px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 3px;
    margin: 10px;
}

button:hover {
    background-color: var(--red);
    color: #fff;
}

hr {
    margin: 30px 10%;
}

video {
    border-radius: 10px;
    margin: 10px;
    width: 640px;
    height: 360px;
    background-size: 50%;
}


details {
    width: 80%;
    /* max-width: 500px; */
    box-sizing: border-box;
    margin-top: 5px;
    border-radius: 5px;
    background: #fff;
}

details summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    border-radius: 5px 5px 0px 0px;
}

details[open] > summary:before {
    transform: rotate(90deg);
}

summary {
    border-radius: 5px;
    border: 4px solid transparent;
    outline: none;
    padding: 1rem;
    display: block;
    background: var(--red);
    color: #fff;
    padding-left: 2.2rem;
    position: relative;
    cursor: pointer;
}

  
summary:before {
    content: "";
    border-width: 0.4rem;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 1.3rem;
    left: 1rem;
    transform: rotate(0);
    transform-origin: 0.2rem 50%;
    transition: 0.25s transform ease;
}

footer {
    color: #4a505e;
    text-align: center;
    padding: 20px 10px 10px 10px;
}

footer a {
    color: #4a505e;
    text-decoration: none;
}

footer a:hover {
    color: #bdbdbd;
}

/* css classes */

.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(90deg, #000000, #00000050, #00000040), url(images/header.jpg);
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
}

.banner-text {
    display: flex;
    align-items: center;
    height: 88%;
    padding-left: 8%;
    flex-basis: 50%;
}

.banner-text p {
    font-size: 18px;
    margin-left: 8px;
}

.banner-text button {
    margin-left: 8px;
}

.nav-logo {
    filter: opacity(0%);
    width: 200px;
    cursor: pointer;
    /* filter: brightness(0.15); */
    margin-left: 200px;
    transition: 0.5s;
}

.nav-items {
    flex: 1;
    text-align: right;
    margin-right: 200px;
}

.stickynav {
    background-color: #2f333c;
    background-image: url(images/logo.jpg);
    box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
    height: 9%;
    transition: 0.5s;
}

.stickynav a {
    color: #fff;
}

.stickynav .nav-logo {
    filter: opacity(100%);
    transition: 0.5s;
}

.text-shadow {
    text-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
}

.wrapper {
    border-radius: 0 0 10px 10px;
    background-color: #212121;
    margin: 0 12%;
    box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
}

.header-text {
    text-align: center;
    color: #fff;
    font-size: 25px;
    padding: 30px;
    line-height: 150%;
}

.container {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* .video-cardlater {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
    /* border: 1px solid #373737; */
    /* border-radius: 5px;
    margin-top: 30px;
    padding: 30px;
    transition: 0.5s; */
}

.video-cardlater .under-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    border: 1px solid #bdbdbd;
}

.video-cardlater h3 {
    background-color: var(--red);
    padding: 10px;
    border-radius: 5px;
} */

.header-buttons button {
    margin: 10px;
}

.quicklinks {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
}

.quicklinks a {
    text-decoration: none;
}

.quicklinks .card {
    width: 250px;
    height: 230px;
    border-radius: 10px;
    cursor: pointer;
    margin: 30px 15px;
    display: grid;
    background-position: center;
    background-size: cover;
    place-items: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
    transition: transform 0.5s;
}

.quicklinks .card h5 {
    color: #fff;
    background-color: #000;
    padding: 10px;
    border-radius: 4px;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.5s;
    opacity: 0;
}

.quicklinks .card:hover h5 {
    opacity: 90%;
}

.quicklinks .card:hover {
    transform: translateY(-20px);
}

.song-schedule {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 15%;
    margin-right: 15%;
    padding-bottom: 40px;
}

.song-schedule details .content p {
    color: #000;
    padding: 10px;
    padding-left: 25px;
    line-height: 300%;
}

.song-card {
    width: 600px;
    height: 345px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    padding: 15px 25px;
    margin: 30px 15px;
    place-items: center;
    box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
    display: grid;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}

.song-card h3 {
    background-color: var(--red);
    border-radius: 10px;
    transform: translateY(40px);
    filter: opacity(0%);
    padding: 0;
    padding: 5px;
    transition: 0.5s;
}

.song-card p {
    color: #fff;
    filter: opacity(0%);
    background-color: #000;
    border-radius: 10px;
    padding: 10px;
    transform: translateY(40px);
    /* transition: filter 0.5s; */
    transition: 0.5s;
}

.song-card:hover h3 {
    filter: opacity(95%);
    transform: translateY(0px);
}

.song-card:hover p {
    filter: opacity(90%);
    transform: translateY(0px);
}

.song-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* CSS images */

.quicklinks-image-1 {
    background-image: url(images/quicklinks/calendar1.jpg);
}

.quicklinks-image-2 {
    background-image: url(images/quicklinks/impact-song-list1.jpg);
}

.quicklinks-image-3 {
    background-image: url(images/quicklinks/info-mtg.jpg);
}

.quicklinks-image-4 {
    background-image: url(images/quicklinks/kick-off-mtg.jpg);
}

.quicklinks-image-5 {
    background-image: url(images/quicklinks/Week1-Schedule.jpg);
}

.quicklinks-image-6 {
    background-image: url(images/quicklinks/Week2-Schedule.jpg);
}

.quicklinks-image-7 {
    background-image: url(images/quicklinks/Week3-Schedule.jpg);
}

.quicklinks-image-8 {
    background-image: url(images/quicklinks/Week4-Schedule.jpg);
}

.poster-how-i-praise {
    background-image: url(images/How-I-Praise.jpg);
}

.poster-king-of-kings {
    background-image: url(images/King-of-Kings.jpg);
}

.songcardtest {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 30%;
    border-radius: 5px;
    display: grid;
    background: #2980b9;
    transition: 0.5s;
    cursor: pointer;
    margin: 20px;
}

.songcardtest:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.songcardtest img {
    border-radius: 5px 5px 0 0;
    width: 100%;
}

.songcardtest section {
    padding: 8px 10px 16px;
    transition: 0.5s;
}