/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap');
	
@font-face {
	font-family: 'Garnet-Capitals';
	src: local('?'), url('../fonts/garnet-capitals-regular.woff'), url('../fonts/garnet-capitals-regular.ttf');
	font-weight: normal;
	font-style: normal;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root{
	--text-color: rgb(0,9,124);
}
html {
	padding: 0;
	margin: 0;
	border: 0;
	scroll-behavior: smooth;
	width: 100%;
	min-height: 100vh;
}

body {
	padding: 0;
	margin: 0;
	border: 0;

	width: 100%;
	min-height: 100dvh;
	background-color: rgba(255,255,255,1.00);
	color: rgba(0, 0, 0, 1);
	font-family: 'Raleway',sans-serif;
	font-weight: 400;
	font-size: 100%;	
	line-height: 1.8em;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1{
	color: rgba(0,0,0,1);
	font-family: Garnet-Capitals, sans-serif;
	font-size: clamp(1.6em, 3vw, 2em);
	font-weight: 400;
	line-height: 1.1em;
	font-style: normal;
	text-align: center;
}
h2 {
	font-size: clamp(1.4em, 2vw, 1.6em);
	font-weight: 500;
}
p {
	font-size: clamp(1em, 2vw, 1.2em);
	line-height: clamp(120%, 4vw, 180%);
}
img {
	vertical-align: top;
}

.sticky {
	position: sticky;
}
.top {
	top: 0;
}
.bottom {
	bottom: 0;
}


/*--- NAVIGATION STYLES ---*/

nav {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 2em;
	z-index: 10;
	background-color:rgba(193,183,175,1.00);
	transition: all 0.5s;
	z-index: 10;
	font-family: Garnet-Capitals, sans-serif;
	filter: drop-shadow(0 10px 10px rgba(158,139,117,1));
}
nav .nav-logo{
	display: none;
}

nav > ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
nav > ul > li {
	position: relative;
}
nav > ul > li:last-of-type {
	background-color: rgba(35,69,46,1.00);
	color: white;
}
nav li a{
	display: block;
	text-decoration: none;
	color: white;
	font-weight: 300;
	font-size: clamp(0.9em, 1.7vw, 1.3em);
	padding: 0.5em 0.5em;
	position: relative;
	text-align: center;
	line-height: 1.1em;
}
nav > ul > li > ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	list-style-type: none;
	padding: 0 0 0 0.5em;
	background-color: rgba(35,69,46,1.00);
	color: rgba(0,72,114,1.00);
	font-size: 90%;
	padding: 0.5em;
	border-radius: 0 0 0.5em 0.5em;
	transform-origin: center top;
	transform: scaleY(0);
	transition: 0.25s;
}
nav > ul > li:hover > ul {
	transform: scaleY(1);
}
nav > ul > li > ul > li {
	white-space: nowrap;
	line-height: auto;
}
nav > ul > li > ul > li a {
	color: white;
	font-weight: 500;
}
nav > ul > li > ul > li a:hover {
	color: white;
	background-color: rgba(62,66,85,1.00);
}

#mobile-nav-activate{
	position: fixed;
	left: -10000px;
	z-index: 1;
}
.mobile-nav-label {
	position: fixed;
/*
	top: 5px;
	left: 5px;
	width: 38px;
	background-color: transparent;
	border-radius: 3px;
*/
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(218,208,196,1.00);
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	padding: 2px 8px;
	align-items: center;
	justify-content: space-between;
	z-index: 5;
	transition: all 0.5s;
	display: none;
}
.mobile-nav-label div{
	width: 25px;
	pointer-events: none;
}
.mobile-nav-label:after{
	content: "The Old Man & The Queer";
	display: inline-block;
	padding-left: 1em;
	font-weight: bold;
	font-family: Garnet-Capitals, sans-serif;
}
.mobile-nav-label hr{
	height: 2px;
	margin: 6px 0;
	border: none;
	background-color: black;
	pointer-events: none;
}
/*
.mobile-nav-label.solid{
	background-color: rgba(0,72,113,1);
}
nav.solid{
	background-color: rgba(0,72,113,1);
	filter: drop-shadow(0 0 7px black);
}
*/


/* ------------------ GENERAL ------------------------------ */

