@import url("reset.css");

/* STICKY FOOTER */
html,
body {
  margin: 0;
  padding: 0;
}
.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.site-content {
  flex: 1;
  padding: 1rem;
}
/* END STICKY FOOTER */

html { 
  font-size: 16px; 
  overflow-y: scroll;
  overflow-x: hidden;
  /* margin: 0;
  padding: 0; */
}

body {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Karla', sans-serif;
  font-size: 62.5%; /* 1em = 10px , 1rem is 16px */
  /* margin: 0;
  padding: 0; */
  background: black;
  color: white;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h2 {
  font-weight: 800;
}
p {
  margin: .75em 0;
  font-size: 18px;
}
a {
  color: white;
}
a:hover {
  color: #ff7800;
}
.content a {
  text-decoration: none;
  border-bottom: 1px solid;
  font-weight: 700;
}
strong {
  font-weight: 700;
}

/* -----------------------------
  UTILITY CLASSES
* ----------------------------*/
/* Break out of Bootstrap container for 100% full width elements */
.break-out {
  width: 100vw; 
  position: relative;
  background-color: rgba(0, 0, 0, 0.5); /* was .25 */
  left: calc(-1 * (100vw - 100%) / 2);
  padding: 0;
  margin: 0;
  z-index: -1;
}

.fullwidth-image {
  padding: 0;
  margin: 40px 0;
  /* height: 500px; */
  height: 400px; /* was 500 with previous picture */
  /* line-height: 400px; */
  font-weight: 600;
  background: url('img/manhattan-skyline.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullwidth-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5); /* was .25 */
  display: block;
  height: 400px;
  width:100vw;;
}
.fullwidth-image h3 {
  font-size: 3em;
  color: white;
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);

}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 2em;
  line-height: 1.25em;
  position: relative;
}


header {
  height: auto;
  position: relative;
  padding: 10px 0;
}


#social-links {
  display: block;
  text-align: right;
  position: relative;
  padding: 1rem;
  z-index: 999;
}

#social-links a {
  text-decoration: none;
}

#social-links img {
  height: 32px;
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
  border: 2px solid transparent;
  /* border-radius: 50%; */
  padding: 0 4px;
}

#social-links img:hover {
  -webkit-filter: grayscale(100%) !important;
  filter: grayscale(100%) !important;
}


.logo-title h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 35px;
  letter-spacing: 1.6px;
  position: relative;
  z-index: 999;
}
.logo-title {
  text-decoration: none;
  pointer-events:all;
  cursor: pointer;
}
.logo-title:hover {
  color: #ff7800;
}
#logo:has(img:hover) {
  color: #ff7800;
  cursor: pointer;
}
#logo img {
  width: 200px;
  pointer-events: auto;
  cursor: pointer;
}

/* MENU */
#menu {
  text-transform: uppercase;
  /* font-size: 1rem; */
  display: flex;
  justify-content: space-around;
  font-size: 20px;
}
#menu a {
  text-decoration: none;
  display: inline-block;
  display: block;
  max-width: 500px;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.center {
  text-align: center;
}

.content {
 padding: 20px;
 line-height: 1.5;
}
.no-top-margin {
  margin-top: 0;
}
.flex-columns {
  display: flex;
  flex-direction: row;
}
.left-img img {
  max-width: 500px;
  width: 100%;
  margin-right: 1rem;
}
/* .left-img {
  flex: 1 ;
} */
.right-text {
  flex: 2;
  padding-left: 1rem;
}
@media screen and (max-width: 797px) {
  .flex-columns {
    flex-direction: column-reverse;
  }
  .left-img {
    text-align: center;
  }
}

.intro {
  max-width: 1000px;
  margin-left: 127px;
  text-align: justify;
  margin: 0 auto;
}

/* HEADSHOTS */
#headshots {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#actor, #producer {
  padding: 0 1rem;
}
#headshots img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
#headshots img:hover {
  border: 1px solid #ff7800;
}

/* VIDEO */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* E MAIL */
.obfuscate span {
  display: none;
}

footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 4rem 2rem;
  font-size: 1.5em;
  line-height: 1.25em;
  position: relative;
}
span.left {
  float: left;
  display: block;
}
span.right {
  float: right;
  display: block;
}

@media screen and (max-width: 1210px) {
  .intro {
    margin-left: 0;
    padding: 0 20px;
    margin: 0 auto;
  }
  .headshot {
    margin-left:0;
  }
  .team {
    max-width: 920px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .description {
    max-width: 580px;
  }
}



@media screen and (max-width: 1010px) {
  .intro {
    margin-left: 0;
    padding: 0 20px;
    margin: 0 auto;
    text-align: left;
  }
  .headshot {
    margin-left:0;
  }
  .headshot, .headshot img {
    width: 200px;
  }
  .team {
    max-width: 720px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .description {
    max-width: 480px;
    text-align: left;
  }
}



@media screen and (max-width:800px) {
  .intro {
    margin-left: 0;
    padding: 0 20px;
    margin: 0 auto;
    text-align: left;
  }
  .headshot:first-of-type {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .headshot {
    margin-left:0;
    margin-bottom: 20px;
  }
  .headshot, .headshot img {
    width: 200px;
  }
  .team {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .description {
    max-width: none;
    width: 95%;
    text-align: left;
    margin-bottom: 40px;
  }
  .details {
    float: left;
    margin-left: 250px;
    margin-top: -200px;
  }
}

@media screen and (max-width:650px) {
  .fullwidth-image h3 {
    font-size: 2em;
  }
  .container::before {
    background-position-x: -932px;
  }
  .details {
    float: none;
    margin: 0;
    padding: 0;
  }
  footer>span {
    width: 100%;
    display: block;
    text-align: center;
  }
  .team {
    padding: 0;
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .container::before {
    background-position-x: -932px;
  }
}