/* --- GOTTLEHRER SACRED SKIN --- */

@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/noto-sans-v39-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/noto-sans-v39-latin-500.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/noto-sans-v39-latin-700.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 800;
	src: url('fonts/noto-sans-v39-latin-800.woff2') format('woff2');
}

:root {
  --white: #ffffff;
  --black: #000000;
  --main: #E6007E;
  --bg: #090B0F;
  --grey-dark: #373B43;
  --grey-light: #A7ABB3;
  --lighten: rgba(255,255,255,0.15);
  --overlay: rgba(0,0,0,0.7);

  --p1-size: 15px;
  --p1-line: 24px;
  --p2-size: 12px;
  --p2-line: 16px;
  --a1-size: 13px;
  --a1-line: 16px;
  --a2-size: 12px;
  --a2-line: 16px;

  --height-region: 80px;
}

/* --- BASE --- */

html {
	overflow-x: hidden !important;
}

body {
	min-width: 100%;
	margin: 0;
	padding: 0;
	color: var(--white);
	background: var(--bg);
	overflow-x: hidden;
	font-family: 'Noto Sans', sans-serif;
	font-size: var(--p1-size);
	line-height: var(--p1-line);
	letter-spacing: 0.05rem;
	text-align: center;
}

.page-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  opacity: 1;
  pointer-events: none;
  transition: all  1000ms ease;
  will-change: opacity;
  display: grid;
  place-items: center;
}

.page-overlay.is-hidden{
  opacity: 0;
}

a {
  	color: inherit;
  	text-decoration: none;
}

a:hover, a:focus {
  	text-decoration: none;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: var(--height-region);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0));
	font-size: var(--a1-size);
	line-height: var(--a1-line);
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
  	justify-content: space-between;
  	align-items: center;
	color: var(--grey-light);
}

header img {
	height: 50px;
	width: auto;
	position: absolute;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

header .modal-trigger {
	margin-left: 7vw;
}

header .toggle {
	margin-right: 7vw;
}

footer {
	position: fixed;
	z-index: 1000;
  	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--height-region);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0));
	display: flex;
	justify-content: center;
	align-items: center; 
}

footer img {
	height: 20px;
	width: auto;
	padding:  25px;
	opacity: 0.6;
	transition: all 200ms ease;
}

main {
	margin-top: var(--height-region);
	margin-bottom: var(--height-region);
	display: grid;
 	place-items: center;
	min-height: calc(100svh - var(--height-region) - var(--height-region));
}

/* --- SLIDER --- */

.stage {
	display: flex;
  	align-items: center;
  	justify-content: center;
	width: 100%;
}

.slider {
	left: 50%;
  	right: 50%;
  	margin-left: -50vw;
  	margin-right: -50vw;
  	overflow: hidden;
	width: 106vw;
	opacity: 1;
	translate: 0;
	transform: rotate(0);
	transition: all 330ms ease; /* Animation Speed */
}
.strip {
	display: flex;
  	width: 100%;  
  	align-items: center;
  	gap: 15px;
  	overflow-x: auto; 
  	overflow-y: hidden; 
  	scrollbar-width: none;
}
.strip::-webkit-scrollbar { 
	display: none; 
}

.item { 
	flex: 0 0 auto; 
	overflow: hidden; 
	pointer-events: none;
	position: relative;
}
.item img {
  	height: 60vh; /* Responsive value */
  	max-height: 740px;
  	width: auto; 
  	display: block; 
  	object-fit: cover;
	transition: all 330ms ease; /* Animation Speed */
}

.item::after {
  	content: "";
  	position: absolute;
  	left: 0; 
  	right: 0; 
  	bottom: 0;
  	height: 100%;
  	background: linear-gradient(to top, rgba(9, 11, 15, 0.6) 0%, rgba(9, 11, 15, 0) 40%);
  	z-index: 1;
}

.item .details {
  	position: absolute;
  	left: 0;
  	bottom: 0;
	width: 100%;
  	z-index: 10;            
  	pointer-events: none;
	opacity: 1;
	translate: 0;
	transition: all 330ms ease; /* Animation Speed */
}

.item .name {
	font-size: var(--a2-size);
	line-height: var(--a2-line);
	text-transform: uppercase;
	font-weight: 800;
	text-align: left;
	margin: 0 20px -5px 20px;
}

.item .meta {
	font-size: var(--p2-size);
	line-height: var(--p2-line);
	color: var(--grey-light);
	display: flex;
  	justify-content: space-between;
	margin: 0 20px 7px 20px;
}

.interactive .strip { 
	cursor: grab; 
}

.dragging .strip { 
	cursor: grabbing; 
}

/* --- SLIDER TRANSITION --- */

.inactive {  
	opacity: 0.3;
	transform: rotate(-3deg);
	translate: 0 -20%; /* Move up or down behind book mock-up */
}

