:root {
	--red: #A60101;
	--white: Gainsboro;
	--blue: #141E28;
	--darkblue: #141829;
	--orange: orangered;
	--teal: #0B78B3;
	--purple: #2E0061;
	--offblack: #68150A;
	--classic-red: #900101;
	--anton-text: "Anton", Impact, sans-serif;
	--passion-text: "Passion One", Impact, sans-serif;
	--raleway-text: "Raleway", Georgia, sans-serif;
	--roboto-text: "Roboto", Georgia, sans-serif;
}

/* ===== Global ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: var(--white);
}

html {
	font-size: 62.5%;
	color: var(--white);
}

/* ===== Body ===== */

body , html {
	overflow-x: hidden;
}

/* ===== Wrapper ===== */

.wrapper {
	font-family: var(--raleway-text);
  	background-color: var(--blue);
	overflow: hidden;
}

/* ===== Navigation ===== */

nav{
	position: fixed;
	width: 100vw;
    z-index: 9999;
    display: flex;
	justify-content: space-evenly;
    align-items: center;
    min-height: 9vh;
    background-color: var(--offblack);
    font-family: var(--passion-text);
}

.logo {
	text-transform: uppercase;
    letter-spacing: .3rem;
    font-size: 5rem;
	text-shadow: 4px 3px 3px #000;
}

.nav-links {
    display: flex;
	flex-direction: row;
    justify-content: space-around;
	min-width: 40%;
}

.nav-links a {
	text-transform: uppercase;
    letter-spacing: .3rem;
	font-size: 2rem;
	text-shadow: 4px 3px 3px #000;
}

.nav-links a:hover {
	color: var(--orange);
	text-shadow: none;
}

.nav-links li {
    list-style: none;
}

/* ===== Mobile Navigation ===== */

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    min-width: 2.5rem;
    height: .3rem;
    background-color: var(--white);
    margin: .5rem;
    transition: all 0.3s ease;
}

/* ===== Header ===== */

header {
	width: 100vw;
	height: 50vw;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.review-header {
	background-image: url("/images/review-list-header.png");
	background-position: bottom;
	background-size: cover;
}

.giallo-header {
	background-image: url("/images/giallo_header.png");
	background-position: bottom;
	background-size: cover;
}

.kaiju-header {
	background-image: url("/images/monster_header.png");
	background-position: bottom;
	background-size: cover;
}

.greatest-films-header {
	background-image: url("/images/great1_header.png");
	background-position: bottom;
	background-size: cover;
}

.video-nasties-header {
	background-image: url("/images/video_nasty_header.png");
	background-position: bottom;
	background-size: cover;
}

.header-content {
	margin: 0;
	padding: 0;
	text-align: center;
}

.header-content h1 {
	font-family: var(--anton-text);
	font-size: 6rem;
	margin: 1rem auto;
	letter-spacing: .5rem;
	text-shadow: 4px 3px 3px #000;
	padding-bottom: 3rem;
}

/* ===== Feature ===== */

.feature {
	font-family: var(--roboto-text);
	display: flex;
	flex-direction: column;
	padding: 10rem 0 0 0;
}

.feature img {
	border: 1px solid var(--white);
	padding: 0;
	margin: 4rem auto;
	border-radius: 15px;
	box-shadow: 4px 3px 3px #000;
}

.feature h5 {
	font-family: var(--anton-text);
	text-align: center;
	letter-spacing: 0.15em;
    font-size: 4rem;
	text-shadow: 4px 3px 3px #000;
	padding-bottom: 2.5rem;
	width: 90%;
	margin: 0 auto;
}

.feature p {
    font-family: var(--roboto-text);
    margin: 2.5rem 0;
	padding: 0 20%;
	font-size: 1.8rem;
	line-height: 200%;
	text-align: left;
}

/* ===== Greatest Styles ===== */

.decade-feature {
	font-family: var(--roboto-text);
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
    height: auto;
    background-color: var(--blue);
	padding: 10rem 0 0 0;
	align-items: center;
	justify-content: center;
}

.decade-feature h4 {
	font-family: var(--anton-text);
	color: var(--orange);
	letter-spacing: .5rem;
	font-size: 4rem;
	padding-bottom: 3rem;
}

.decade-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row; 
}

