/* assets/css/calendar-grid.css */

.season-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin: 2em 0 4em 0;
}
.season-btn {
	background: #fff;
	padding: 0.8em 1.5em;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	color: #555;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: all 0.2s ease;
	border: 1px solid #eee;
	font-family: 'Outfit', sans-serif;
}
.season-btn:hover {
	background: #2e8b57;
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(46, 139, 87, 0.2);
}

.season-section {
	padding: 3.5em 2.5em;
	border-radius: 20px;
	margin-bottom: 4em;
	scroll-margin-top: 100px;
}

/* Fallback general style for months that don't have a specific season class */
.season-general { background: linear-gradient(145deg, #f9fbf9, #f0fdf4); border: 1px solid #e2ece4; }

.season-printemps { background: linear-gradient(145deg, #f0fdf4, #e0f8e9); border: 1px solid #cce8d6; }
.season-ete { background: linear-gradient(145deg, #fffcf0, #fff7d6); border: 1px solid #fbeeb1; }
.season-automne { background: linear-gradient(145deg, #fff8f0, #ffeadd); border: 1px solid #fbd8c1; }
.season-hiver { background: linear-gradient(145deg, #f4fbff, #e3f2fd); border: 1px solid #cde4f7; }

.season-header {
	text-align: center;
	margin-bottom: 3em;
}
.season-header h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 2.2em;
	color: #2c3e2e;
	margin-bottom: 0.3em;
	letter-spacing: -0.5px;
}
.season-header p {
	color: #555;
	font-size: 1.15em;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.food-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.food-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.04);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-bottom: 0 !important;
}
.food-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.food-card a {
	display: block;
	text-decoration: none;
	color: #333;
	padding: 2em 1em;
	border: none;
	height: 100%;
}
.food-img-wrapper {
	width: 110px;
	height: 110px;
	margin: 0 auto 1.2em auto;
	border-radius: 50%;
	background: #f9fbf9;
	padding: 5px;
	border: 3px solid #f0f0f0;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.food-card:hover .food-img-wrapper {
	transform: scale(1.05);
	border-color: #2e8b57;
	background: #fff;
}
.food-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 0 !important;
}
.food-name {
	font-weight: 700;
	font-size: 1.15em;
	font-family: 'Outfit', sans-serif;
	color: #2c3e2e;
	display: block;
	text-transform: capitalize;
}
.food-type {
	font-size: 0.85em;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
	display: block;
}

@media screen and (max-width: 768px) {
	.food-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
	.season-section { padding: 2em 1.5em; }
	.food-img-wrapper { width: 80px; height: 80px; }
	.food-card a { padding: 1.5em 0.5em; }
}
