body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #0a0a0a;
	color: white;
}

.hero {
	background-image: url('lightning.jpg');
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 2rem;
	border-radius: 10px;
}

.hero-overlay img {
	max-width: 90%;
	height: auto;
	margin-bottom: 1rem;
	filter: drop-shadow(0 0 8px #00aaff);
}

.spc-outlook-grid {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.spc-card {
	background-color: #1a1a1a;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	width: 300px;
	box-shadow: 0 0 10px rgba(0, 170, 255, 0.1)
}

.spc-card img {
	width: 100%;
	border-radius: 4px;
}

#site-navigation {
	text-align: center;
	padding: 4rem 2rem;
}

.nav-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.nav-grid {
	background-color: #1a1a1a;
	color: #00aaff;
	text-decoration: none;
	padding: 1.5rem 2rem;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 8px;
	border: 2px solid #00aaff;
	box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
	transition: all 0.3s ease;
	min-width: 200px;
}

.nav-card:hover {
	background-color: #00aaff;
	color: #0a0a0a;
	box-shadow: 0 0 20px rgba(0, 170, 255, 0.6)
}

nav:a {
	color:#00aaff;
	text-decoration: none;
}

a {
	color: #00aaff;
	text-decoration: none;
}

a:visited {
	color: #00aaff;
}

a:hover {
	color: #ffffff;
	text-decoration: underline;
}

#updates {
	background-color: #0a0a0a;
	padding: 4rem 2rem;
	text-align: center;
}

.content-section {
	padding: 4rem 2rem;
	text-align: center;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.gallery-item {
	width: 300px;
	text-align: center;
}

.gallery-item img {
	width: 100%;
	border-radius: 8px;
	transition: transfrom 0.3s;
}

.gallery img:hover {
	transform: scale(1.05);
}

.gallery-item p{
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: #ccc;
}

#chase-log {
	background-color: #0f0f0f;
}

.log-entry {
	max-width:700px;
	margin: 2rem auto;
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
	text-align: left;
}

.log-entry h3 {
	margin-bottom: 0.5rem;
	color: #00aaff;
}

.log-entry p{
	color: #ccc;
	line-height: 1.6;
}

.log-entry img{
	width: 100%;
	border-radius: 8px;
	margin-top: 1rem;
	transition: transform 0.3s;
}

.log-entry img:hover {
	transform: scale(1.03);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 1rem;
}

.social-links a img {
	width: 48px;
	height: 48px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.8;
}

.social-links a img:hover {
	transform: scale(1.1);
	opacity: 1;
}

footer {
	text-align: center;
	padding: 2rem;
	background-color: #111;
}

.page-banner {
	background-image: url('lightning\ 1.jpg');
	background-size: center;
	background-position: center;
	height: 300px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.page-banner h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00aaff;
}

.content-section {
  padding: 4rem 2rem;
  text-align: left;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.content-section h2 {
  color: #00aaff;
  margin-top: 2.5rem;
}

.content-section ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}
