/* General styles */
:root {
    --stYellow : #c4c400;
    --stPink : deeppink;
}
::-webkit-scrollbar {
    display: none;
}
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
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: red;
    border: 1px solid darkred;
    -webkit-box-shadow: 6px 0px 16px 2px black;
    -moz-box-shadow: 6px 0px 16px 2px black;
    box-shadow: 6px 0px 16px 2px black;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    color: white !important;
    opacity: 1 !important;
}
.header-content h3 {
    font-size: 60px;
    letter-spacing: 0.8px;
    font-weight: bolder;
    color: #adad08;
    font-family: Brush Script MT, Brush Script Std, cursive;
    text-decoration-line: underline;
}
nav ul {
    text-align: center;
    list-style-type: none;
    padding: 1em;
}
nav ul li a {
    color: white;
    font-size: 18px;
    text-decoration-line: none;
}
nav ul li a:hover {
    color: white;
    text-decoration-line: none;
    cursor: default;
}

/* content section */
.section-header {
    color: #178866;
}
#about-us-text {
    color: #1dba85;
    margin: 0 15%;
}
video {
    width: 450px;
}
.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;
}
#aboutus {
    text-transform: uppercase;
}
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%;
    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: 50% !important; /* 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;
}

/* images styles */
#carousel {
    /* todo: make properly centered */
    position: relative;
    left: 25%;
    width: 50%;
    max-height: 350px;
    padding: 1em;
    border: 1px solid black;
    border-radius: 5px;
}
#carousel img {
    height: 300px;
}
#image-caption {
    font-weight: bold;
}

/* Form styles */
form {
    padding: 1em 3em;
    border-radius: 1em;
    width: 50%;
    margin: auto;
}
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: lighter;
    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: fit-content;
}
footer a img {
    height: 50px;
    padding: 0 1em;
}

/*@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: 600px) {
    .header-content {
        width: auto;
    }
}

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

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