/* General styles */
:root {
    --stYellow : #c4c400;
    --stPink : #b00d64;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.head-img {
    position: relative;
    opacity: 0.60;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-image: url("../images/SilvertoneHillsShoot-3.jpg");
    min-height: 100%;
}

/* Header content */
.header-content {
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    width: 50vw;
    background-color: black;
    border: 1px solid black;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    color: white !important;
    opacity: 1 !important;
}
.header-content h1 {
    letter-spacing: 4px;
    font-weight: bolder;
    color: #FFB8DB;  /*lighter pink for AA WCAG standard*/
    font-family: 'Righteous', cursive;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}
nav ul {
    list-style-type: none;
    padding: 1em;
}
nav ul li a {
    color: white;
    font-size: 18px;
    -webkit-text-decoration-line: none;
            text-decoration-line: none;
}
nav ul li a:hover {
    font-weight: bold;
    color: var(--stYellow);
}

/* content section */
.content-section {
    padding: 2em 4em;
    text-align: center;
}

.section-img-2 {
    position: relative;
    opacity: 0.60;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-image: url("../images/corktown.jpg");
    min-height: 500px;
}
.section-img-3 {
    position: relative;
    opacity: 0.60;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-image: url("../images/in-studio.jpg");
    min-height: 500px;
}
.section-content {
    position: absolute;
    width: 100%;
    top: 30%;
    color: white;
    text-align: center;
}
.section-content h2 {
    background-color: black;
}

.inner {
    margin: 0 auto;
    max-width: 50em;
    text-align: left;
}

h2 {
    font-size: 36px;
}
#aboutus p {
    font-size: 18px;
}
#carousel img {
    height: 400px;
    width: 1000px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}
#carousel ul li {
    background-color: var(--stPink);
}
#carousel ul li .active {
    opacity: 1;
}

.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    -webkit-filter: invert(100%);
            filter: invert(100%);
}
#music-links {
    margin-top: 1em;
    width: 25vw;
    min-width: 240px;
    padding: 1em;
    background: rgb(214,213,213);
    background: linear-gradient(162deg, rgba(214,213,213,0.80) 0%, rgba(255,255,255,1) 100%);
    border: black 1px solid;
    border-radius: 50px;
    box-shadow: 10px 10px 8px 0px rgba(0,0,0,0.6);
}
#music-links a img {
    height: 50px;
    padding: 0 1em;
}
footer {
    text-align: center;
}

/* popup styles */
/*.modal {
    display: none; !* Hidden by default *!
    position: fixed; !* Stay in place *!
    z-index: 1; !* Sit on top *!
    left: 0;
    top: 0;
    width: 100%; !* Full width *!
    height: 100%; !* Full height *!
    overflow: auto; !* Enable scroll if needed *!
    background-color: rgb(0,0,0); !* Fallback color *!
    background-color: rgba(0,0,0,0.4); !* Black w/ opacity *!
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; !* 15% from the top and centered *!
    padding: 20px;
    border: 1px solid #888;
    width: 80%; !* Could be more or less, depending on screen size *!
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal h1 {
    text-align: center;
}
#newletter-signup-form input {
    margin: 1em 1em 1em 0;
    padding: 4px;
}*/

/* Form styles */
form {
    padding: 1em 3em;
    border-radius: 1em;
    width: 50%;
    margin: auto;
}
#contactUs > p {
    font-size: 18px;
}
form input, form textarea, form select {
    width: 100%;
    font-size: 18px;
    border: 1px solid #ababab;
    border-radius: 4px;
    font-weight: normal;
}
label {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}
input, textarea, label {
    display: block;
    margin: auto;
}
.form-element {
    padding: 1em;
}
.submit-btn {
    color: white;
    background-color: var(--stPink);
    border: 1px var(--stPink) solid;
    border-radius: 0.25em;
    font-size: 18px;
    padding: 0.5em 1em;
}

/* footer styles */
footer {
    padding-bottom: 2em;
    margin: auto
}
footer div {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
footer a img {
    height: 50px;
    padding: 0 1em;
}

@media only screen and (max-width: 1080px) {
    #carousel img {
        height: 300px;
        width: 750px;
    }
}

@media only screen and (max-width: 1080px) {
    #carousel img {
        height: 200px;
        width: 500px;
    }
}

@media only screen and (max-width: 768px) {
    form {
        width: 80%;
    }
    form {
        padding-left: 0;
        padding-right: 0;
    }
    form .form-element {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 680px) {
    #carousel-wrapper {
        margin: 0;
        padding: 0;
        width: 100vw;
        position: relative;
        right: 3em;
    }

    iframe {
        width: 360px;
    }
}

@media only screen and (max-width: 600px) {
    .header-content {
        width: auto;
    }
}

@media only screen and (max-width: 480px) {
    iframe {
        width: 100vw;
        position: relative;
        right: 64px;
    }
}

@media only screen and (max-width: 425px) {
    form {
        width: 95%;
    }
}

@media only screen and (max-width: 379px) {
    #index-captcha {
        position: relative;
        right: 48px;
    }
}