/* Base styles */
:root {
	--color-lemon: #f1f552;
	--color-green: #176a5c;
	--color-cream: #f6e6c2;
	--color-text: #333333;
	--color-white: #ffffff;
	--font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	color: var(--color-text);
	line-height: 1.6;
	background-color: var(--color-white);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: var(--color-green);
	transition: var(--transition);
}

a:hover {
	color: var(--color-lemon);
}

ul {
	list-style: none;
}

section {
	padding: 80px 0;
}

.section-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 40px;
	color: var(--color-green);
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--color-lemon);
	margin: 20px auto 0;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: var(--color-green);
	color: var(--color-white);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
	text-align: center;
}

.btn:hover {
	background-color: var(--color-lemon);
	color: var(--color-text);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn--primary {
	background-color: var(--color-lemon);
	color: var(--color-text);
}

.btn--primary:hover {
	background-color: var(--color-green);
	color: var(--color-white);
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-cream);
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
	margin: 0;
	flex: 1;
}

.cookie-banner form {
	margin-left: 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 100;
	padding: 10px 0;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-green);
}

.logo-svg {
	width: 120px;
	height: 40px;
}

.logo-text {
	fill: var(--color-green);
	font-family: var(--font-primary);
	font-weight: bold;
}

/* Menu */
.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--color-green);
	transition: var(--transition);
}

.menu-btn::before {
	top: 0;
}

.menu-btn span {
	top: 9px;
}

.menu-btn::after {
	bottom: 0;
}

.menu__list {
	display: flex;
}

.menu__item {
	margin-left: 20px;
}

.menu__link {
	font-weight: 600;
	padding: 5px 0;
	position: relative;
}

.menu__link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-lemon);
	transition: var(--transition);
}

.menu__link:hover::after {
	width: 100%;
}

/* Hero section */
.hero {
	padding: 180px 0 80px;
	background-color: var(--color-green);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background-color: var(--color-lemon);
	border-radius: 50%;
	opacity: 0.1;
}

.hero__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero__content {
	flex: 1;
}