.a-button {
	display: block;
	inline-size: min-content;
	margin: 0 auto;
	padding: 0.1em 1em 0.2em 1em;
	border: none;
	background-color: rgba(35,69,46,1.00);
	color: white;
	font-size: 1.4em;
	font-family: Garnet-Capitals, sans-serif;
	text-decoration: none;
	font-style: normal;
}
.small-caps > span {
	font-size: 125%;
	-webkit-text-stroke: 0px transparent;
}
.gray-back {
	background-image: radial-gradient(circle farthest-corner at 25% 25%, white, rgb(180, 180, 180));
}
.general {
	padding: 4em 1em;
}
.general .main {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.equal-columns{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	column-gap: 2em;
}
.equal-columns > div:nth-of-type(1) {
	flex: 2 1 0;
}
.equal-columns > div:nth-of-type(2) {
	flex: 1 1 0;
}
.accent-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.equal-columns form {
	padding: 0;
}
.equal-columns .BGM-contact-form > div > div {
	margin: 0;
}

@media screen and (max-width: 1100px) {
	.equal-columns{
		flex-direction: column;
	}
	.accent-container{
		width: calc(100% - 2em);
		max-width: 500px;
		margin: 1em auto 2em auto;
		order: 1;
	}
	.contact-container{
		order: 2;
	}
}

/* ------------------ HERO SECTION ------------------------- */

.hero {
	height: 100dvh;
	background-image: url("../images/hero-background.webp");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font-family: 'Garnet-Capitals',sans-serif;
	margin-bottom: -8.7vh;
}
.hero .main{
	position: relative;
	height: 100%;
	overflow: hidden;
}
.hero .main img{
	position: absolute;
	bottom: 0;
	left:min(0px, calc((100vw - 2500px)/2.7));
	height: 80%;
}
.hero-title{
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	font-size: clamp(4em, 5vw, 6em);
	letter-spacing: 0.15em;
	line-height: 1.1em;
	text-align: center;
	padding: 0.2em;
}
.hero-authors {
	position: absolute;
	top: 25%;
	left: 68%;
	transform: translate(-50%);
	font-size: clamp(2.7em, 4.2vw, 3.75em);
	text-align: center;
	font-family: Garnet-Capitals, sans-serif;
	line-height: normal;
	-webkit-text-stroke: 1px black;
}
.hero-authors > div:nth-of-type(1) {
	font-size: 0.6em;
	-webkit-text-stroke: 0;
}
.hero-authors > div:nth-of-type(2) {

}
.hero-authors > div:nth-of-type(3) div {
	display: inline;
	-webkit-text-stroke: 0;
	font-size: 80%;
}

.hero .tagline {
	font-size: clamp(1.8em, 2vw, 2.4em);
	line-height: 1.1em;
	color: rgb(128,130,133);
	position: absolute;
	bottom: 19%;
	left: 68%;
	transform: translateX(-50%);
	width: 59%;
	max-width: 28em;
	text-align: center;
}
.hero .book-in-air-container {
	display: none;
}
.hero .book-in-air-container img {
	width: 50%;
	max-width: 300px;
	height: auto;
}

/* ------------------ BGM DEFAULT OVERRIDES ---------------- */

.BGM-newsRelease-container h1{
	font-size: 1.6em!important;
}
.BGM-newsRelease-container h2{
	font-size: 1.3em!important;
}
.BGM-reviewBox h1.review-header{
	text-align: left;
	font-size: 1.4em!important;
}
.BGM-reviews-module-container,
.main{
	font-size: clamp(90%, 3vw, 100%);
}

/* ------------------ MEDIA QUERIES ------------------------ */

@media screen and (max-aspect-ratio: 1), 
screen and (orientation: portrait),
screen and (max-width: 800px){

	nav{
		position: fixed!important;
		display: grid;
		grid-template-rows: auto auto 1fr;
		grid-template-columns: 1fr;
		width: auto;
		height: 100dvh;
		padding: 0;
		background-color: rgba(125, 106, 87,1);
		padding: 2em 1em;
		filter: drop-shadow(0 0 7px black);
		transform: translateX(-105%);
	}
	nav ul{
		width: 200px;
		flex-direction: column;
	}
	nav .nav-logo{
		display: block;
		filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
	}
	#mobile-nav-activate:checked + nav {
		transform: translateX(0);
	}
	.mobile-nav-label{
		display: flex;
		justify-content: flex-start;
	}
	
	
	.hero {
		height: auto;
		margin-bottom: 0;
	}
	
	.hero .main{
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr auto;
		height: auto;
		min-height: 100dvh;
	}
	.hero .book-on-table-container{
		display: none;
	}
	.hero .hero-title {
		grid-row: 1;
		grid-column: 1;
		position: relative;
		display: block;
		left: 0;
		transform: none;
		width: 100%;
		text-align: center;
		padding: 1em 0.2em 0.2em 0.2em;
	}
	.hero .tagline {
		grid-row: 2;
		grid-column: 1;
		width: 100%;
		max-width: none;
		left: 0;
		transform: none;
		position: relative;
		bottom: 0;
		padding: 1em;
	}
	.hero .book-in-air-container {
		grid-row: 3;
		grid-column: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.hero .book-in-air-container img{
		position: relative;
		left: auto;
	}
	.hero .hero-authors {
		grid-row: 4;
		grid-column: 1;
		position: relative;
		width: 100%;
		left: 0;
		top: 0;
		transform: none;
		padding: 1em;
	}

}


@media screen and (max-width: 600px){
	.hero {
		font-size: clamp(50%, 2.6vw, 100%);
	}
