/* ------------------------- Fonts -------------------------------------------------- */

@font-face {
	font-family: "Sansita Bold";
	src: url("/assets/fonts/Sansita-ExtraBold.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: auto;
}

@font-face {
	font-family: "Sansita";
	src: url("/assets/fonts/Sansita-Regular.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: auto;
}

@font-face {
	font-family: "Switzer";
	src: url("/assets/fonts/Switzer-Medium.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: auto;
}

@font-face {
	font-family: "Switzer light";
	src: url("/assets/fonts/Switzer-Regular.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: auto;
}

/* ------------------------- Colors -------------------------------------------------- */

:root {
	--color-black-rgb: 0, 0, 0;
	--color-black: rgba(var(--color-black-rgb), 1);
	--color-dark-rgb: 30, 30, 30;
	--color-dark: rgba(var(--color-dark-rgb), 1);
	--color-dark-medium: #434d48;
	--color-dark-light: #8f8c79;
	--color-white-rgb: 255, 255, 255;
	--color-white: rgba(var(--color-white-rgb), 1);
	--color-light-rgb: 255, 255, 255;
	--color-light: #efe8e4;
	--color-primary: #e7cb51;
	--color-secondary: #e34248;
	--color-alert-error: var(--color-secondary);
	--color-alert-success: #26ad6a;
	--color-text: rgba(var(--color-dark-rgb), 0.7);
	--color-text-light: rgba(var(--color-light-rgb), 0.7);
	--color-border: rgba(var(--color-dark-rgb), 0.3);
	--color-border-light: rgba(var(--color-light-rgb), 0.2);
	--animation-primary: 0.5s cubic-bezier(0.3, 1, 0.3, 1);
	--animation-thumb: 0.4s cubic-bezier(0.5, 0, 0.25, 1);
	--animation-nav: 0.4s cubic-bezier(0.6, 0, 0.4, 1);
	--animation-smooth: 0.6s cubic-bezier(0.7, 0, 0.3, 1);
	--section-padding: min(13vh, 13em);
	--section-padding-medium: min(10vh, 10em);
	--section-padding-small: min(7.5vh, 7.5em);
	--container-padding: min(10vw, 10em);
	--gap-padding: clamp(1em, 4vw, 2.5em);
	--gap-padding-big: clamp(1em, 8vw, 8em);
	--title-size: min(5vw, 5em);
	--border-radius: calc(clamp(1em, 1.5vw, 1.5em) * 1.6);
	--border-radius-medium: calc(clamp(1em, 1.5vw, 1.5em) * 1.5);
	--border-radius-small: calc(clamp(1em, 1.5vw, 1.5em) * 0.5);
}

@media screen and (max-width: 1024px) {
	:root {
		--container-padding: 7.5vw;
		--title-size: 7.5vw;
		--section-padding: max(2.5em, calc(4vw + 4vh));
		--section-padding-medium: max(1.75em, calc(3.5vw + 3.5vh));
		--section-padding-small: max(1em, calc(1vw + 1vh));
	}
}

@media screen and (max-width: 900px) {
	:root {
		--container-padding: clamp(1em, 4vw, 2.5em);
	}
}

@media screen and (max-width: 720px) {
	:root {
		--title-size: 10vw;
	}
}

@media screen and (max-width: 540px) {
	:root {
		--title-size: 12.5vw;
		--border-radius-small: var(--border-radius);
		--border-radius-medium: calc(var(--border-radius) * 1.5);
		--section-padding: max(3em, 7.5vh);
		--section-padding-medium: max(2.25em, 6.25vh);
		--section-padding-small: max(1em, 4vh);
	}
}

/* ------------------------- Body -------------------------------------------------- */

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

body {
	-webkit-font-smoothing: antialiased;
	font-family: "Switzer", sans-serif;
	color: var(--color-text);
	line-height: 1.6;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	font-size: clamp(16px, 1.2vw, 19px);
	background-color: var(--color-light);
}

html,
body {
	width: 100%;
	-webkit-font-smoothing: antialiased;
	position: relative;
	background-color: var(--color-light);
}

/* Selection */

::selection {
	background-color: var(--color-primary);
	color: var(--color-light);
	text-shadow: none;
}

::-moz-selection {
	background-color: var(--color-primary);
	color: var(--color-light);
	text-shadow: none;
}

/* General */

canvas,
img,
video {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}

svg {
	max-width: none;
	height: auto;
	box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/* ------------------------- Typography -------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
span,
strong,
em {
	padding: 0;
	margin: 0;
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
}

h1 {
	font-family: "Sansita Bold", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(2.2em, 9vw, 10em);
	line-height: 1.1;
	color: var(--color-dark);
	text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
	h1 {
		font-size: clamp(2.2em, 7vw, 8em);
	}
}

@media screen and (max-width: 864px) {
	h1 {
		font-size: calc(var(--title-size) * 1.3);
	}
}

@media screen and (max-width: 540px) {
	h1 {
		font-size: calc(var(--title-size) * 1.2);
	}
}

h2 {
	font-family: "Sansita", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: calc(var(--title-size) * 0.7);
	line-height: 1.15;
	color: var(--color-dark);
	text-transform: uppercase;
}

h2.big {
	font-family: "Sansita Bold", sans-serif;
	font-size: clamp(2.8em, 6.9vw, 6em);
}

h3 {
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: calc(var(--title-size) * 0.4);
	line-height: 1.2;
	color: var(--color-dark);
	text-transform: uppercase;
}

h3.style-none {
	text-transform: none;
}

@media screen and (max-width: 540px) {
	h2 {
		font-size: calc(var(--title-size) * 0.6);
	}
}

h4 {
	font-family: "Switzer", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: max(1.2em, calc(var(--title-size) * 0.355));
	line-height: 1.2;
	color: var(--color-dark);
}

h4.colored,
.theme-dark h4.colored {
	color: var(--color-dark-light);
}

.theme-dark :is(h1, h2, h3, h4, h5) {
	color: var(--color-light);
}

p {
	font-family: "Switzer", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	line-height: 1.66;
	margin-bottom: 0;
	color: var(--color-text);
}

.styled-content p {
	margin-bottom: 1em;
}

.styled-content p:last-child {
	margin-bottom: 0;
}

.theme-dark p {
	color: var(--color-text-light);
}

p.big {
	font-size: 1.4em;
	font-weight: 700;
	color: var(--color-dark);
}

p.small {
	font-size: 0.85em;
	font-weight: 400;
}

p.tiny {
	font-size: 0.75em;
	font-weight: 400;
}

@media screen and (max-width: 540px) {
	p.big {
		font-size: 1.05em;
		line-height: 1.5;
	}
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

p a {
	position: relative;
	transition: color var(--animation-primary);
}

p a::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--color-primary);
	bottom: -0.1em;
	position: absolute;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--animation-primary);
}

@media (hover: hover) {
	p a:hover::after {
		transform: scaleX(1);
		transform-origin: left;
	}
}

strong {
	font-weight: 500;
	color: var(--color-dark);
}

.theme-dark strong {
	color: var(--color-light);
}

h1 em,
h2 em,
h3 em,
h4 em,
.times {
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: italic;
	font-size: 1.19em;
	line-height: 0.75em;
}

em {
	font-style: italic;
}

.theme-dark span {
	color: var(--color-text-light);
}

.scroll span {
	text-transform: uppercase;
	font-size: 0.877em;
}

span.data {
	color: var(--color-dark);
	font-size: 1em;
	font-weight: 400;
	font-family: "General Sans", sans-serif;
	text-transform: uppercase;
	line-height: 0.2;
}

.flex-col .data::before {
	content: "\2022"; /* Unicode for bullet point */
	color: var(--color-dark);
	display: inline-block;
	margin-right: 10px; /* Add some space between the dot and text */
	font-size: 30px; /* Adjust this value to your preferred size */
	vertical-align: middle;
}

/* ------------------------- Main Elements -------------------------------------------------- */

.section {
	display: block;
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	position: relative;
	background-color: var(--color-light);
}

.section-wrap {
	display: block;
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
}

.theme-dark.section,
.theme-nonav-dark.section,
.theme-dark.section-wrap,
.theme-nonav-dark.section-wrap {
	background-color: var(--color-dark);
}

.theme-dark-medium.section,
.theme-nonav-dark-medium.section,
.theme-dark-medium.section-wrap,
.theme-nonav-dark-medium.section-wrap {
	background-color: var(--color-dark-medium);
}

.theme-light-medium.section,
.theme-nonav-light-medium.section,
.theme-light-medium.section-wrap,
.theme-nonav-light-medium.section-wrap {
	background-color: var(--color-light-medium);
}

.theme-light.section,
.theme-nonav-light.section,
.theme-light.section-wrap,
.theme-nonav-light.section-wrap {
	background-color: var(--color-light);
}

.section.full-height {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.section.no-padding {
	padding-top: unset;
	padding-bottom: unset;
}

.container {
	padding-left: var(--gap-padding);
	padding-right: var(--gap-padding);
}

.container.large {
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	max-width: 100em;
}

.container.medium {
	padding-left: calc(var(--container-padding) * 1.75);
	padding-right: calc(var(--container-padding) * 1.75);
}

.container.small {
	padding-left: calc(var(--container-padding) * 2.5);
	padding-right: calc(var(--container-padding) * 2.5);
}

.container.no-padding {
	padding-left: unset;
	padding-right: unset;
}

.row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.row.no-flex {
	display: block;
}

.row.no-wrap {
	flex-wrap: nowrap;
}

.flex-col {
	display: block;
	width: 100%;
	order: 2;
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

img.overlay,
video.overlay {
	object-fit: cover;
}

.ratio-figure {
	width: 100%;
	position: relative;
}

.ratio-figure::before {
	content: "";
	display: block;
	padding-top: 133.333%;
}

.styled-image,
.styled-video {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
}

.styled-image img,
.styled-image video {
	width: 100%;
}

.styled-image[data-ratio-status="true"] img,
.styled-video[data-ratio-status="true"] video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.styled-image.overlay,
.styled-video.overlay {
	object-fit: cover;
	position: absolute;
}

.styled-image.overlay img,
.styled-video.overlay video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

svg {
	width: 100%;
}

.line {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
}

.theme-dark .line {
	background-color: var(--color-border-light);
}

.stripe {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
}

.theme-dark .stripe {
	background-color: var(--color-border-light);
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media screen and (max-width: 540px) {
	.section.full-height {
		min-height: 100vh;
		min-height: calc(var(--vh, 1vh) * 100);
	}
	.container.medium,
	.container.small {
		padding-left: var(--container-padding);
		padding-right: var(--container-padding);
	}
}

/* ------------------------- Main -------------------------------------------------- */

main {
	box-sizing: border-box;
	overflow: hidden;
	width: 100vw;
	position: fixed;
	height: 100%;
	background: var(--color-dark);
	display: block;
}

.main-wrap {
	box-sizing: border-box;
	width: 100vw;
	will-change: transform;
	position: fixed;
	display: block;
}

main.touch {
	position: relative;
	height: auto;
}

main.touch .main-wrap {
	position: relative;
}

@media screen and (max-width: 1024px) {
	main {
		position: relative;
	}
	.main-wrap {
		position: relative;
	}
}

/* ------------------------- Buttons -------------------------------------------------- */

.btn-row {
	width: 100%;
	position: relative;
	display: flex;
}

.btn-row {
	width: 100%;
	position: relative;
	display: flex;
}

.btn {
	position: relative;
	border: 0;
	outline: 0;
}

.btn .bg {
	margin-top: 5px;
	background-color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 5px;
	width: 4.5rem;
	height: 3.5rem;
	border-radius: 40%;
}

.btn input {
	cursor: pointer;
}

.btn .btn-click {
	cursor: pointer;
	border: 0;
	background: transparent;
	min-width: 1em;
	height: 2.5em;
	padding: 0;
	font-size: 1em;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-decoration: none;
	will-change: transform;
	transform: translateZ(0) rotate(0.001deg);
	border-radius: 20em;
	border: 1.5px solid rgba(var(--color-dark-rgb), 0.3);
	-webkit-box-shadow: inset 0 0 0 var(--border-size-thick) var(--color-light);
	box-shadow: inset 0 0 0 var(--border-size-thick) var(--color-light);
}

.btn .btn-click:hover {
	overflow: hidden;
	cursor: pointer;
	border-radius: 20em;
}

.btn-fill {
	background: var(--color-dark);
	position: absolute;
	width: 110%;
	border-radius: 50%;
	border: 1.5px solid rgba(var(--color-dark-rgb), 0.3);
	top: 50%;
	left: 50%;
	transform-origin: right center;
	transform: translate(0%, -50%) scale(0) rotate(0.001deg);
	transition: var(--animation-nav);
	z-index: -1;
}

.btn-fill::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.btn-text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 1em;
	position: relative;
	font-family: "Brice", sans-serif;
	font-weight: 00;
	font-style: normal;
	font-size: 1em;
	line-height: 1;
	color: var(--color-dark);
	transition: var(--animation-smooth);
}
/* --- Hover --- */

.btn-click:hover .btn-fill {
	transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

.btn-click:hover .btn-text {
	color: var(--color-white);
}

.btn-primary .extra-layer {
	display: flex;
	gap: 0.8em;
	align-items: center;
}

.btn-primary .btn-click {
	height: 2.8em;
}

.btn-primary .extra-layer .circle {
	background-color: var(--color-dark);
	height: 1.4em;
	width: 1.4em;
	border-radius: 50%;
	transition: var(--animation-na);
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-primary .extra-layer .circle svg {
	fill: var(--color-light);
	width: 1em;
}

.btn-click:hover .circle {
	background-color: var(--color-light);
}

.btn-click:hover .circle svg {
	fill: var(--color-dark);
}

.theme-dark .btn-click {
	border: 1.5px solid rgba(var(--color-light-rgb), 0.3);
}

.theme-dark .btn-fill {
	background-color: var(--color-light);
	border: 1.5px solid rgba(var(--color-light-rgb), 0.3);
}
.theme-dark .btn-text {
	color: var(--color-light);
}

.theme-dark .btn-primary .extra-layer .circle svg {
	fill: var(--color-dark);
	width: 1em;
}

.theme-dark .btn-primary .extra-layer .circle {
	background-color: var(--color-light);
}

.theme-dark .btn-primary .extra-layer .circle svg {
	fill: var(--color-dark);
	width: 1em;
}

.theme-dark .btn-click:hover .circle {
	background-color: var(--color-dark);
}

.theme-dark .btn-click:hover .circle svg {
	fill: var(--color-light);
}

.theme-dark .btn-click:hover .btn-text {
	color: var(--color-dark);
}

.btn-link {
	position: relative;
	border: 0;
	outline: 0;
}
.btn-link .btn-click {
	cursor: pointer;
	border: 0;
	background: transparent;
	font-size: 1em;
	overflow: hidden;
	display: inline-block;
	position: relative;
	text-decoration: none;
	will-change: transform;
}

.btn-link .btn-click .btn-content {
	font-size: 0.9em;
	color: var(--color-dark);
	text-transform: uppercase;
}

/* ------------------------- Form -------------------------------------------------- */

.form {
	width: 100%;
	display: block;
}

.styled-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 0.5em;
}

.hidden-field,
.website-field {
	position: absolute;
	left: -9999px;
}

.styled-form input,
.styled-form textarea,
.styled-form select {
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.styled-form .form-col {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: flex-start;
	margin-bottom: 1.6em;
}

.styled-form .form-col:last-child {
	margin-bottom: 0;
}

.styled-form .form-col :is(input, textarea) {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	width: 100%;
	padding: 0.6em 0 0.85em 0;
	border: 0;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	font-weight: 450;
	color: var(--color-dark);
	display: block;
	background: transparent;
}

.theme-dark .styled-form .form-col :is(input, textarea) {
	border-bottom: 1px solid var(--color-border-light);
	color: var(--color-light);
	font-weight: 400;
}

.styled-form .form-col > :is(input, textarea):focus {
	outline: 0;
	outline-width: 1px !important;
	outline-offset: 0px;
	border-radius: 0;
	border-bottom: 1px solid rgba(var(--color-dark-rgb), 1);
}

.styled-form .form-col > :is(input, textarea).has-error,
.styled-form .form-col > :is(input, textarea).has-error:focus {
	border-bottom: 1px solid var(--color-alert-error);
}

.theme-dark .styled-form .form-col > :is(input, textarea):focus {
	border-bottom: 1px solid rgba(var(--color-light-rgb), 1);
}

.styled-form .form-col :is(input, textarea)::placeholder {
	color: rgba(var(--color-dark-rgb), 0.5);
	font-weight: 450;
}

.theme-dark .styled-form .form-col :is(input, textarea)::placeholder {
	color: rgba(var(--color-light-rgb), 0.5);
	font-weight: 400;
}

.styled-form .form-col input {
	line-height: 1em;
}

.styled-form .form-col textarea {
	min-height: calc(5em * 1.66);
	resize: vertical;
}

@media screen and (max-width: 540px) {
	.styled-form .form-col textarea {
		min-height: calc(6em * 1.66);
		resize: vertical;
	}
}

.styled-form .form-col label {
	width: 100%;
	margin-bottom: 0;
	color: var(--color-dark);
	font-size: 0.75em;
	font-weight: 500;
	line-height: 0.75em;
}

.styled-form .form-col label span {
	font-weight: inherit;
}

.theme-dark .styled-form .form-col label {
	color: var(--color-light);
	font-weight: 450;
}

.styled-form .form-col abbr {
	color: var(--color-alert-error);
	font-weight: 400;
	text-decoration: none;
	border-bottom: 0;
	font-size: 1.2em;
}

/* --- Submit Button --- */

.styled-form .btn input {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

/* --- Alert Options --- */

.alert {
	padding: 0.4em 0.5em 0.6em 0.5em;
	border: 0;
	background-color: var(--color-alert-error);
	text-align: center;
	border-radius: 0.25em;
	line-height: 1em;
	display: none;
}

.alert span {
	color: var(--color-light);
	font-size: 0.75em;
	font-weight: 450;
}

.alert-success {
	background-color: var(--color-alert-success);
}

.styled-form input.has-error + .alert,
.styled-form textarea.has-error + .alert {
	display: block;
}

/* --- Alert In Form Col --- */

.styled-form .form-col .alert {
	padding: 0;
	text-align: left;
	margin-top: 0.1em;
	background: transparent;
}

.styled-form .form-col .alert span {
	color: var(--color-alert-error);
	text-transform: uppercase;
	font-weight: 500;
}

/* --- Outofill reset --- */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--color-dark);
	-webkit-box-shadow: 0 0 0px 1000px var(--color-light) inset;
	box-shadow: 0 0 0px 1000px var(--color-light) inset;
	transition: background-color 5000s ease-in-out 0s;
}