.inactive .details {
	opacity: 0;
	translate: 0 30px;
}

.inactive .item img {
	height: 340px;
}

.inactive .item::after {  
	background: linear-gradient(to top, rgba(9, 11, 15, 1) 0%, rgba(9, 11, 15, 0) 40%);
}

/* --- BOOK COVER CONTENT --- */

.cover-content {
	width: 77vw;
	position: absolute;
	top: calc(var(--height-region) + 20px);
	z-index: 100;
	opacity: 1;
	transform: translateY(0);;
	transition: all 330ms ease; /* Animation Speed */
	pointer-events: auto;
	padding: 0 0 var(--height-region) 0;
}

.cover-content.hidden {
	opacity: 0;
	transform: translateY(-100px);
	pointer-events: none;
	padding: 0;
	max-height: 0;
}

.cover-content .description {
	margin: 1vh 0;
}

.cover-mockup {
	width: 80%;
	max-width: 260px;
	position: relative;
}

.book-title {
	width: 65%;
	max-width: 240px;
	position: relative;
	margin: -12vh 0 0 0;
}

.cta {
	position: relative;
	display: inline-flex;
  	align-items: center;
	gap: 10px;
	font-size: var(--a2-size);
	line-height: var(--a2-line);
	text-transform: uppercase;
	font-weight: 800;
	color: var(--main);
	box-shadow: inset 0 0 0 1px var(--lighten);
	padding: 13px 20px 14px 20px;
	margin: 1.5vh 0 0 0;
}

.cta::after{
	content:"";
  	position: absolute;
	inset: 0;
  	pointer-events: none;
  	background:
		linear-gradient(var(--main),var(--main)) top left,
		linear-gradient(var(--main),var(--main)) top left,
		linear-gradient(var(--main),var(--main)) top right,
        linear-gradient(var(--main),var(--main)) top right,
		linear-gradient(var(--main),var(--main)) bottom left,
		linear-gradient(var(--main),var(--main)) bottom left,
		linear-gradient(var(--main),var(--main)) bottom right,
		linear-gradient(var(--main),var(--main)) bottom right;
  	background-repeat: no-repeat;
  	background-size:
  		8px 2px, 2px 8px,
    	8px 2px, 2px 8px,
    	8px 2px, 2px 8px,
    	8px 2px, 2px 8px;
}

.cta img {
	width: 10px;
	flex: 0 0 auto;
	display: block;
}

.disabled {
	color: var(--grey-dark);
	pointer-events: none;
}

.disabled img {
	display: none;
}

.disclaimer {
	font-size: var(--p2-size);
	line-height: var(--p2-line);
	color: var(--grey-dark);
	margin: 4vh 0 0 0;
}

/* --- MODAL --- */

.modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
  	place-items: center;
	background: var(--overlay);
	backdrop-filter: blur(10px); 
	opacity: 0;
	visibility: hidden;
	transition: all 330ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-scrollbar-gap body, .has-scrollbar-gap header, .has-scrollbar-gap footer { padding-right: var(--sbw, 0px); }

