/* FONTS */
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-UltraLight.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-Light.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-Regular.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-Medium.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-SemiBold.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-Bold.otf") format("otf");
}
@font-face {
	font-family: "NewBlackTypeface";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("/css/fonts/NewBlackTypeface-ExtraBold.otf") format("otf");
}

:root {
	/* COLORS */
	--light-salmon: #fff3f0;
	--black-coffee: #190500;
	--pale-sky: #d9f0ff;
	--vivid-orange: #ff4200;

	/* OTHER */
	--border-radius: 16px;
}

/* GENERAL */
html {
	background-color: var(--light-salmon);
	color: var(--black-coffee);
}

body {
	font-family:
		"NewBlackTypeface",
		-apple-system,
		"Segoe UI",
		sans-serif;
	font-weight: 300;
}

main {
	background-color: var(--light-salmon);
	margin-top: 30rem;
	border-radius: var(--border-radius);
	padding-top: 1rem;
}

.section {
	margin: 14.375rem 4.125rem;
}

img,
video {
	height: 100%;
	width: 100%;
	border-radius: var(--border-radius);
}

h1 {
	font-size: 5.3125rem;
	font-weight: 400;
}

h2 {
	font-size: 3.125rem;
	font-weight: 300;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.text-bold {
	font-weight: 600;
}

.quote {
	font-size: 3.125rem;
	font-weight: 300;
	text-align: center;
	margin: 0;
}

.text-orange {
	color: var(--vivid-orange);
}

/* cta */
.cta {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;

	height: 1.25rem;

	text-decoration: none;
}

.cta-btn {
	background-color: var(--pale-sky);
	padding: 1.25rem;
	border: none;
	border-radius: var(--border-radius);
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

.cta-arrow {
	background-color: var(--black-coffee);
	padding: 1.25rem;
	display: inline;

	width: 1.25rem;
}

/* flex-container */
.container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 5rem;
}

.container-left {
	max-width: 40rem;
	min-width: 35rem;
}

.container-right {
	max-width: 45.5rem;
}
/* HEADER */
header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 4rem;
}

.header-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.logo-video {
	height: 5rem;
}

.logo {
	height: 2rem;
	border-radius: 0;
}

.nav-list {
	list-style: none;
}

.nav-item {
	font-size: 1.25rem;
	color: var(--light-salmon);
}

/* HERO */
.hero {
	position: fixed;
	padding: 1.875rem;
	top: 0;
	left: 0;
	z-index: -1;

	display: flex;
	flex-direction: row;
	height: 39.5rem;
	gap: 1.25rem;
}

.hero-video {
	object-fit: cover;
	border-radius: var(--border-radius);
}
.hero-video-1 {
	width: 69%;
	height: 100%;
}

.hero-video-2 {
	width: 29%;
	height: 100%;
}

/* TOP SECTION */
.top-section-container {
	border-bottom: 1px solid var(--black-coffee);
	padding-bottom: 8.125rem;
}

.top-section-title {
	margin-top: 0;
}

.top-section-text {
	font-size: 1.25rem;
}

/* INFO SECTION */
.info-section-quote {
	margin: 14.375rem 4.125rem;
}

.info-section-video {
	height: 31.875rem;
	object-fit: cover;
}

.info-section-container {
	margin-top: 8.125rem;
}

.container-right-text {
	padding-bottom: 1.875rem;
}

/* OFFERINGS */
.offerings-section {
	margin: 14.375rem 4.125rem;
}

.offerings-top {
	text-align: center;
	max-width: 51.875rem;
	margin: 0 auto;
}

.offerings-boxes {
	margin-top: 3.75rem;
	display: flex;
	flex-direction: row;
}

.offerings-box {
	width: calc(100% / 3);
	border-radius: var(--border-radius);
	padding: 5rem;
	text-align: center;

	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.box1 {
	background-color: var(--black-coffee);
	color: var(--light-salmon);
}

.box2 {
	background-color: var(--pale-sky);
}

.box3 {
	background-color: var(--vivid-orange);
}

.stars {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.star-icon {
	height: 3rem;
	width: 3rem;
}

.stars1-1 {
	translate: 10px -5px;
}
.stars1-2 {
	translate: -10px 0;
}
.stars3-1 {
	translate: 10px 0;
}
.stars3-2 {
	translate: -10px 0;
}

.offerings-box-media {
	width: 14rem;
	height: 4.8rem;
	object-fit: cover;
	margin: 0 auto;
}

.offerings-box-text {
	font-size: 1.125rem;
}

/* PERKS */
.perks-section {
	margin-bottom: 0;
	padding-bottom: 14.375rem;
}
.perks-quote {
	font-size: 5.3125rem;
	margin: 14.375rem 4.125rem;
}

.images-container {
	display: grid;
	grid-template-columns: 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem 3.5rem;
	gap: 0.5rem;
}

.perks-media {
	height: 28.3125rem;
	object-fit: cover;
}

.perks-media1 {
	grid-column: 1 / span 6;
}

.perks-media2 {
	grid-column: 7 / span 2;
}

.perks-media3 {
	grid-column: 9 / span 1;
}

.perks-text {
	font-size: 1.375rem;
}

.perks-list {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 3.625rem;
}

.perks-li {
	list-style-image: url(/images/List-icon.svg);
}

/* FOOTER */
footer {
	background-color: var(--light-salmon);
	margin: 0 1.875rem;
}

.footer-container {
	background-image: url(/images/Screenshot\ 2026-01-21\ at\ 18.02.08.png);
	background-position: 50% 100%;
	background-size: cover;
	background-repeat: no-repeat;

	padding: 5rem;
	border-radius: var(--border-radius);

	color: var(--light-salmon);

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.footer-container-left {
	font-size: 5.3125rem;
	font-weight: 400;
	max-width: 50%;
	margin: 0;
}

.footer-container-right {
	display: flex;
	flex-direction: row;
	gap: 5.875rem;
}

.footer-info-box {
	display: flex;
	flex-direction: column;
	max-width: 8.5rem;
	gap: 2rem;
}

.footer-heading {
	font-size: 1.25rem;
	font-weight: 400;
}

.footer-text {
	line-height: 2;
}

.footer-link {
	color: var(--light-salmon);
}

address {
	font-style: normal;
}

.footer-other {
	padding: 0 1rem;
	font-size: 0.625rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.other-pages-list {
	display: flex;
	flex-direction: row;
	gap: 4rem;
	list-style: none;
	padding: 0;
}

.page-link {
	color: var(--black-coffee);
	text-decoration: none;
}
