@font-face {
	font-display: fallback;
	font-family: basefont;
	src: url('./fnt/unbounded-vf.ttf');
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

a {
	cursor: pointer;
}

svg.icon {
	width: 1em; height: 1em; fill: currentColor;
}

html {
	color: #fff;
	background: #000;
	font-size: 1px;
	--desktop-padding: 40px;
	@media (width > 960px) {
		& {
			--desktop-padding: 100px;
		}
	}
}

body {
	font: 13px/1 basefont;
}

.animate {
	--zoom: 1.25;
    transform-origin: center center;
    animation: kenBurns 10s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(0%);
    }
    100% {
        transform: scale(var(--zoom)) translateY(5%);
    }
}

.screenContent {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: 100%;
}

.section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    /*transition: transform 5s ease-in-out;*/
    padding: 0px var(--desktop-padding);
}
  
  	.footbar {
		position: fixed;
		z-index: 10;
		bottom: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	    padding: 0px var(--desktop-padding);
	    margin-bottom: 20px;
	    @media (width > 960px) {
	    	margin-bottom: 40px;
	    }
  	}
  	.footbar > .links {
		display: flex;
		align-items: center;
		gap: 20px;
  		font-size: 24px;
  	}
  	
	.footbar > .links svg {
  		width: 1em; height: 1em; fill: currentColor;
  	}
  	
  	.underlined-link {
  		font-weight: 600;
  		text-decoration: underline;
  		text-underline-offset: 5px;
  	}

/* Navbar */

.navbar {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	padding: 0px var(--desktop-padding);
	margin-top: 20px;
}

.navbar .logo {
	font-size: 19px;
	font-weight: 900;
}

.navbar .links {
	display: flex;
	gap: 20px;
	white-space: nowrap;
}

.navbar .links a {
	font-weight: 500;
	text-decoration: none;
}

.navLogoImg {
	max-width: 120px;
	max-height: 50px;
}

@media (width > 960px) {
	.navbar {
		flex-direction: row;
	}
}

  /* Scroll text styling */
  .scroll-text {
    position: fixed;
    top: 50%;
    font-size: 11px;
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0.8;
    z-index: 5;
    letter-spacing: 0.35em;
    text-transform1: uppercase;
  }

  .scroll-text.left {
    top: auto;
    bottom: 100px;
    left: calc(var(--desktop-padding) * 0.5);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .scroll-text.right {
    top: auto;
    bottom: 100px;
    right: calc(var(--desktop-padding) * 0.5);
    transform: translate(+50%, -50%) rotate(90deg);
  }

.centeredStructure {
	display: flex; flex-direction: column;
	align-items: center;
	@media (width > 960px) {
		margin-top: auto;
		padding-bottom: 40px;
	}
}

.centeredFigure {
	--sizew: calc(95vw);
	--sizeh: calc(65vh);
	position: relative;
	max-width: var(--sizew); 
	max-height: var(--sizeh); 
	object-fit: contain;
    filter1: drop-shadow(0 10px 40px rgb(0,0,0,0.35));
	@media (width > 960px) {
	}
}

.centeredFigureShadow {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(75%) saturate(300%) blur(20px) opacity(0.75);
}

.centeredTitle {
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: pre-line;
	margin-top: -0.1em;
	margin-bottom: -0.07em;
	text-shadow: 0px 0px 25px rgb(var(--foreColorTriplet), 0.4);
	@media (width > 960px) {
		& { font-size: 90px; }
	}
}

.fixedScreen {
	position: fixed; 
	top: 0; left: 0;
	width: 100vw; height: 100vh;
}

.fixedScreenGradient {
	color: #fff;
	background-image: radial-gradient(circle at center, var(--backColor2) 0%, var(--backColor1) 72%);
	--backColor1: rgb(0, 0, 0);
	--backColor2: rgb(0, 0, 0);
}

.right-info {
	@media (width > 960px) {
		& {
			position: absolute; top: 0; right: 0; bottom: 0;
			display: flex; flex-direction: column;
			justify-content: end;
			padding-bottom: 160px;
		}
	}
}

.right-value {
	display: none;
	@media (width > 960px) {
		& {
			display: block;
			font-weight: 300;
			line-height: 1.7;
			white-space: pre-line;
		}
	}
}

.right-numeric-row {
	display: flex; gap: 10px; margin-top: 20px;
}

.right-numeric {
	display: flex; 
	align-items: center;
	justify-content: center;
	min-width: 70px;
	min-height: 50px;
	border-radius: 90px;
	color1: var(--backColor1);
	background: rgb(var(--foreColorTriplet), 0.4);
}

.left-info {
	display: none;
	@media (width > 960px) {
		& {
			position: absolute; top: 0; left: 0; bottom: 0; z-index: 1;
			display: flex; flex-direction: column;
			justify-content: end;
			padding-bottom: 160px;
		}
	}
}

.left-title {
	font-size: 28px;
	font-weight: 400;
	max-width: 8em;
}

.left-value {
	@media (width > 960px) {
		& {
			display: block;
			font-size: 21px;
			font-weight: 400;
			line-height: 1.5;
			max-width: 12em;
			margin-bottom: 30px;
		}
	}
}

.left-btn-offer {
	display: inline-flex; 
	align-items: center;
	gap: 20px;
	font-size: 14px;
	font-weight: 400;
	height: 50px; 
	padding: 0 25px;
	border-radius: 90px;
	color: var(--backColor);
	background: var(--foreColor);
}
