/*
Theme Name: GridBiz
Theme URI: https://example.com/gridbiz
Author: Your Name
Author URI: https://example.com
Description: A modern business theme with a grid-based homepage layout.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gridbiz
Tags: one-column, two-columns, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, grid-layout
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	background: #f5f7fa;
	color: #333;
}

.hero-section {
	background: linear-gradient(to right, #0062ff, #60efff);
	padding: 6rem 2rem;
	text-align: center;
	color: white;
}

	.hero-section .btn-primary {
		background: white;
		color: #0062ff;
		padding: 0.75rem 2rem;
		border-radius: 25px;
		font-weight: bold;
		text-decoration: none;
	}

.section-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	text-align: center;
}

.about-section {
	background: #fff;
	padding: 4rem 2rem;
}

.about-content {
	max-width: 800px;
	margin: auto;
	text-align: center;
}

/* Example CSS to align menu items in one line */
.menu ul {
	display: flex; /* Aligns items in a row */
	justify-content: center; /* Centers the menu items horizontally */
	list-style: none; /* Removes bullet points */
	padding: 0; /* Removes default padding */
	margin: 0; /* Removes default margin */
}

	.menu-item li {
		margin: 0 15px; /* Adds spacing between menu items */
	}

	.menu-item a {
		text-decoration: none; /* Removes underline from links */
		color: #000; /* Sets link color */
	}