.decade-nav ul {
	text-align: center;
	line-height: 3rem;
}

.decade-nav li {
	display: inline;
	color: var(--orange);
	text-transform: uppercase;
}

.decade-nav a {
	font-size: 2rem;
}

.decade-nav a:hover {
	color: var(--orange);
}

.decade-year {
	font-weight: bold;
	font-size: 2.5rem;
	color: var(--orange);
}

.section_zero, .section_one,
.section_two, .section_three,
.section_four, .section_five,
.section_six, .section_seven,
.section_eight, .section_nine,
.section_ten, .section_eleven {
    height: auto;
    background-color: var(--blue);
	padding: 4.8rem 0 0 0;
}

.section_zero ul, .section_one ul,
.section_two ul, .section_three ul,
.section_four ul, .section_five ul,
.section_six ul, .section_seven ul,
.section_eight ul, .section_nine ul,
.section_ten ul, .section_eleven ul,
.section_twelve ul {
	list-style: none;
	line-height: 200%;
}

.section_zero li, .section_one li,
.section_two li, .section_three li,
.section_four li, .section_five li,
.section_six li, .section_seven li,
.section_eight li, .section_nine li,
.section_ten li, .section_eleven li,
.section_twelve li {
	text-align: center;
}

.section_zero img, .section_one img,
.section_two img, .section_three img,
.section_four img, .section_five img,
.section_six img, .section_seven img,
.section_eight img, .section_nine img,
.section_ten img, .section_eleven img,
.section_twelve img {
	max-width: 90%;
	border: 1px solid var(--white);
	padding: 0;
	margin: 1rem auto;
	display: block;
	border-radius: 15px;
	box-shadow: 4px 3px 3px #000;
}

.section_zero h4, .section_one h4,
.section_two h4, .section_three h4,
.section_four h4, .section_five h4,
.section_six h4, .section_seven h4,
.section_eight h4, .section_nine h4,
.section_ten h4, .section_eleven h4,
.section_twelve h4{
	text-align: center;
	font-size: 4rem;
}

/* ===== Review List Styles ===== */

.section-nav {
    display: flex;
	text-align: center;
	justify-content: space-evenly;
}

.section-nav a {
    text-decoration: none;
    letter-spacing: .1rem;
    font-size: 2.4rem;
	line-height: 200%;
}

.section-nav a:hover {
    color: var(--orange);
}

.section-nav ul {
	padding: 2rem;
}

.section-nav li {
	display: inline;
    list-style: none;
	text-align: center;
	padding-right: .5rem;
	color: var(--orange);
}

.movie-review-header {
	font-family: var(--anton-text);
	color: var(--orange);
	font-size: 4rem;
	padding: 4.5rem 0;
}	

.review-movie-list {
	text-align: center;
}

.review-movie-list ul {
	list-style: none;
}

.review-movie-list li {
	font-size: 1.8rem;
	line-height: 200%;
	padding-bottom: 1.4rem;
}

.review-movie-list a {
	color: var(--white);
	font-size: 1.4rem;
}

.review-movie-list a:hover {
	color: var(--orange);
}

.review-ctn {
	padding: .8rem 2rem;
	background: var(--offblack);
	color: var(--white);
	font-family: var(--anton-text);
	letter-spacing: .1rem;
	border-radius: 2.5rem;
	font-size: 1.3rem;
}

.review-movie-list a:hover {
	color: var(--orange);
}

.review-ctn:hover {
	background: var(--white);
}

a.return {
	font-size: 1.6rem;
	font-weight: 500;
}

