/*
-----------------------------------------------
Styles
----------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&family=Karla:wght@800&display=swap');

/* CSS Variables
----------------------------------------------- */

:root {
    --white: #fff;
    --offwhite: #f4f4f4;
    --dark: #211f1f;
    --yellow: #dda22c;
}

/* Reset
----------------------------------------------- */

/* general reset */
html {overflow-y: scroll;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
table {font-size:inherit;font:100%;}
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
strong {font-weight: bold;}
i,em {font-style: italic;}

/* apply a natural box layout model to all elements */
* { 
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}

/* stops ie 7 badly scaling images */
img { -ms-interpolation-mode: bicubic; }

/* selection highlight */
::selection { 
	background: var(--yellow);
	color: var(--dark); 
	text-shadow: none;
}
::-moz-selection { 
	background: var(--yellow);
	color: var(--dark); 
	text-shadow: none;
}

/* fancy font-smoothing for webfonts */
html, html a {
    -webkit-font-smoothing: antialiased !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

html, body {
	color: var(--dark);
	background: var(--offwhite);
}
body {
	font-size: 100%;
	font-family: "Heebo", Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
	quotes: '\201c' '\201d';
}

strong em, 
em strong, 
h2 em {
    font-weight: bold;
    font-style: italic;
}

/* Text
----------------------------------------------- */

p {
	margin: 0 0 1.5em 0;
	line-height: 150%;
}
blockquote {
    font-style: italic;
}
blockquote p:before { 
	content: open-quote;
	margin-left: -0.3em;
}
blockquote p:last-child:after  { 
	content: close-quote;
}
blockquote p:last-of-type {
    margin-bottom: 0;
}
blockquote + p.author {
    
}


/* Links
----------------------------------------------- */
a {
	-webkit-transition:all .25s ease;
	-moz-transition:all .25s ease;
	-ms-transition:all .25s ease;
	-o-transition:all .25s ease;
	transition:all .25s ease;
}
a, 
a:link { 
	color: var(--yellow);
	text-decoration: none;
}
a:visited { 
	color: var(--yellow);
}
a:hover { 
	color: var(--yellow);
	text-decoration: none;
}
a:active { 
	color: var(--yellow);
	text-decoration: none;
}


/* Headings & Text
----------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 1.5rem;
}
h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: Karla, Helvetica, "Helvetica Neue", Arial, sans-serif;
}
h2 {
	font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
h3 {
	font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem
}
ul {
    padding-left: 1rem;
	margin-bottom: 1.5rem;
}
ol {
    padding-left: 1rem;
	margin-bottom: 1.5rem;
}
ul li {
    list-style: disc;
}
ol li {
    list-style: decimal;
}


/* Layout
----------------------------------------------- */

/* section {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    display: inline-block;
}*/

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overall_header {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    border-bottom: 1px solid var(--dark);
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    position:sticky;
    inset: 0;
    background: var(--offwhite);
    z-index: 999;
    -webkit-transition:all .25s ease;
	-moz-transition:all .25s ease;
	-ms-transition:all .25s ease;
	-o-transition:all .25s ease;
	transition:all .25s ease;
}
.overall_content {
    width: 100%;
    max-width: 1400px;
    float: left;
    clear: both;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}
.overall_footer {
    width: 100%;
    max-width: 1400px;
    gap: 80px;
    padding: 80px 0;
    float: left;
    clear: both;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo h1 {
    margin: 0;
}
.logo, 
.navigation {
    display: flex;
    align-items: center;
}
.overall_header ul {
    margin: 0;
    padding: 0;
    display: flex;
}
.overall_header ul li {
    list-style: none;
    padding: 10px;
}
.overall_header ul li a {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 100%;
    color: var(--dark);
}

.overall_header ul li a {
    border-bottom: 2px solid rgba(0,0,0,0);
}
.overall_header ul li a:hover, 
.overall_header ul li.current-menu-item a, 
.overall_header ul li.current-menu-parent a {
    border-bottom: 2px solid var(--dark);
}
.overall_header ul li.on a {
    border-bottom: 2px solid var(--yellow);
}

.flex {
    width: 100%;
    display: flex;
    justify-content: center;
}
.flex.column {
    flex-direction: column;
    align-items: center;
}
.flex .half {
    width: 50%;
    padding: 0 50px 50px 50px;
}
.half img {
    max-width: 100%;
    height: auto;
}
.flex .text {
    width: 100%;
    max-width: 680px;
    padding: 0 50px;
}
.text img {
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    height: auto;
    display: block;
    margin: 0 -50px;
}
.text iframe, 
.audio iframe, 
.making_of iframe, 
.trailer iframe {
    aspect-ratio: 16 / 9;
    width: calc(100% + 100px);
    height: auto;
    margin: 0 -50px;
}
iframe {
    border: none;
    outline: none;
}
.text iframe[src*="jotform"] {
    height: 80vh;
}
hr {
    width: 100%;
    margin: 50px 0;
    border: 0.5px solid var(--dark);
}

.stills h2, 
.trailer h2, 
.audio h2, 
.making_of h2 {
    text-align: center;
}

.stills {
    padding: 50px 0;
}
.stills>p {
    display: flex;
    margin: 0;
    padding: 0 40px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.stills img {
    width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
    height: auto;
    object-fit: cover;
}
.laurels {
    padding: 50px 0;
}
.laurels>p {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.laurels img {
    width: 20%;
    flex-basis: 20%;
    height: 180px;
    object-fit: contain;
    padding: 20px;
}
.trailer, 
.audio,
.making_of {
    width: 100%;
    max-width: 680px;
    padding: 0 50px;
}
.trailer, 
.audio,
.making_of, 
.stills {
    padding: 50px 0;
}


video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}
.centrebox-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.centrebox {
    width: 100%;
    max-width: 680px;
    border: 1px solid var(--dark);
    padding: 40px;
}
.overall-hero {
    width: 100%;
    max-width: 1400px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}
.hero-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px 50px 40px;
}
.hero {
    width: 100%;
    text-align: center;
}
.hero h1 {
    margin: 10px;
}
.hero p:last-of-type {
    margin: 0;
}

.hero-image {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
}
.film-hero {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.film-hero iframe {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}
.updates {
    background: var(--yellow);
    width: 100%;
    max-width: 680px;
    text-align: center;
    padding: 40px;
}

.socials {
    width: 100%;
    max-width: 680px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
}
.socials p {
    margin: 0;
}
ul.social_links {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
ul.social_links li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.social_links li i {
    font-size: 40px;
}

.listing ul {
    margin: 0;
    padding: 0 40px;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}
.listing ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-basis: calc(50% - 20px);
}
.list ul li h2 {
    margin: 0;
}
.listing ul li img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 10px;
}
.listing ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 0.2em;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}
.pagination ol {
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}
.pagination ol li {
    margin: 0;
    list-style: none;
    background: var(--white);
}
.pagination ol li:first-of-type, 
.pagination ol li:first-of-type span {
    background: none;
}
.pagination ol li a, 
.pagination ol li span {
    padding: 5px 12px;
    display: block;
}
.pagination ol li a {
    background: var(--yellow);
    color: var(--white);
}

/* Mailchimp form */

.mc-field-group {
    padding: 0 0 20px 0;
}
.mc-field-group label {
    display: block;
    text-align: center;
    font-weight: bold;
}
.mc-field-group input {
    width: 100%;
    background: var(--white);
    padding: 10px 20px;
    border: none;
    margin: 2px 0 0 0;
    text-align: center;
}
button[type="submit"] {
    color: var(--white);
    background: var(--dark);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: 0;
    outline: none;
    cursor: pointer;
}
button[type="submit"]:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.updates h2 {
    margin-bottom: 10px;
}
#menubutton {
    display: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    cursor: pointer;
}


