@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
}

body {
	width: 100%;
    background: rgba(254, 254, 249, 1.0);
	font-family:'Inter Tight', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    overflow-x: hidden;
}

#bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -2;
    object-fit: cover;
    overflow: hidden;

    --random-hue: 0deg;
    filter: hue-rotate(var(--random-hue)) saturate(0%) brightness(200%);
    transition: filter 3s ease;
    will-change: filter;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

#bg.is-loaded {
    filter: hue-rotate(var(--random-hue)) saturate(100%) brightness(100%);
}

#bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#header {
	position: relative;
    width: 100%;
    height: 150px;
}

#logo {
    position: relative;
    width: 40%;
    height: 150px;
    left: 0;
    top: 0;
}

#logo a {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    z-index: 3;
}

#logo img {
    position: relative;
    display: block;
    max-height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* mix-blend-mode: color-dodge; */
}

#navOpen {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    right: 40px;
}

#navClose {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    right: 40px;
    z-index: 5;
}

#navOpen i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    text-align: center;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.6);
}

#navClose i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    text-align: center;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.6);
}

#navbar {
    position: fixed;
    width: 80%;
    height: 110vh;
    top: 0;
    right: -85vw;
    background-color: white;
    z-index: 4;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav {
    position: relative;
    float: left;
    width: 80%;
    height: auto;
    margin: 5px;
}

#podcast {
    padding-top: 60px;
}

.nav a {
    position: relative;
    float: left;
    width: auto;
    height: auto;
    margin-bottom: 2vh;
    font-size: 28px;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}

#contact a {
    font-weight: 600;
    text-decoration: none;
    color: rgba(0, 0, 0, 1.0);
}

.nav i {
    width: 80px;
    height: auto;
    text-align: center;
}

#links {
    position: fixed;
    width: 80%;
    height: 30vh;
    top: 80vh;
    z-index: 5;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.link {
    position: relative;
    display: block;
    float: left;
    width: 20%;
    min-width: 36px;
    height: auto;
    margin-top: 25px;
    text-align: center;
}

.link a {
    width: auto;
    height: auto;
    font-size: 30px;
    color: rgba(13, 46, 122, 1.0);
}

.link a:visited {
    color: rgba(136, 0, 141, 1.0);
}

/**********************/

#main {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    z-index: 2;
}

#grid {
    position: relative;
    float: left;
    width: 90%;
    height: auto;
    min-height: 550px;
    margin-left: 5%;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 4px solid black;
    border-radius: 20px;
    background-color: rgba(254, 254, 249, 0.5);
    opacity: 0.0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#grid.is-loaded {
    opacity: 1.0;
    transform: translateY(0px);
}

#contactForm {
    width: 100%;
    height: 100%;
}

#form label {
	width: 95%;
	height: 40px;
	position: relative;
	float: left;
	margin-left: 5%;
    padding-top: 30px;
	font-size: 24px;
    font-weight: 500;
	color: rgba(0, 0, 0, 0.6);
}

#form input {
	width: 85%;
	height: 50px;
	position: relative;
	float: left;
	margin-left: 5%;
	padding-left: 10px;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	border-bottom: 5px solid rgba(0, 0, 0, 0.6);
	font-size: 18px;
	color: #000000;
}

#form input:focus {
    outline: none;
	outline-width: 0;
	border-bottom: 5px solid rgba(13, 46, 122, 1.0);
	background-color: rgba(255, 255, 255, 0.6);
	color: #000000;
}

#form textarea {
	width: 86%;
	height: 120px;
	position: relative;
	float: left;
	margin-left: 5%;
	margin-bottom: 20px;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	border-bottom: 5px solid rgba(0, 0, 0, 0.6);
	font-size: 18px;
	color: #ffffff;
	resize: none;
}

#form textarea:focus {
    outline: none;
	outline-width: 0;
	border-bottom: 5px solid rgba(13, 46, 122, 1.0);
	background-color: rgba(255, 255, 255, 0.6);
	color: #000000;
}

#submit {
	width: 95%;
	height: 100px;
	position: relative;
	float: left;
	margin-left: 5%;
}

#submit button {
	width: 140px;
	height: 40px;
	position: relative;
	float: left;
	border-bottom: 5px solid rgba(0, 0, 0, 0.6);
    background-color: rgba(255, 255, 255, 1.0);
	font-size: 20px;
    font-weight: 600;
	color: rgba(0, 0, 0, 1.0);
	transition: 0.3s;
}

#footer {
    position: relative;
    float: left;
    width: 100%;
    height: 120px;
    color: rgba(255, 255, 255, 0.6);
    background-color: black;
}

#footer h4 {
    position: absolute;
    width: 100%;
    top: 20px;
    text-align: center;
}