@import url('vars.css');
@import url('fonts.css');

body {
	font-family: var(--font-body);
	color: var(--color-white);
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background-color: var(--color-blue);
	background-image: var(--asset-body-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

h1, h2, h3, h4, h5, h6, p, a {
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: var(--container-width--desktop);
	max-width: 100vw;
	margin: 0 auto;
}

.landing {
	padding-top: 50px;
	padding-bottom: 100px;
	display: flex;
	gap: 180px;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}

header.branding {
	width: 327px;
	flex-basis: 327px;
}

.logo {
	display: block;
	width: 100%;
	height: auto;
}

.logo img {
	display: block;
	width: 100%;
	height: auto;
}

.main-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: var(--content-spacing);
	width: calc(100% - 327px - 180px );
	padding-top: 65px;
}

h1 {
	color: var(--color-white);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.1;
}

.heading-primary {
	max-width: 770px;
	letter-spacing: 0.01em;

	/* font-family: var(--font-alt);
	font-weight: 400;
	transform: scaleX(0.90);
	transform-origin: left center; */
}

.eyebrow {
	font-family: var(--font-alt);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-light-green);
	font-size: clamp(1.25rem, 2.5vw, 2.5rem);
	letter-spacing: 0.02em;
}

.description {
    font-size: clamp(1.2rem, 2.35vw, 1.85rem);
	line-height: 1.15;
	margin-top: -15px;
}

.button-cta {
    background: var(--color-light-green);
    color: var(--color-blue);
	text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.35rem);
    border-radius: 2em;
    padding: 0.4em 1.5em;
    font-family: var(--font-body);
	border: 2px solid var(--color-white);
    display: inline-block;
	transition: all 200ms ease-in-out;
	letter-spacing: -0.01em;
}
.button-cta:hover {
	background: var(--color-white);
}

.phone-number {
	white-space: nowrap;
}

@media (min-width: 1100px) {
	.description {
		margin-top: -20px;
	}
}

@media (max-width: 1640px) {
	.landing {
		padding-left: 50px;
		padding-right: 50px;
		gap: clamp(2rem, 5vw, 10rem);
	}

	.main-content {
		width: calc(100% - 327px - clamp(2rem, 5vw, 10rem) );
	}
}

@media (max-width: 1100px) {
	.landing {
		gap: var(--content-spacing);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	header.branding {
		flex-basis: auto;
	}

	.main-content {
		width: 100%;
		flex-basis: auto;
		padding-top: 0;
	}
}

@media (max-width: 600px) {
	.landing {
		padding-left: 35px;
		padding-right: 35px;
		padding-top: 30px;
	}
	header.branding {
		width: 300px;
	}
	.eyebrow {
		letter-spacing: 0;
	}
}

@media (max-width: 470px) {
	.button-cta {
		text-align: center;
	}
}
