/* 
* Lenuyi-Diniwa CSS Styles
* Color Palette:
* - Primary: #A0004F (deep fuchsia)
* - Secondary: #C2D500 (warm lime)
* - Background: #FFF8F2 (ivory)
* - Text: #2A2A2A (anthracite)
* - UI Elements: #FFD233 (sunny gold)
*/

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #2a2a2a;
	background-color: #fff8f2;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #a0004f;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #c2d500;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 60px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: #a0004f;
	margin: 15px auto 0;
}

p {
	margin-bottom: 15px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.primary-btn {
	background-color: #a0004f;
	color: white;
}

.primary-btn:hover {
	background-color: #800040;
	color: white;
}

.secondary-btn {
	background-color: #ffd233;
	color: #2a2a2a;
}

.secondary-btn:hover {
	background-color: #f2c020;
	color: #2a2a2a;
}

.nav-btn {
	padding: 8px 16px;
	font-size: 0.9rem;
}

/* Header & Navigation */
.site-header {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo a {
	display: block;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #2a2a2a;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
	top: 0px;
}

.menu-icon span:nth-child(2) {
	top: 8px;
}

.menu-icon span:nth-child(3) {
	top: 16px;
}

.nav-list {
	display: flex;
	list-style: none;
}

.nav-list li {
	margin-left: 20px;
}

.nav-list li a {
	color: #2a2a2a;
	font-weight: 600;
}

.nav-list li a:hover {
	color: #a0004f;
}

/* Hero Section */
.hero-section {
	padding: 80px 0;
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/PXD1dr.jpg);
	background-size: cover;
	background-position: center;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-content h1 {
	color: #a0004f;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
}

/* Benefits Section */
.benefits-section {
	background-color: white;
}

.benefits-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.benefit-card {
	flex: 1;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
}

.benefit-icon {
	margin-bottom: 20px;
}

/* Recipes Section */
.recipes-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.recipe-card {
	flex: 1;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.recipe-card:hover {
	transform: translateY(-10px);
}

.recipe-image {
	height: 200px;
	overflow: hidden;
}

.recipe-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipe-card h3 {
	padding: 20px 20px 10px;
}

.recipe-card p {
	padding: 0 20px 10px;
}

.recipe-price {
	padding: 0 20px 10px;
	font-weight: 700;
	color: #a0004f;
	font-size: 1.2rem;
}

.recipe-card .btn {
	margin: 0 20px 20px;
	width: calc(100% - 40px);
}

/* Testimonials Section */
.testimonials-section {
	background-color: white;
}

.testimonials {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial {
	flex: 1;
	min-width: 300px;
	padding: 30px;
	background-color: #fff8f2;
	border-radius: 8px;
	position: relative;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 15px;
}

.testimonial-author {
	font-weight: 700;
	text-align: right;
}

/* Order Form Section */
.order-section {
	background-color: #fff8f2;
}

.order-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.radio-group,
.checkbox-option {
	margin-top: 10px;
}

.radio-option,
.checkbox-option {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.radio-option input,
.checkbox-option input {
	margin-right: 10px;
}

/* FAQ Section */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	border-left: 4px solid #a0004f;
}

.faq-item h3 {
	margin-bottom: 10px;
	color: #a0004f;
}

/* Footer */
.site-footer {
	background-color: #2a2a2a;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-info,
.footer-contact,
.footer-links {
	flex: 1;
	min-width: 250px;
}

.footer-content h3 {
	color: #ffd233;
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	color: white;
}

.footer-links ul li a:hover {
	color: #ffd233;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(42, 42, 42, 0.9);
	color: white;
	padding: 15px;
	z-index: 9999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-text {
	flex: 1;
	margin-right: 20px;
}

.cookie-actions {
	display: flex;
	gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.7rem;
	}

	section {
		padding: 40px 0;
	}

	.menu-icon {
		display: block;
	}

	.menu-toggle:checked ~ .nav-list {
		max-height: 300px;
		opacity: 1;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
		top: 8px;
		transform: rotate(135deg);
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
		opacity: 0;
		left: -60px;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
		top: 8px;
		transform: rotate(-135deg);
	}

	.nav-list {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background-color: white;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: all 0.5s ease;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-list li {
		margin: 0;
		text-align: center;
	}

	.nav-list li a {
		display: block;
		padding: 15px;
	}

	.benefits-cards,
	.recipes-cards,
	.about-content {
		flex-direction: column;
	}

	.about-content {
		gap: 20px;
	}

	.testimonial {
		min-width: 100%;
	}
}

@media (max-width: 480px) {
	.container {
		width: 95%;
		padding: 0 10px;
	}

	.hero-section {
		padding: 60px 0;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.recipe-card,
	.benefit-card {
		margin-bottom: 20px;
	}

	.footer-info,
	.footer-contact,
	.footer-links {
		min-width: 100%;
	}
}
