/* Custom styles for Nick's Kicks closure page */

html, body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
}

img {
	max-width: 100%;
}

header#home {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 0;
}

.content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.navbar-brand-spacing {
	margin-bottom: 20px;
}

.flex-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.logo-section {
	flex: 0 0 auto;
}

.logo-section img {
	width: 400px;
	max-width: 100%;
}

.text-content {
	flex: 1;
	text-align: left;
	max-width: 600px;
	color: #555;
	font-size: 1.2em;
	line-height: 1.8;
}

.text-content a {
	color: #4A90E2;
	text-decoration: none;
}

.signature {
	text-align: right;
	margin-top: 30px;
}

.closure-footer {
	padding: 20px 0;
	text-align: left;
	color: #999;
	font-size: 0.9em;
}

.closure-footer p {
	margin: 0;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
	body {
		min-height: auto;
	}
	
	main {
		flex: none;
	}
	
	header#home {
		flex: none;
		justify-content: flex-start;
		padding: 20px 0;
	}
	
	.content-wrapper {
		justify-content: flex-start;
	}
	
	.flex-container {
		flex-direction: column !important;
		gap: 30px !important;
		padding: 20px !important;
	}
	
	.flex-container > div:first-child {
		text-align: center !important;
	}
	
	.flex-container > div:last-child {
		text-align: left !important;
	}
	
	.flex-container > div:last-child p:last-child {
		text-align: right !important;
	}
	
	.flex-container img {
		width: 280px !important;
		max-width: 90% !important;
	}
	
	.text-content {
		font-size: 1.1em !important;
	}
	
	.fh5co-navbar-brand {
		text-align: center !important;
	}
	
	footer {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

