@charset "UTF-8";
/* CSS Document */

/*******************************

COLORS
#011a41 - dark blue
#1a73e8 - bright lighter blue


HELPFUL STUFF
https://www.upshotmedia.in/ -- website with similar designs
https://freefrontend.com/css-menu/ -- "how to" for appearing menu
https://codepen.io/yuhomyan/pen/ExKvNVa -- code for appearing menu

*******************************/


/**************************
GENERAL
**************************/

*{
	margin: 0 auto;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

html, body {
	width: 100%;
	height: 100%;
	color: white;
	background: #011a41;
	text-align: center;
}

body {
	margin: 0 auto;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
}

h1 {
	font-family: 'Jura', sans-serif;
	font-weight: 300;
	padding: 100px 0 50px;
	font-size: 3.2em;
}

p {
	font-size: 1em;
	padding: 20px 0;
}

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

a:hover {
	cursor: pointer;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}


/**************************
NAV
**************************/

nav img { /* hatsword icon at the top left of the screen */
	position: absolute;
	top: 20px;
	left: 40px;
	width: auto;
	height: 50px;
}

nav img:hover {
	opacity: 0.6;
	transition: all 0.7s ease-in-out;
}

.wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: black; /* background color of appearing menu */
    transition: all 0.7s ease-in-out;
	overflow-x: hidden;
}

#active:checked ~ .wrapper { /* without this, the appearing menu will not appear */
    right: 0;
} 

.menu-btn { /* this is the 3 line menu icon */
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    height: 50px;
    width: 70px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
	overflow-x: hidden;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white; /* this changes the color of the 3 lines menu icon */
	transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
    transform: translateY(-8px);
}

.menu-btn:after {
    transform: translateY(8px);
}


.close {
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background 0.6s;
}

/* closing animation */
#active:checked + .menu-btn span {
	transform: scaleX(0);
}

#active:checked + .menu-btn:before {
	transform: rotate(45deg);
    border-color: #fff;
}

#active:checked + .menu-btn:after {
	transform: rotate(-45deg);
    border-color: #fff;
}

.wrapper ul {
    position: absolute;
    top: 60%;
    left: 50%;
    height: 80.09%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.wrapper ul li {
    margin: 40px 0;
}

.wrapper ul li a {
    text-decoration: none;
	font-family: 'Jura', sans-serif;
    font-size: 1.5em;
    padding: 5px 20px;
    color: #fff;
}

.wrapper ul li a:hover {
    color: #1a73e8;
	transition: all 0.7s ease-in-out;
}

input[type="checkbox"] {
	display: none;
}


/**************************
HEADER
**************************/

header {
    background-image: linear-gradient(to top right, black, #1a73e8);
	/*background-image: url("../img/powder.mov");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;*/
	padding: 100px 50px;
	height: calc(100vh - 220px);
}

header video {
	object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

header p{
    font-family: 'Roboto Condensed', sans-serif;
}

header ul {
	display: flex;
	justify-content: center;
}

header li {
	flex-direction: row;
}

.button {
	margin: 50px 5px;
}

.button a {
	border: 2px solid white;
	padding: 20px 40px;
	border-radius: 0.25rem;
	text-transform: uppercase;   
	font-size: 0.7em;
	width: 50%;
}

.button a:hover {
	background: white;
	color: #1a73e8;
	transition: all 0.7s ease-in-out;
}


/**************************
SECTION: BOOKS
**************************/

#books-banner {
	background: white;
	color: black;
}

#books-banner p {
	text-transform: uppercase;
}

#books {
	padding: 100px 50px 0;
	background: black;
	color: white;
}

#books .flex-box {
	display: flex;
	flex-direction: column;
	margin-top: 100px;
	justify-content: center;
}

#books .flex-box-item {
	display: flex;
	flex-direction: row;
	text-align: left;
	margin-bottom: 50px;
}

#books .book-img img {
	width: auto;
	height: 150px;
	border: 2px solid white;
}

#books .caption {
	margin-left: 20px;
	padding-top: 20px;
	width: 250px;
	height: 130px;
}

#books .flex-box-item p {
	padding: 10px;
}

#books .flex-box-item p span {
	color: #1a73e8;
}

#books .flex-box-item .book-button {
	margin-top: 20px;
}

#books .flex-box-item .book-button a {
	border: 2px solid white;
	border-radius: 0.25rem;
	padding: 10px 25px;
	margin-left: 10px;
	text-transform: uppercase;   
	font-size: 0.8em;
}

#books .flex-box-item .book-button a:hover {
	border: 2px solid white;
	border-radius: 0.25rem;
	background: white;
	color: #1a73e8; 
	transition: all 0.7s ease-in-out;
}

#books .flex-box-item .disabled-button {
	width: 135px;
	margin-top: 10px;
	margin-left: 10px;
}

#books .flex-box-item .disabled-button p {
	border: 2px solid white;
	border-radius: 0.25rem;
	padding: 10px 25px;
	text-transform: uppercase;   
	font-size: 0.8em;
}

#books .flex-box-item .disabled-button p:hover {
	background: none;
	color: white;
}

/**************************
SECTION: INTERVIEW
**************************/

#interview-banner {
	background-image:linear-gradient(to bottom, black, #011a41);
	height: 200px;
}

#interview {
	background: #011a41;
	padding: 0 50px 100px;
}

blockquote {
	margin-top: 50px;
	color: white;
	border-left: 8px solid #1a73e8;
	text-align: left;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	max-width: 850px;
}

blockquote p {
	font-style: italic;
}

blockquote cite {
	font-style: normal;
	color: #1a73e8;
}

blockquote .button {
	margin: 0;
	margin-top: 50px;
	margin-bottom: 20px;
}


/**************************
FOOTER
**************************/

footer {
	padding-bottom: 70px;
}

footer ul {
	float: right;
	text-align: right;
	margin-right: 50px;
	margin-top: 5px;
}

footer li {
	display: inline;
	padding: 5px 2px;
}

footer li img {
	width: 40px;
	height: 40px;
}

footer li img:hover {
	opacity: 0.5;
	transition: all 0.7s ease-in-out;
}

footer p {
	float: left;
	text-align: left;
	font-size: 0.7em;
	text-transform: uppercase;
	font-weight: bold;
	color: #476491;
	margin-left: 50px;
}

