/* 
  xakeya-xidago - Main Stylesheet
  Color Palette:
  - Raspberry Accent (#D72660) - buttons, links, focus
  - Herbal Green (#43B929) - natural accents
  - Milky White (#F9F9F9) - background
  - Graphite Gray (#2E2E2E) - text
  - Lavender Smoke (#C8B6E2) - decorative elements
*/

/* ---------- Reset & Base Styles ---------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Arial", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #2e2e2e;
	background-color: #f9f9f9;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #d72660;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #43b929;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	line-height: 1.3;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

h2:after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #d72660;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
}

/* ---------- Buttons ---------- */
.cta-button,
.order-button,
.submit-button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #d72660;
	color: white;
	border: none;
	border-radius: 30px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
}

.cta-button:hover,
.order-button:hover,
.submit-button:hover {
	background-color: #43b929;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-button {
	padding: 8px 20px;
	background-color: #d72660;
	color: white;
	border-radius: 30px;
}

.nav-button:hover {
	background-color: #43b929;
	color: white;
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(249, 249, 249, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 15px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	display: block;
}

.main-nav .nav-list {
	display: flex;
	list-style: none;
}

.main-nav .nav-list li {
	margin-left: 25px;
}

.main-nav .nav-list li a {
	color: #2e2e2e;
	font-weight: 500;
}

.main-nav .nav-list li a:hover {
	color: #d72660;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
}

.menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #2e2e2e;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* ---------- Hero Section ---------- */
.hero-section {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./img/Ro6TU3.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 150px 0 100px;
	margin-top: 70px;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-section h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 40px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ---------- About Section ---------- */
.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text,
.about-image {
	flex: 1;
}

.about-image img {
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ---------- How It Works ---------- */
.how-it-works {
	background-color: #f0f0f0;
}

.steps-container {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.step {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	flex: 1;
	transition: transform 0.3s ease;
}

.step:hover {
	transform: translateY(-10px);
}

.step-number {
	width: 50px;
	height: 50px;
	background: #d72660;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

/* ---------- Benefits Section ---------- */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.benefit-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
}

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

/* ---------- Recipes Section ---------- */
.recipes-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.recipe-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	flex: 1;
	min-width: 300px;
}

.recipe-image {
	height: 200px;
	overflow: hidden;
}

.recipe-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
	transform: scale(1.1);
}

.recipe-content {
	padding: 30px;
}

.price {
	font-size: 1.2rem;
	font-weight: bold;
	color: #d72660;
	margin: 15px 0;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
	background-color: #f0f0f0;
}

.testimonials-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	flex: 1;
	min-width: 300px;
}

.testimonial-content {
	position: relative;
	padding: 20px 0;
}

.testimonial-content:before,
.testimonial-content:after {
	content: '"';
	font-size: 3rem;
	color: #c8b6e2;
	position: absolute;
	line-height: 1;
}

.testimonial-content:before {
	top: 0;
	left: -10px;
}

.testimonial-content:after {
	bottom: 0;
	right: -10px;
}

/* ---------- FAQ Section ---------- */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question-link {
	text-decoration: none;
	color: #2e2e2e;
	display: block;
}

.faq-question {
	padding: 20px;
	background-color: #f0f0f0;
	margin: 0;
	position: relative;
}

.faq-question:after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #d72660;
}

.faq-answer {
	padding: 20px;
	display: none;
}

.faq-item:target .faq-answer {
	display: block;
}

.faq-item:target .faq-question:after {
	content: "-";
}

/* ---------- Order Form ---------- */
.order-form {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-group.checkbox {
	display: flex;
	align-items: center;
}

.form-group.checkbox input {
	width: auto;
	margin-right: 10px;
}

.form-group.checkbox label {
	margin-bottom: 0;
}

.submit-button {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
	background-color: #2e2e2e;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-info,
.footer-contact,
.footer-links {
	padding-right: 20px;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	color: #c8b6e2;
}

.footer-links ul li a:hover {
	color: #d72660;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(46, 46, 46, 0.95);
	color: white;
	padding: 15px 0;
	z-index: 9999;
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.cookie-content p {
	margin: 0;
	padding-right: 20px;
}

.cookie-accept {
	padding: 8px 20px;
	background-color: #d72660;
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-accept:hover {
	background-color: #43b929;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.about-content {
		flex-direction: column;
	}

	.steps-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	.hero-section {
		padding: 120px 0 80px;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.menu-icon {
		display: block;
	}

	.main-nav .nav-list {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(249, 249, 249, 0.95);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		padding: 20px 0;
	}

	.main-nav .nav-list li {
		margin: 10px 0;
		text-align: center;
	}

	.menu-toggle:checked ~ .nav-list {
		display: flex;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-content p {
		margin-bottom: 10px;
		padding-right: 0;
	}
}

@media (max-width: 576px) {
	.order-form {
		padding: 20px;
	}
}