a.return:hover {
	color: var(--orange);
}

/* ===== Section ===== */

section {
	width: 90%;
	margin: 8rem auto;
}

/* ===== Blockquote ===== */

blockquote {
	font-family: var(--raleway-text);
	margin: 0 auto;
	text-align: center;
	font-size: 1.6rem;
	color: var(--teal);
	max-width: 60%;
	line-height: 200%;
}

blockquote a:hover {
	color: var(--orange);
}

hr.block-quote {
	min-width: 40%;
	border: 1px solid var(--teal);
	margin: 0 auto;
	margin: 3rem auto;
}

/* ===== HR and Line ===== */

hr {
	border: 1px solid var(--orange);
	margin: 5rem auto;
	width: 40%;
}

.giallo-feature-line {
	width: 40%;
	margin: 5rem auto;
	border: 1px solid yellow;
}

/* ===== Lists ===== */

.movie-list {
	text-align: center;
}

.movie-list ul {
	list-style: none;
	gap: 2rem;
}

.movie-list li {
	font-size: 1.8rem;
	line-height: 200%;
}

.movie-list a {
	color: var(--white);
	font-size: 1.4rem;
}

.movie-list a:hover {
	color: var(--orange);
}

li.btn {
	margin-bottom: 3rem;
}

li.year:first-of-type {
	font-size: 3.2rem;
	padding-top: 0;
	padding-bottom: 2rem;
}

li.year {
	color: var(--orange);
	font-size: 3.2rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

/* ===== Ctn Element ===== */ 

.ctn {
	padding: .8rem 2rem;
	background: var(--offblack);
	font-family: var(--anton-text);
	letter-spacing: .2rem;
	border-radius: 25px;
	text-shadow: 4px 3px 3px #000;
}

.ctn:hover {
	background: var(--white);
	text-shadow: none;
}

/* ===== Contact ===== */

.email-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}	

.contact-page{
	max-width: 60rem;
	width: 100%;
	padding: 2rem;
}

.contact-form {
	display: grid;
	grid-gap: 1.6rem;
}	

.contact-card {
	position: relative;
	width: 100%;
	height: 5.8rem;
	margin-bottom: 3rem;
}

.contact-input {
	width: 100%;
	height: 100%;
	background: none;
	border: 1px solid var(--orange);
	padding: 1rem 1.28rem;
	border-radius: .8rem;
	color: var(--white);
}

.contact-label {
	color: var(--white);
	position: absolute;
	top: -1.6rem;
	left: 1.6rem;
	font-size: 1.3rem;
	padding: .8rem;
	pointer-events: none;
	transition: 0.3s ease-out;
	background-color: var(--blue);
}

.contact-card.contact-area textarea {
	height: 10rem;
	resize: none;
}

.button {
	display: inline-flex;
	justify-content: center;
	margin-top: 3.2rem;
	background-color: var(--offblack);
	color: white;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 1.6rem 3.2rem;
	border: none;
	border-radius: .8rem;
	transform: 0.3s ease;
	cursor: pointer;
}	

.button:hover {
	background-color: var(--orange);
	color: var(--white);
}

/* ===== Footer ===== */

.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	min-height: 15rem;
	margin: 0;
	background: var(--offblack);
}

.footer .foot-name {
	text-transform: uppercase;
	font-family: var(--passion-text);
	font-size: 2rem;
	text-shadow: 4px 3px 3px #000;
}

.footer p {
	margin: 2rem 0;
	font-family: var(--raleway-text);
	font-size: 1.4rem;
	line-height: 150%;
	text-align: center;
}

/* ===== Mobile Resize - 1377 ===== */

@media screen and (max-width: 1377px){

header {
	height: 60vw;
}

.header-content h1 {
    font-size: 6rem;
}
}

/* ===== Mobile Resize - 1200 ===== */

