/* Basic CSS file */

/* Reset some defaults */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	background: #f7f9fc;
	color: #111827;
	line-height: 1.5rem;
	font-size: 24px;
}

/* Container */
#container {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem;
}

#hero {
	margin-top: 10rem;
}

#main {
	margin-top: 5rem;
	margin-bottom: 10rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin-bottom: 0.5rem;
	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}

h1 {
	font-size: 2rem;
	font-weight: 900;
	line-height: 2rem;
}

h2 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	margin-top: 3rem;
	margin-bottom: 2rem;
}

#hero-content h2 {
	margin-top: 0;
}

h3 {
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 2rem;
}

h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1rem;
	font-family: "Alte Haas Grotesk", sans-serif;
}

p {
	margin-bottom: 1rem;
	font-family: "Alte Haas Grotesk", sans-serif;
}

a {
	text-decoration: none;
	color: #111827;
}

a:hover {
	color: #3b82f6;
}

#footer ul,
#header ul {
	list-style-type: none;
}

#hero-content p {
	font-size: 0.5rem;
	margin-top: 4rem;
	margin-bottom: 8rem;
}

#footer {
	font-size: 0.75rem;
}

#footer p {
	margin-top: 4rem;
}

p.copyright {
	font-size: 0.75rem;
	color: #d1d5db;
}

#footer ul li {
	line-height: 2rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	text-decoration: none;
	background: #3b82f6;
	color: #fff;
	border: none;
	cursor: pointer;
}

.btn.secondary {
	background: #6b7280;
}

/* Forms */
input,
textarea,
select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: #fff;
}

/* Utility classes */
.text-center {
	text-align: center;
}
.mt-1 {
	margin-top: 0.25rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.mt-4 {
	margin-top: 1rem;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mb-4 {
	margin-bottom: 1rem;
}

/* Simple responsive image */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Navigation */
.nav {
	display: flex;
	gap: 1rem;
	align-items: center;
}

nav p {
	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
	font-weight: 800;
}

/* Footer */
footer {
	text-align: center;
	padding: 1rem 0;
	color: #6b7280;
}

@media screen and (max-width: 769px) {
	#main {
		margin-top: 2.5rem;
		margin-bottom: 5rem;
	}

	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.35rem;
		line-height: 1.35rem;
	}

	h3 {
		font-size: 0.94rem;
	}

	h4 {
		font-size: 0.9rem;
		line-height: 1rem;
	}

	p {
		font-size: 0.9rem;
	}

	#container {
		padding: 1rem;
	}
}
