@charset "UTF-8";

:root {
	--shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

body {
	background-color: #222;
	color: #d1d2d3;
    font-family: "Open Sans", sans-serif; }

section, .section, footer { padding: 4rem 0; }
b { color: #fff !important; }
h1, h2 { color: #fff; }
h3 { color: #ffffcc; }
.bg { background-color: #333; }
.lead { font-weight: 400; }

.list-style-none { 
	padding-left: 0;
	list-style: none; }

a, a:hover, a:active, a:focus, .bi-facebook { 
	color: #ffffcc;
	transition: all .15s ease;
	text-decoration: none; }

.nav-link { color: #ffffcc !important; }
a:hover { color: #fff !important; }

.bi { margin-top: -4px; }

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column; }

.and::after {
	font-family: 'Arial';
	content: '&';
	font-size: 90%; }
	
.underline { text-decoration: underline; }
.underline:hover { text-decoration: none; }

.underline2 { text-decoration: none; }
.underline2:hover { text-decoration: underline; }

.callout { 
	border: solid 1px rgba(255,255,255,.25);
	border-left: solid 5px var(--bs-warning);
	margin-bottom: 1.25rem;
	padding: 1.25rem; }

/* ************************ CONTENT **************************** */

/* Header */
header {
	background-color: #000 !important;
	text-align: center;
	padding: 2rem 0;
}

.h1-1, .h1-2 {
	font-weight: 600;
}

.h1-1 {
	display: inline-block;
	font-size: 1.95rem;
	color: #111;
	background-color: #ff0000;
	padding: 4px 18px;
}

.h1-2 {
	display: block;
	font-size: 2.65rem;
	margin-top: .25rem;
}

/* Navigation */
.navbar-nav {
	margin: 0px auto;
}


/* Landing */
#landing {
	padding-top: 2rem;
}

#landing img {
	border-radius: .5rem;
	margin: auto;
}

#landing p {
	font-size: 12px;
	color: grey;
	font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

#landing p a {
	color: lightgrey;
}

#landing p a:hover {
	color: darkgrey;
}

/* Synopsis */

#synopsis, #trailer {
	background-color: #333;
}

#synopsis img {
	border-radius: 1rem;
}

/* Director */
#director img {
	border-radius: 1rem;
}


/* Footer */
footer {
	text-align: center;
	background-color: #000 !important;
}

footer a {
	color: #ffffcc;
	padding: 0 .25rem;
}

footer a:hover {
	color: #fff;
}


/* ************* RESPONSIVE *************** */

@media (min-width: 1400px) { 
	#landing p {
		margin-left: 3rem;
	}
}

@media (max-width: 767px) { 
	section, .section, footer { padding: 2rem 0; }
	.lead { font-size: 1rem; }
	
	/* Navigation */
	.navbar-nav {
		flex-direction: row;
		justify-content: center;
	}
	.nav-link {
		margin-top: .25rem; 
		padding: .25rem 0 !important; }
		
	/* Footer */	
	footer { 
		padding-bottom: 2rem; 
		color: inherit; }
		
	footer p.h5 { font-size: 1rem; }
}





