/* Global Base Styles */
html, body {
	margin: 0;
	padding: 0;
	font-family: 'YourFontFamily', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

/* Container to center content */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Reset list styles */
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Links */
a {
	text-decoration: none;
	color: inherit;
}

/* Images */
img {
	max-width: 100%;
	height: auto;
}

/* Buttons and touch elements */
button, .touch {
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	border: none;
	background: none;
}

/* Utility classes */
.hidden {
	display: none;
}

/* Base styles for components */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.section {
	padding: 2rem 0;
}

.button {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	border-radius: 5px;
}

/* Responsive Typography */
h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

p {
	font-size: 1rem;
	margin-bottom: 1rem;
}

/* Media Queries for Responsiveness */

/* Tablets and small desktops */
@media (max-width: 1024px) {
	html, body {
		max-width: 1024px;
		font-size: 15px;
	}
	.navbar {
		padding: 0.75rem 0;
	}
	.section {
		padding: 1.5rem 0;
	}
	.buy-links-container {
		flex-direction: column;
	}
	.buy-link a {
		align-content: center;
	}
	.button {
		padding: 0.65rem 1.25rem;
		font-size: 0.95rem;
	}
	h1 {
		font-size: 2rem;
	}
	p {
		font-size: 0.95rem;
	}
}

/* Mobile devices */
@media (max-width: 768px) {
	html, body {
		max-width: 768px;
		font-size: 14px;
	}
	.container {
		padding: 0 0.5rem;
	}
	.navbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.navbar .menu {
		display: none;
	}
	.navbar .hamburger {
		display: block;
	}
	.section {
		padding: 1rem 0;
	}
	.button {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}
	h1 {
		font-size: 1.75rem;
	}
	p {
		font-size: 0.9rem;
	}
}

/* Small mobile devices */
@media (max-width: 480px) {
	img {
		width: 100%;
	}
	html, body {
		max-width: 480px;
		font-size: 13px;
	}
	.navbar {
		padding: 0.5rem 0;
	}
	section {
		padding: 0.75rem 0;
	}
	.button {
		padding: 0.5rem 0.75rem;
		font-size: 0.85rem;
	}
	h1 {
		font-size: 1.5rem;
	}
	p {
		font-size: 1.1rem !important;
	}
}