@media screen and (max-width: 1200px){

.logo p {
	font-size: 3rem;
	text-align: center;
}

.nav-links a {
	font-size: 1.6rem;
}

header {
	height: 60vw;
}

.header-content {
	margin: 0;
	padding: 0;
}

.header-content a {
	font-size: 1.2rem;
}

.header-content h1 {
    font-size: 4.5rem;
	padding-bottom: 3rem;
}

.feature img {
	width: 80%;
}

.feature p {
	padding: 0 15%;
}

.feature h5 {
	font-size: 3.8rem;
}
}

/* ===== Mobile Resize - 992 ===== */

@media screen and (max-width: 992px){

.logo p {
	font-size: 1.8rem;
	text-align: center;
}

.nav-links a {
	font-size: 1.4rem;
}

header {
	height: 70vw;
}

.header-content {
	margin: 0;
	padding: 0;
}

.header-content a {
	font-size: 1.2rem;
}

.header-content h1 {
    font-size: 4rem;
	padding-bottom: 3rem;
}

.feature h5 {
	font-size: 3.4rem;
}

.feature p {
	margin: 0 auto;
	font-size: 1.8rem;
	width: 80%;
	padding: 1rem;
}

.feature img {
	width: 85%;
}

.movie-list a {
	font-size: 1.2rem;
}
}

/* ===== Mobile Resize - 768 ===== */

@media screen and (max-width: 768px){

body {
    overflow-x: hidden;
}

.logo p {
    font-size: 2rem;
	text-align: center;
}

 .nav-links {
     position: absolute;
     right: 0px;
     height: 80vh;
     top: 8vh;
     background-color: var(--offblack);
     display: flex;
     flex-direction: column;
     align-items: center;
     max-width: 50%;
     transform: translateX(100%);
     transition: transform 0.5s ease-in;
 }

.nav-links a {
	font-size: 1.5rem;
	text-shadow: none;
}

.nav-active {
    transform: translateX(0%);
}

.burger {
     display: block;
}

header {
	height: 70vw;
}

.header-content {
	margin: 0;
	padding: 0;
}

.header-content a {
	font-size: 1rem;
	text-shadow: none;
}

.header-content h1 {
    font-size: 2.8rem;
	padding-bottom: 3rem;
}

.ctn {
	text-shadow: none;
}

.ctn:first-of-type {
	margin-bottom: 3rem;
}

.feature {
	margin: 0 auto;
	padding-top: 3rem;
}

.feature img {
	width: 90%;
}

.feature p {
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 2;
	padding: 1rem .6rem;
	text-align: left;
	width: 90%;
}

.feature h5 {
	padding: 0 1rem;
	margin: 1em auto;
	font-size: 2.4rem;
	text-align: center;
}

blockquote {
	font-size: 1.4rem;
}

.movie-list {
	padding: 0;
	margin: 0 auto;
}

.movie-list ul {
	margin: 0 auto;
	font-size: 1.4rem;
	width: 80%;
}

.footer p {
	font-size: 1rem;
	text-align: center;
}

.footer .foot-name {
	text-align: center;
	font-size: 1.34rem;
	text-shadow: none;
}

@keyframes navLinkFade{
    from{
        opacity: 1;
        transform: translateX(50px);
    }
    to{
        opacity: 0;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
}

/* ===== Mobile Resize - 576 ===== */

@media screen and (max-width: 576px){

.logo p {
    font-size: 2rem;
	text-align: center;
	text-shadow: none;
}

.header-content h1 {
    font-size: 2.4rem;
	text-align: center;
}

.movie-list li {
	font-size: 1.6rem;
}

li.year {
	font-size: 2rem;
}

li.year:first-of-type {
	font-size: 2rem;
	padding-top: 0;
	padding-bottom: 2rem;
}
}

/* ===== Mobile Resize - 378 ===== */

@media screen and (max-width: 378px){

.logo p {
	font-size: 1.6rem;
}

header {
	height: 75vw;
}
}