nav {
	background-color: rgb(93, 86, 214);
	padding: 1rem 2rem;
	color: white;
}

nav a {
	color: white;
	margin-left: 1rem;
	text-decoration: none;
	font-weight: 500;
}

nav a:hover {
	text-decoration: underline;
}

.app-bar {
	background: rgb(89, 85, 158);
	color: white;
	padding: 1rem 2rem;
}

.app-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1120px;
	margin: 0 auto;
}

html, body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	font-family: Arial, sans-serif;
	background-color: #f5f6fa;
}

#content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1rem;
}

.hero {
	margin-top: 5rem;
	margin-bottom: 2rem;
	text-align: center;
}

#hero img {
	height: 100px;
	width: 100px;
	object-fit: cover;
	border-radius: 12px;
}

.hero-title {
	font-size: 3rem;
	margin-bottom: 0.5rem;
	color: #222;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

#hero h1 {
	margin: 1rem 0 0.5rem;
	font-size: 3rem;
	color: #222;
}

#hero p {
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.5rem;
	color: #666;
}

#products {
	margin-top: 4rem;
	width: 100%;
	max-width: 900px;
}

.product-card {
	margin-top: 2rem;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	cursor: pointer;
	transition: all 0.2s ease;

	display: flex;
	align-items: center;
	gap: 1.5rem;
	text-align: left;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card img {
	height: 80px;
	width: 80px;
	object-fit: cover;
	border-radius: 8px;
}

.product-card h4 {
	margin: 0;
}

.product-links {
	margin-top: 0.5rem;
	text-align: right;
}

.product-links a {
	font-size: 1.2rem;
	color: rgb(93, 86, 214);
	text-decoration: none;
	font-weight: 500;
}

.product-links a:hover {
	text-decoration: underline;
}

#contact {
	margin-top: 4rem;
	width: 100%;
	max-width: 900px;
}

.contact-card {
	margin-top: 2rem;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	/* cursor: pointer; */
	transition: all 0.2s ease;

	display: flex;
	align-items: center;
	gap: 1.5rem;
	text-align: left;
}

.contact-card:hover {
	/* transform: translateY(-4px); */
	/* box-shadow: 0 8px 20px rgba(0,0,0,0.12); */
}

.contact-card img {
	height: 80px;
	width: 80px;
	object-fit: cover;
	border-radius: 8px;
}

.contact-card h4 {
	margin: 0;
}


#screenshots {
	margin: 3rem 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
#screenshots img {
	border-radius: 12px;
	width: 200px;
	height: auto;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.links {
	margin: 2rem 0;
}

.links a {
	margin: 0 1rem;
	color: rgb(93, 86, 214);
	text-decoration: none;
	font-weight: 500;
}

.links a:hover {
	text-decoration: underline;
}

footer {
	text-align: center;
	padding: 10px 0;
	background-color: rgb(134, 130, 209);
	color: white;
	margin-top: 2rem;
}