/* Main Content Styles */
.main-wrapper {
	padding: 0;

}

.hero {
    background-image: url('../../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
	text-shadow: 2px 2px 4px black;
}

.hero p {
	padding: 20px;
	text-shadow: 2px 2px 4px black;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent);
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.hero-boxes {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* Four equal columns */
	gap: 20px; /* Space between boxes */
	padding: 50px;
}

.box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	border-radius: 12px;
	color: white;
	text-shadow: 2px 2px 4px black;
	text-align: center;
	min-height: 200px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
	background: linear-gradient(175deg, #e6e6e6, #FFFFFF);
}

.box:hover {
	transform: translateY(-5px); /* Subtle lift on hover */
}

/* Sections */
.projects-section, .servers-section {
  text-align: center;
  padding: 30px 20px;
}

#featured-projects h2, #featured-servers h2 {
	padding-bottom: 15px;
}

/* Grid Layout for Projects and Servers */
.projects-grid, .servers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: center;
}



/* Card Styles */
.project-card, .server-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease-in-out;
	padding: 15px;
}

.project-card:hover, .server-card:hover {
	transform: scale(1.05);
}

.project-card img, .server-card img {
	width: 100px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.project-info, .server-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.project-info h3, .server-info h3 {
	margin: 10px 10px 0 10px;
	font-size: 1.2em;
}

.server-info h4 {
	font-size: 1em;
}

.project-info p, .server-info p {
	margin-top: 5px;
	margin-bottom: 5px;
	color: #666;
	font-size: .8em;
}

.learn-more-btn {
	margin-top: auto;
	align-self: center;
	display: inline-block;
	padding: 8px 20px;
	background: var(--accent);
	color: black;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.3s;
}

.learn-more-btn:hover {
	background: #0056b3;
}

/* Separator between sections */
.spacer {
	height: 10px; /* Adjust height as needed */
}