/* Modern typography */
body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	color: #2d3436;
	background-color: #f8f9fa;
}

/* Recipe cards styling */
.recipe-card {
	display: block;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
	text-decoration: none;
	color: #2d3436;
	transition: all 0.3s ease;
	border: 1px solid #eee;
	height: 100%;
}

.recipe-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	color: #0066cc;
	border-color: #0066cc;
}

/* Headings */
h1,
h2,
h3 {
	font-weight: 600;
}

h1 {
	font-size: 2.5rem;
	color: #2d3436;
}

h2 {
	font-size: 1.8rem;
	color: #2d3436;
}

.category-title {
	font-size: 1.2rem;
	color: #636e72;
	font-weight: 500;
	margin-bottom: 1rem;
}

/* Container adjustments */
.recipe-index {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.category-section {
	margin-bottom: 3rem;
}

/* Navigation Menu Links */
nav a {
	display: inline-block;
	padding: 0.5rem 1rem;
	color: #2d3436;
	text-decoration: none;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s ease;
	margin-right: 1rem;
	background-color: transparent;
	border: 1px solid transparent;
}

nav a:hover {
	background-color: #f8f9fa;
	border-color: #dee2e6;
	color: #0066cc;
	transform: translateY(-1px);
}

nav a:active {
	transform: translateY(0);
}

/* About Page Links */
.about-content a {
	color: #0066cc;
	text-decoration: none;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	transition: all 0.2s ease;
	font-weight: 500;
}

.about-content a:hover {
	background-color: #f8f9fa;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-content a[href^="https://"] {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.8rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	margin: 0 0.2rem;
}

.about-content a[href^="https://"]:hover {
	border-color: #0066cc;
	background-color: #f8f9fa;
	transform: translateY(-1px);
}

/* Social Media Links */
.about-content a[href*="instagram.com"] {
	background-color: #fff;
	color: #e1306c;
	border-color: #e1306c;
}

.about-content a[href*="instagram.com"]:hover {
	background-color: #fcf2f6;
	color: #e1306c;
}

/* GitHub Links */
.about-content a[href*="github.com"] {
	background-color: #fff;
	color: #24292e;
	border-color: #24292e;
}

.about-content a[href*="github.com"]:hover {
	background-color: #f6f8fa;
	color: #24292e;
}

/* Header styling */
header {
	background-color: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	padding: 1.5rem;
	margin-bottom: 2rem;
}

/* Recipe page styling */
.recipe {
	background-color: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.recipe h1 {
	margin-top: 0;
}

.recipe ul,
.recipe ol {
	padding-left: 2rem;
}

footer {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.9rem;
	color: #777;
}