body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.modal-dialog {
	width: 100vw;
	height: 100vh;
	background: var(--bg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transform: translateY(100px);
	transition: all 330ms ease;
}

.modal.is-open .modal-dialog{
  transform: translateY(0);
}

.modal-header {
	width: 100%;
	height: auto;
	text-align: right;
	display: flex;
  	justify-content: flex-end;
  	align-items: center;
	inset: 0 0 auto 0; 
	position: absolute;
	z-index: 10;
	pointer-events: none;
}

.modal-close {
	position: relative;
	padding: 36px;
	pointer-events: auto; 
	cursor: pointer;
}

.modal-content {
	width: 100%;
	flex: 1 1 auto;         
  	overflow: auto;
	overscroll-behavior: contain;
 	-webkit-overflow-scrolling: touch;
}

.modal-close .arm {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;               
  height: 3px;             
  background: var(--main);
  transform-origin: left center;
  transition: transform .25s ease;
}

.modal-close .a1{ transform: translateY(-50%) rotate( 45deg) translateX(3px); }
.modal-close .a2{ transform: translateY(-50%) rotate(-45deg) translateX(3px); }
.modal-close .a3{ transform: translateY(-50%) rotate(135deg) translateX(3px); }
.modal-close .a4{ transform: translateY(-50%) rotate(-135deg) translateX(3px); }

.img-modal-wrapper {
	position: relative;
}

.img-myself {
	display: block;
	width: 100%;
	height: auto;
}

.img-modal-wrapper::after {
	content: "";
  	position: absolute;
	inset: 0;
  	background: linear-gradient(to top, rgba(9, 11, 15, 1) 0%, rgba(9, 11, 15, 0) 40%);
}

.biography {
	margin: -80px 0 0 0;
	text-align: center;
	position: relative;
	z-index: 5;
}

.biography h1 {
	font-size: var(--a2-size);
	line-height: (var(--a2-line));
	font-weight: 800;
	color: var(--main);
	text-transform: uppercase;
	margin: 0 0 1.5vh 0;
}

.biography .name {
	width: 60%;
	max-width: 240px;
}

.biography p {
	color: var(--grey-light);
	width: 80%;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 2vh 0 3vh 0;
}

.biography a {
	font-size: var(--a2-size);
	line-height: var(--a2-line);
	text-transform: uppercase;
	font-weight: 800;
	color: var(--main);
	padding: 0 0 4px 0;
	border-bottom: 1px solid var(--lighten)
}

.biography .signet {
	display: block;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	width: 30px;
	margin: 3vh 0 5vh 0;
}

/* --- TABLET --- */

@media only screen and (min-width: 600px) {

:root {
	--p1-size: 15px;
 	--p1-line: 24px;
	--p2-size: 12px;
	--p2-line: 16px;
	--a1-size: 14px;
	--a1-line: 18px;
	--a2-size: 12px;
	--a2-line: 17px;

  --height-region: 100px;
}

header img {
	height: 55px;
}

header .modal-trigger {
	margin-left: 5vw;
}

header .toggle {
	margin-right: 5vw;
}

.item img {
  	height: 70vh;
}

.inactive {  
	translate: 0 -15%;
}

.inactive .item img {
	height: 520px;
}

.cover-content {
	width: 52vw;
	top: var(--height-region);
}

.cover-mockup {
	max-width: 380px;
}

.book-title {
	margin: -14vh 0 0 0;
}

.modal-dialog {
	width: 75vw;
	height: 90vh;
	border-radius: 5px;
}

.modal-close {
	padding: 42px;
}

.biography {
	margin: -120px 0 0 0;
}


}

/* --- DESKTOP --- */

@media only screen and (min-width: 1200px) {

:root {
	--p1-size: 16px;
 	--p1-line: 28px;
	--p2-size: 13px;
	--p2-line: 18px;
	--a1-size: 14px;
	--a1-line: 18px;
	--a2-size: 14px;
	--a2-line: 18px;

  --height-region: 120px;
}

header img {
	height: 60px;
}

header .modal-trigger {
	margin-left: 3vw;
	transition: all 200ms ease;
}

header .toggle {
	margin-right: 3vw;
	transition: all 200ms ease;
}

header .modal-trigger:hover, header .toggle:hover {
	color: var(--main);
}

footer img:hover {
	opacity: 1;
}

.item img {
  	height: 80vh;
}

.inactive {  
	translate: 0 -10%;
}

.inactive .item img {
	height: 580px;
}

.item .name {
	margin: 0 30px -5px 30px;
}

.item .meta {
	margin: 0 30px 12px 30px;
}

.cover-content {
	width: 26vw;
	max-width: 640px;
}

.cover-content .description {
	margin: 1.5vh 0;
}

.cover-mockup {
	max-width: 380px;
}

.book-title {
	max-width: 260px;
	margin: -16vh 0 0 0;
}

.cta {
	padding: 16px 30px 18px 30px;
	margin: 1.5vh 0 0 0;
	transition: all 200ms ease;
}

.cta::after{
  	background-size:
  		10px 3px, 3px 10px,
    	10px 3px, 3px 10px,
    	10px 3px, 3px 10px,
    	10px 3px, 3px 10px;
	transition: all 200ms ease;
}

.cta:hover {
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.cta:hover::after {
	background-size:
  		14px 3px, 3px 14px,
    	14px 3px, 3px 14px,
    	14px 3px, 3px 14px,
    	14px 3px, 3px 14px;
}

.disclaimer {
	margin: 4vh 0 0 0;
}

.modal-dialog {
	width: 33vw;
	height: 90vh;
	max-width: 720px;
	border-radius: 7px;
}

.modal-close {
	padding: 48px;
}

.modal-close:hover .a1 { transform: translateY(-50%) rotate( 45deg) translateX(9px); }
.modal-close:hover .a2 { transform: translateY(-50%) rotate(-45deg) translateX(9px); }
.modal-close:hover .a3 { transform: translateY(-50%) rotate(135deg) translateX(9px); }
.modal-close:hover .a4 { transform: translateY(-50%) rotate(-135deg) translateX(9px); }

.biography a {
	transition: all 250ms ease;
}

.biography a:hover {
	padding: 0 0 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.modal-content::-webkit-scrollbar{
  width: 7px;
}

.modal-content::-webkit-scrollbar-track{
  background: var(--grey-dark);
  border-radius: 999px;
}

.modal-content::-webkit-scrollbar-thumb{
  background: var(--grey-light);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

}



























