body {
	margin: 0;
	font-family: 'Sansation', Arial, sans-serif;
	font-weight: 400;
	background-image: url('images/bg.jpg');
	background-size: cover;
	background-position: center;
	color: #000;
}

nav {
	position: relative;
	display: flex;
	justify-content: space-between; 
	align-items: center;
	padding: 15px 30px;
	max-width: 1000px;
    margin: auto;
}

.nav-logo {
	display: flex;
	align-items: center;
}

.nav-logo img {
	max-height: 40px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 5px;
}

.nav-links a {
	color: #0a2944;
	text-decoration: none;
	margin: 0;
	font-weight: bold;
	font-size: 17px;
	padding: 10px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-links a:hover,.shedbut {
	color: #FFF !important;
	background-color: #0a2944;
}

.shedbut:hover {
	background-color: #2576ad !important;
}

.hamburger {
	display: none;
	cursor: pointer;
	z-index: 100;
}

.hamburger div {
	width: 30px;
	height: 3px;
	background-color: #0a2944;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.hamburger.active div {
	background-color: #0a2944;
}

.hamburger.active div:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
	opacity: 0;
}

.hamburger.active div:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero h1 {
	font-size: 4em;
	margin: 0;
	font-weight: 700;
}

.hero p {
	font-size: 1.5em;
	margin-top: 10px;
}

.intro-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	max-width: 1000px;
	margin: 50px auto 0 auto;
	background-color: transparent;
	justify-content: center;
	gap: 20px;
}

.intro-section img {
	max-width: 500px;
}

.intro-text {
	flex: 1;
}

.intro-text p {
	font-size: 1.25em;
	line-height: 1.5em;
	margin-bottom: 0px;
}

h2 {
	font-weight: bold;
	margin-top: 30px;
	font-size: 1.25em;
	text-align: center;
}

.checklist-section {
	text-align: center;
	padding: 20px;
}

.checklist {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.8);
	color: #0a2944;
	padding: 8px 20px;
	border-radius: 20px;
	margin: 5px;
	border:1px solid #CCC;
	font-size: 0.9em;
}

.about-section {
	background-color: rgba(244, 239, 230, 1);
	border:1px solid #999;
	border-radius: 10px;
	padding: 0px 40px 40px 40px;
	max-width: 920px;
	margin: 75px auto 0 auto;
	position: relative;
}

.about-section h2 {
	text-align: left;
	border-bottom:1px solid #999;
	padding-bottom: 10px;
	font-size: 1.75em;
}

.toolkit {
	text-align: center;
	padding: 40px 20px;
}

.toolkit h2 {
	font-size: 2em;
	margin-bottom: 30px;
	font-weight: 700;
}

.toolkit-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.toolkit-boxes .toolkit-box:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 15px rgba(0,0,0,0.7);
	transition: all 0.3s ease;
	border: 1px solid #0a2944;
}

.toolkit-box {
	background-color: rgba(244, 239, 230, 1);
	border: 1px solid #999;
	border-radius: 10px;
	color:#000;
	text-align: left;
	text-decoration: none;
	padding: 40px;
	width: 250px;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
	position: relative;
}

.toolkit-box img {
	max-height: 60px;
    background: #FFF;
    padding: 15px;
    border: 1px solid #999;
    border-radius: 15px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.toolkit-box:hover img {
	border-color: #0a2944;
	transform: rotate(-10deg);
}

.toolkit-box h3 {
	margin: 10px 0;
	font-weight: bold;
}

.toolkit-boxes .toolkit-launch {
	color: #999;
	text-decoration: none;
	display: block;
	border-top:1px solid #999;
	margin-top: 30px;
	padding-top:10px;
	font-family:'Courier New', Courier, monospace;
}

.toolkit-box:hover .toolkit-launch {
	color: #0a2944;
}

.toolkit-box p {
	margin: 10px 0;
}

.toolkit-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #0a2944;
	color: #FFF;
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 5px;
}

.toolkit-box:hover .toolkit-badge {
	background-color: #2576ad;
}

footer {
	background-color: #444;
	color: #FFF;
	text-align: center;
	padding: 10px;
}

@media (max-width: 768px) {
	nav {
		display: flex;
		flex-wrap: wrap;
	}

	.hamburger {
		display: block;
	}

	.nav-links {
		display: none; 
		flex-direction: column;
		width: 100%;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links a {
		margin: 0;
		padding: 15px;
		border-top: 1px solid #bbb;
		text-align: center;
	}

	.intro-section {
		flex-direction: column;
		text-align: center;
	}

	.intro-section img {
		max-width: 100%;
	}

	.toolkit-boxes {
		flex-direction: column;
		align-items: center;
	}

	.about-section {
		padding: 40px;
	}

}