@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

@font-face {
    font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

:root {
  --dark-font-color: #000;
  --disabled-font-color: #CCC;
  --light-font-color: #FFF;
}

body {
	background: var(--dark-font-color);
	color: var(--light-font-color);
	margin: 0px;
}

#home {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('/assets/home.webp');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow-y: hidden;
}

@keyframes slideUp {
    from {
        bottom: -100%; /* Adjust this value based on the height of your footer */
    }
    to {
        bottom: 0;
    }
}

h1, h2, h3, h4, h5 {
	font-family: 'Merriweather', san-serif;
	font-weight: 400;
	margin-top: 0px;
}

img.logo {
	margin-top: 50px;
	width: 200px;
}

h1 {
	font-size: 50px;
	line-height: 56px;
	margin-bottom: 0px;
}

h2 {
	font-family: 'Inter', san-serif;
	font-size: 40px;
	line-height: 46px;
	position: relative;
	display: inline-block;
}

h2 a {
	color: var(--light-font-color);
	text-decoration: none;
}

h2::after {
    content: '';
    display: block;
    width: 24px; /* Adjust as needed for your arrow's size */
    height: 24px; /* Adjust as needed for your arrow's size */
    background: url('/assets/arrow.webp') no-repeat center / contain; /* Adjusts background size to fit the container */
    position: absolute;
    top: 50%; /* Centers the arrow vertically relative to the h2 element */
    right: -30px; /* Positions the arrow 30px away from the right side of the h2 */
    transform: translateY(-50%); /* Adjusts vertical position to truly center based on the height of the arrow */
}

h1.dark {
	color: var(--dark-font-color);
}

h1 span {
    text-decoration: none; /* Remove default underline */
    box-shadow: inset 0 -1px 0 0 #777777; /* Create a 1px underline */
}

p {
	font-family: 'Merriweather', san-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
}

div.centered {
	width: 1380px;
	margin: 0px auto;
}

div.content_centered {
	text-align: center;
}

div.content_left {
	text-align: left;
}

div.content_right {
	text-align: right;
}

div.vspace_standard {
	padding: 2% 0px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

div.vspace_footer {
	padding: 1% 0px;
}

.contained_40 {
	width: 80%;
	margin: auto;
}

.top_nudge_100 {
	margin-top: 60px;
}

.top_nudge_10 {
	margin-top: 10px;
}

div.flex_row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 80px;
}

div.flex_2col {
	position: relative;
	flex: 1;
}

footer {
    background: var(--dark-font-color);
    position: absolute;
    bottom: -100%; /* Start offscreen */
    width: 100%;
    animation: slideUp 1s ease-out 1s forwards; /* Animation name, duration, easing, delay, fill mode */
}

footer #legals p {
	font-size: 12px;
	line-height: 14px;
}

footer #legals p a {
	color: #ffffff;
}

div.tagline {
	position: absolute;
    top: 75px;
    width: 100%;
    text-align: right;
}

#signupForm {
	background: white;
	padding: 30px 20px;
	position: absolute;
	bottom: 0;
	width: auto;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	animation: fadeInUp 0.6s ease forwards;
}

#signupForm .form-row {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

#signupForm input[type="text"],
#signupForm input[type="email"] {
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 150px;
	font-family: 'Merriweather', san-serif;
	font-weight: 400;
}

#signupForm button {
	background: black;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s ease;
	font-family: 'Merriweather', san-serif;
}

#signupForm button:hover {
	background: #333;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1380px) {

	div.centered {
		width: 96%;
		margin: 0px 2%;
	}
	
	img.logo {
		margin-top: 10px;
		width: 200px;
	}
		
}

@media (max-width: 767px) {

	div.vspace_standard {
		padding: 5% 0px;
	}

	h1 {
		font-size: 40px;
		line-height: 41px;
	}
	
	.top_nudge_100 {
		margin-top: 20px;
	}
	
	.contained_40 {
		width: 90%;
	}
	
	div.tagline {
        top: 30px;
	}

}


