:root {
	--primary-red: #8B1A1A; /* Dark Red from logo */
	--primary-orange: #E17726; /* Orange from logo */
	--primary-dark-grey: #332C2C; /* Dark Grey from logo */
	--primary-light-grey: #9C9B9B; /* Light Grey from logo */
	--background-light: #F0F2F5; /* Light background for contrast */
	--text-color-dark: #2C3E50;
	--text-color-light: #ECF0F1;
	--font-family: 'Roboto', sans-serif;
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: var(--background-light);
	color: var(--text-color-dark);
	scroll-behavior: smooth;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

header {
	background-color: var(--primary-dark-grey);
	color: var(--text-color-light);
	padding: 1rem 0;
	border-bottom: 5px solid var(--primary-red);
	position: sticky;
	top: 0;
	z-index: 1000;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 100px; /* Adjust based on your logo size */
	margin-right: 15px;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.logo h1 {
	margin: 0;
	font-size: 3.2rem;
	color: var(--primary-orange);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	
}

footer ul li {
	margin-left: 30px;
	display: inline-flex;
}

footer ul li a {
	color: var(--text-color-light);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: color 0.3s ease, border-bottom 0.3s ease;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
}

footer ul li a:hover,

footer ul li a.active {
	color: var(--primary-orange);
	border-bottom: 2px solid var(--primary-orange);
}



nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	color: var(--text-color-light);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: color 0.3s ease, border-bottom 0.3s ease;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
	color: var(--primary-orange);
	border-bottom: 2px solid var(--primary-orange);
}

.hero {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1600x600/332C2C/E17726?text=EVE+Online+Space+Background') no-repeat center center/cover;
	color: var(--text-color-light);
	text-align: center;
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(225,119,38,0.2) 0%, transparent 70%);
	pointer-events: none;
}

.hero h2 {
	font-size: 3.5rem;
	margin-bottom: 15px;
	color: var(--primary-orange);
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
	font-size: 1.4rem;
	max-width: 800px;
	margin: 0 auto 30px auto;
	color: var(--primary-light-grey);
}

.btn {
	background-color: var(--primary-red);
	color: var(--text-color-light);
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
	background-color: #A92C2C;
	transform: translateY(-3px);
}

section {
	padding: 60px 0;
	background-color: var(--background-light);
}

section.dark-bg {
	background-color: var(--primary-dark-grey);
	color: var(--text-color-light);
}

section h3 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 40px;
	color: var(--primary-red);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}



section.dark-bg h3 {
	color: var(--primary-orange);
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.card {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 5px solid var(--primary-red);
}

.card.dark-card {
	background-color: var(--primary-dark-grey);
	color: var(--text-color-light);
	border-top-color: var(--primary-orange);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card.dark-card h4 {
	color: var(--primary-orange);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card h4 {
	font-size: 1.8rem;
	color: var(--primary-red);
	margin-bottom: 15px;
}

.card p {
	font-size: 1.1rem;
	color: var(--text-color-dark);
}

.card.dark-card p {
	color: var(--primary-light-grey);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-content img {
	flex: 1;
	max-width: 500px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	border: 3px solid var(--primary-red);
}

.about-content div {
	flex: 2;
	font-size: 1.15rem;
	color: var(--primary-light-grey);
}

.about-content div h4 {
	font-size: 2rem;
	color: var(--primary-orange);
	margin-bottom: 20px;
}



footer {
	background-color: var(--primary-dark-grey);
	color: var(--text-color-light);
	text-align: center;
	padding: 30px 0;
	border-top: 5px solid var(--primary-orange);
}

footer p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--primary-light-grey);
}

.discord-btn {
	background-color: #7289DA; /* Discord blue */
	display: inline-flex;
	align-items: center;
	margin-top: 20px;
	padding: 12px 25px;
	text-decoration: none;
	color: white;
	border-radius: 5px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.discord-btn:hover {
	background-color: #6272C2;
	transform: translateY(-3px);
}

.discord-btn i {
	margin-right: 10px;
	font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	header .container {
		flex-direction: column;
		text-align: center;
	}

	nav ul {
		margin-top: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav ul li {
		margin: 0 15px 10px 15px;
	}

	

	.hero p {
		font-size: 1.2rem;
	}

	.about-content {
		flex-direction: column;
		text-align: center;
	}

	.about-content img {
		max-width: 80%;
		margin-bottom: 30px;
	}

	.grid-3 {
		grid-template-columns: 1fr;
	}
}