/* -----------Typography styles--------- */
/* Some base typography rules have already been declared in reset.css. Never edit reset.css - overwrite here as needed. */

/* Begin with rules for mobile. Use the media queries at the bottom of the page to adjust any rule for larger screens. */

/* -----Set the base size here----- */

/* Desktop Navigation Link Base Styles */
.navbar ul li a {
	display: inline-block;
	padding: 0.5rem 1rem; /* Adjust padding as needed */
	text-decoration: none;
	color: #333; /* Base text color */
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover and Focus States */
.navbar ul li a:hover,
.navbar ul li a:focus {
	color: #7b7b7b; /* Blue text color on hover */
}

/* Active State */
.navbar ul li a:active {
	color: #4f4f4f; /* White text when active */
}

html {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

/* -----Set the body copy font rules, and fallback rules for all text ----- */
body {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

/* ---------Copy & Lists--------- */
/* Paragraph styles, including margins. Consider limiting the line lengths with a maximum width. */

/* List styles */
ul,
ol {
	margin-top: 1em;
	list-style: none;
}

/* nested list styles */
ul ul,
ol ul,
ul ol,
ol ol {
	margin-top: 1em;
}

/* List item styles */
li {
	font-weight: 500;
}

/* --------Headings------- */

/* Change heading typefaces, margins, letter spacing and general line heights here */
h1,
h2,
h3,
h4,
h5,
h6 {
	text-align: left;
}

/* Change font size and more specific rules as needed per heading type */

/* Match logo container to image margins */
.Logo-typeface {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 300; /* Light */
	text-transform: uppercase; /* All caps */
	font-size: 2.5rem; /* adjust for desktop */
	line-height: 1.1;
	letter-spacing: 4px; /* optional for logo style */
	display: block;
	padding: 0 1rem; /* Add padding to the left side (you can adjust if needed) */
	max-width: 400px; /* Same max width as the images */
	margin: 1rem 0 0 0; /* Top margin for spacing from the top */
	text-decoration: none; /* optional: remove underline */
	color: inherit; /* optional: match text color */
}

.Logo-typeface h1 {
	font-size: 2rem; /* Adjust the font size as needed */
	line-height: 1.6;
	margin: 0;
}

h1 {
	margin-top: 1em;
	font-size: 2rem;
}
h2 {
	margin-top: 1em;
	font-size: 2rem;
	text-align: left;
	margin-bottom: 2rem;
}
h3 {
	margin-top: 1em;
	font-size: 1.3rem;
	font-weight: 600;
}

.footer {
	font-size: 16px;
}

/* ---------Links----------- */

/* -----Text links----- */
a {
	text-decoration: none;
	text-align: center;
}

.coming-soon-text {
	display: flex;
	justify-content: center; /* horizontal */
	align-items: center; /* vertical */
	height: 90vh; /* full viewport height */
	text-align: center; /* ensures multi-line text is centered */
	font-size: large;
	text-transform: uppercase; /* All caps */
	letter-spacing: 2px;
}

/*  -------Media queries----------- */
/* Adjust any rules for larger screen sizes. Text-wrap is used here as an example - edit or delete as needed. */

@media (min-width: 768px) {
	.text-wrap {
		padding: 2em;
	}

	h1 {
		margin-top: 5em;
		font-size: 2rem;
	}

	body {
		font-size: 17px;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		text-align: center;
	}
}

@media (min-width: 900px) {
	.text-wrap {
		padding: 3em;
	}

	body {
		font-size: 18px;
	}
}
body {
	font-size: 18px;
}

@media (min-width: 769px) {
	.Logo-typeface {
		justify-content: center; /* centers horizontally */
		align-items: center; /* centers vertically */
		margin: 0 auto; /* center container */
		text-align: center;
	}

	.Logo-typeface h1 {
		margin: 0;
	}
}
