/*!
Theme Name: Woodruff
Author: Woodruff
Description: A custom WordPress theme.
Version: 1.0
Text Domain: woodruff
*/

:root {
	--white: #fff;
	--tufts-blue: #3B8EDD;
	--bice-blue: #3072B1;
	--gunmetal: #1D252D;
	--black: #060505;
	--timberwolf: #D1D1D1;
	--seasalt: #f7f7f7;
	--platinum: #D9D9D9;
	--raisin-black: #2F2727;
	--brandeis-blue: #0D6EFD;
	--display-font-family: Abolition, serif;
	--body-font-family: brandon-grotesque, sans-serif;

	--fs-hero: clamp(3rem, 6vw + 1rem, 5.5rem);

	--header-height: 69px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--body-font-family);
}

body {
	overscroll-behavior-y: none;
	font-weight: 300;
	color: var(--white);
}

h1, h2, h3 {
	font-family: var(--display-font-family);
	text-transform: uppercase;
}

a {
	color: var(--white) !important;
	text-decoration: none !important;
}

a:hover {
	color: var(--tufts-blue);
}

/* Elements */
.button-blue-black {
	margin-top: 3rem;
	padding: 0.625rem 2.5rem;
	background-color: var(--tufts-blue);
	border: none;
	cursor: pointer;
	color: var(--gunmetal);
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: 0.3s ease-in-out;
}

.button-blue-black:hover,
.button-blue-white:hover {
	background-color: var(--white);
}

.button-blue-black:hover {
	color: var(--white);
	background-color: var(--gunmetal);
}

.button-blue-white {
	margin-top: 3rem;
	padding: 0.625rem 2.5rem;
	background-color: var(--tufts-blue);
	border: none;
	cursor: pointer;
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: 0.3s ease-in-out;
}

.button-outline {
	padding: 0.625rem 2.5rem;
	background-color: transparent;
	border: 1px solid var(--tufts-blue);
	cursor: pointer;
	color: var(--tufts-blue);
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: 0.3s ease-in-out;
}

.button-outline:hover {
	background-color: var(--tufts-blue);
	color: var(--white);
}

/* Layouts */

.inner-section {
	padding: 0 2rem;
	margin: 0 auto;
	box-sizing: content-box;
}

/* Components */

.hero {
	position: relative;
	width: 100%;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero .inner-section {
	padding-top: calc(var(--header-height) + 1rem);
	padding-bottom: 1rem;
	max-width: 850px;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInHero 1s ease-out forwards;
}

@keyframes fadeInHero {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-size: var(--fs-hero);
	font-weight: 400;
}

.hero p {
	font-size: 1.3rem;
}

.separator-wrapper {
	background-color: var(--black);
	display: flex;
	justify-content: center;
	padding: 2rem;
}

.separator {
	width: 1120px;
	height: 1px;
	background-color: var(--timberwolf);
}

.footer-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 2rem 9rem;
	gap: 2.5rem;
	background-color: var(--white);
}

.footer-cta__title {
	font-family: var(--display-font-family);
	font-size: clamp(2.5rem, 1.8vw + 1.4rem, 5.5rem);
	font-weight: 400;
	line-height: 1.3;
	color: var(--gunmetal);
	margin: 0;
}