/* Varibles ; use with var() function; ex. var(highlight)*/
:root {
    --highlight: #DDD;
    --active: #BBB;
}

/* Mobile Stylings */

@media (max-width: 1270px) {
    /* hide .desktop */
    .desktop {
        display: none !important;
    }

    /* Display Cast and Crew as grid */
    .column {
        width: 100% !important;
    }

    .assets {
        line-height: 0;
        -webkit-column-count: 1 !important;
        -webkit-column-gap:   0px !important;
        -moz-column-count:    1 !important;
        -moz-column-gap:      0px !important;
        column-count:         1 !important;
        column-gap:           0px !important;
    }
}

@media (max-width: 730px) {
    /* hide .desktop */
    .bigMobile {
        display: none !important;
    }
}

/* General Stylings */

html {
    height: 100%;
}

a {
    text-decoration: none;
    color: white;
}

body {
    -webkit-text-size-adjust: none;
    margin: 0;
    font-family: "cooper-black-std", serif;
    font-style: normal;
    font-size: 16px;
    color: white;
    height: 100%;
    background-color: grey;
    background-image: url('../JPEG/webbg-dark.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    text-shadow: 2px 2px black;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* offsetting anchor tag position to acount for nav bar */
a.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

/* Navigation bar */

#nav {
    top: 0;
    text-align: center;
    background-color: grey;
    position: fixed;
    width: 100%;
    z-index: 4;
    padding: 20px 0;
    margin: 0;
}

#nav li {
    display: inline;
}

#nav a {
    text-decoration: none;
    padding: 0 30px;
    color: white;
}

/* Background styling */

#background {
    height: 100%;
    margin-top: 60px;
}

#trailer {
    font-size: 0;
}

/* Kaleidoscope stills styling */
.kaleidaCanvas {
    z-index: 1;
    position: relative;
    height: 45%; /* Adjust this value as needed */
    width: 100%;
    overflow: hidden;
}

.kaleidaCanvasOld {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure content above and below the kaleidoscope effect has a background */
#background > canvas:not(.kaleidaCanvas) {
    position: relative;
    z-index: 2;
    background-color: grey;
    background-image: url('../JPEG/webbg-dark.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/* about the movie text */

.paragraphContainer {
    text-align: center;
    margin: auto;
    width: 75%;
    font-size: 16px;
}

/* Biography styling */

.column {
    float: left;
    width: 46%;
    padding: 2%;
}

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

.headshotWrapper {
    margin: 2%;
    width: 40%;
    position: relative;
    padding-bottom: 40%;
    height: 0;
    float: left;
    overflow: hidden;
}

.headshot {
    position: absolute;
    display: block;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10%;
}

.column h2{
    margin: 2%;
}

#about, #contactUs {
    display: flex;
}

/* embedded video */

.videoWrapper {
    z-index: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-top: 59px;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Form submission */
input[type=text], input[type=email], input[type=submit] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px soild #ccc;
    box-sizing: border-box;
}

/* Social Links */

#socials, #laurels, #watchNow {
    text-align: center;
}

#social, #laurel {
    display: inline-block;
    width: 20%;
    height: 20%;
    margin: 1%;
}

#watchNow {
    display: inline-block;
    width: 45%;
    height: 45%;
    margin: 10%;
}

#social img, #laurel img, #watchNow img{
    width: 100%;
    height: 100%;
}

/* business card */

#first {
    margin-top: 59px;
}

#last {
    margin-bottom: 59px;
}

.card {
    text-decoration: none;
    text-align: right;
    padding: 2%;
    margin: 0;
    overflow: hidden;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.icon {
    margin: 2%;
    width: 25%;
    max-height: 100%;
    position: relative;
    padding-bottom: 25%;
    height: 100%;
    float: left;
}

.assets {
    line-height: 0;
    -webkit-column-count: 2;
    -webkit-column-gap:   0px;
    -moz-column-count:    2;
    -moz-column-gap:      0px;
    column-count:         2;
    column-gap:           0px;
}

.assets img{
    width: 100% !important;
    height: auto !important;
}