/* GridironGod Dev Site - Homepage Styles */

/* Page Components */
	/* Homepage */
		/* hero section */
		.hero {
			text-align: center;
			padding: 3rem 0;
			background: #242526;
			border: 2px solid #ffffff;
			border-radius: 8px;
			margin-bottom: 2rem;
			box-shadow: 0 2px 10px rgba(0,0,0,0.3);
		}
		
		.hero h2 {
			color: #ffffff;
			margin-bottom: 1rem;
			font-size: 2.5rem;
		}
		
		/* feature grid */
		.feature-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 2rem;
		}
		
		/* feature cards */
			.feature-card {
				background: #242526;
				border: 2px solid #ffffff;
				padding: 2rem;
				border-radius: 8px;
				box-shadow: 0 2px 10px rgba(0,0,0,0.3);
				text-align: center;
			}
			
			.feature-card h3 {
				color: #ffffff;
				margin-bottom: 1rem;
			}
		/* feature cards */
	/* Homepage */
/* Page Components */