.hero__title {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero__subtitle {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero__image {
	flex: 1;
	position: relative;
}

.hero__img {
	border-radius: 8px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(0);
	transition: var(--transition);
}

.hero__img:hover {
	transform: translateY(-10px);
}

/* About section */
.about {
	background-color: var(--color-cream);
}

.about__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about__image {
	flex: 1;
}

.about__img {
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about__content {
	flex: 1;
}

.about__content p {
	margin-bottom: 20px;
}

.about__content p:last-child {
	margin-bottom: 0;
}

/* Benefits section */
.benefits__inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.benefit {
	text-align: center;
	padding: 30px;
	background-color: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.benefit:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit__icon {
	margin-bottom: 20px;
	width: 60px;
	height: 60px;
	background-color: var(--color-cream);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.benefit__svg {
	width: 30px;
	height: 30px;
	fill: var(--color-green);
}

.benefit__title {
	margin-bottom: 10px;
	color: var(--color-green);
}

/* Recipes section */
.recipes {
	background-color: var(--color-cream);
}

.recipes__inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.recipe {
	background-color: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.recipe:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe__image {
	height: 200px;
	overflow: hidden;
}

.recipe__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.recipe:hover .recipe__img {
	transform: scale(1.05);
}

.recipe__content {
	padding: 20px;
}

.recipe__title {
	margin-bottom: 10px;
	color: var(--color-green);
}

.recipe__desc {
	margin-bottom: 20px;
}

.recipe__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.recipe__price {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-green);
}

/* Testimonials section */
.testimonials__inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial {
	background-color: var(--color-white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial__content {
	position: relative;
	margin-bottom: 20px;
}

.testimonial__content::before {
	content: '"';
	font-size: 50px;
	color: var(--color-green);
	opacity: 0.2;
	position: absolute;
	top: -20px;
	left: -10px;
}

.testimonial__text {
	position: relative;
	z-index: 1;
}

.testimonial__author {
	display: flex;
	flex-direction: column;
}

.testimonial__name {
	font-weight: 700;
	color: var(--color-green);
}

.testimonial__info {
	font-size: 14px;
	opacity: 0.7;
}

/* Order section */
.order {
	background-color: var(--color-cream);
}

.order__inner {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--color-white);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 16px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
	border-color: var(--color-green);
	outline: none;
	box-shadow: 0 0 0 2px rgba(23, 106, 92, 0.2);
}

.form-group--checkbox {
	display: flex;
	align-items: center;
}

.form-group--checkbox input {
	width: auto;
	margin-right: 10px;
}

.form-group--checkbox label {
	margin-bottom: 0;
	font-weight: normal;
}

/* Company section */
.company__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}

.company__content {
	flex: 1;
}

.company__content p {
	margin-bottom: 20px;
}

.company__content p:last-child {
	margin-bottom: 0;
}

.company__image {
	flex: 1;
}

.company__img {
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ section */
.faq__inner {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
}

.faq-item__question {
	padding: 20px;
	background-color: var(--color-white);
	cursor: pointer;
	border-bottom: 1px solid #eee;
	position: relative;
}

.faq-item__question h3 {
	margin: 0;
	font-size: 18px;
	padding-right: 30px;
}

.faq-item__question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-green);
}

.faq-item__answer {
	padding: 20px;
	background-color: var(--color-white);
}

/* Footer */
.footer {
	background-color: var(--color-green);
	color: var(--color-white);
	padding: 60px 0 20px;
}

.footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer__title {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--color-lemon);
}

.footer__desc {
	opacity: 0.8;
}

.footer__address {
	font-style: normal;
	opacity: 0.8;
}

.footer__address p {
	margin-bottom: 10px;
}

.footer__address a {
	color: var(--color-white);
}

.footer__address a:hover {
	color: var(--color-lemon);
}

.footer__links li {
	margin-bottom: 10px;
}

.footer__links a {
	color: var(--color-white);
	opacity: 0.8;
	transition: var(--transition);
}

.footer__links a:hover {
	opacity: 1;
	color: var(--color-lemon);
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer__copyright {
	opacity: 0.6;
	font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section {
	animation: fadeIn 0.6s ease-out forwards;
}

/* Media queries */
@media (max-width: 991px) {
	.hero__title {
		font-size: 36px;
	}

	.hero__inner,
	.about__inner,
	.company__inner {
		flex-direction: column;
	}

	.hero__content,
	.about__content,
	.company__content {
		order: 1;
	}

	.hero__image,
	.about__image,
	.company__image {
		order: 2;
		margin-top: 30px;
	}

	section {
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
	.menu-btn {
		display: block;
	}

	.menu {
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: var(--color-white);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		padding: 20px;
		transform: translateY(-150%);
		transition: var(--transition);
		z-index: 99;
	}

	.menu-toggle:checked ~ .menu {
		transform: translateY(0);
	}

	.menu-toggle:checked ~ .menu-btn span {
		opacity: 0;
	}

	.menu-toggle:checked ~ .menu-btn::before {
		transform: rotate(45deg) translate(0, 9px);
	}

	.menu-toggle:checked ~ .menu-btn::after {
		transform: rotate(-45deg) translate(0, -9px);
	}

	.menu__list {
		flex-direction: column;
		align-items: center;
	}

	.menu__item {
		margin: 10px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.hero {
		padding: 120px 0 60px;
	}

	.hero__title {
		font-size: 32px;
	}

	.recipes__inner,
	.benefits__inner,
	.testimonials__inner {
		grid-template-columns: 1fr;
	}

	.order__inner {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.hero__title {
		font-size: 28px;
	}

	.hero__subtitle {
		font-size: 16px;
	}

	.btn {
		padding: 10px 20px;
	}

	.section-title {
		font-size: 24px;
	}

	.cookie-banner {
		flex-direction: column;
		text-align: center;
	}

	.cookie-banner form {
		margin-left: 0;
		margin-top: 10px;
	}
}
