/* 
  Main Stylesheet for Jeyage-Hosati
  Colors:
  - Primary: #3A0144 (deep purple-blueberry)
  - Accent: #FFD700 (soft gold)
  - Background: #FFFFFF (clean white)
  - Text: #333333 (dark gray)
  - Additional: #E0F7FA (cool blue for sections)
*/

/* === Base Styles === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: #333333;
	line-height: 1.6;
	background-color: #ffffff;
	font-size: 16px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	color: #3a0144;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #ffd700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-bottom: 20px;
	color: #3a0144;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	padding: 60px 0;
}

ul,
ol {
	margin-left: 20px;
	margin-bottom: 15px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	border: none;
}

.primary-btn {
	background-color: #3a0144;
	color: #ffffff;
}

.primary-btn:hover {
	background-color: #ffd700;
	color: #3a0144;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(58, 1, 68, 0.2);
}

.secondary-btn {
	background-color: transparent;
	color: #3a0144;
	border: 2px solid #3a0144;
}

.secondary-btn:hover {
	background-color: #3a0144;
	color: #ffffff;
	transform: translateY(-3px);
}

/* === Header Styles === */
.site-header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 15px 0;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	max-width: 150px;
}

.logo img {
	width: 100%;
	height: auto;
}

.main-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
}

.main-nav li {
	margin-left: 30px;
}

.main-nav a {
	font-weight: 600;
	color: #333333;
	position: relative;
}

.main-nav a:hover {
	color: #3a0144;
}

.main-nav a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #3a0144;
	transition: width 0.3s ease;
}

.main-nav a:hover:after {
	width: 100%;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 25px;
	position: relative;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #3a0144;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
	top: 0px;
}

.menu-icon span:nth-child(2) {
	top: 10px;
}

.menu-icon span:nth-child(3) {
	top: 20px;
}

/* === Cookie Banner === */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(58, 1, 68, 0.9);
	color: #ffffff;
	padding: 15px 0;
	z-index: 999;
}

.cookie-banner .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-banner p {
	margin: 0;
	padding-right: 20px;
}

.cookie-banner a {
	color: #ffd700;
	text-decoration: underline;
}

.cookie-btn {
	background-color: #ffd700;
	color: #3a0144;
	padding: 8px 20px;
	font-size: 14px;
}

.cookie-btn:hover {
	background-color: #ffffff;
}

/* === Main Banner Section === */
.main-banner {
	background-color: #3a0144;
	color: #ffffff;
	padding: 160px 0 80px;
	text-align: center;
	background-image: linear-gradient(rgba(58, 1, 68, 0.8), rgba(58, 1, 68, 0.8)), url("../img/4dlTL7.jpg");
	background-size: cover;
	background-position: center;
}

.main-banner h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ffffff;
	animation: fadeInDown 1s ease;
}

.main-banner p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 40px;
	animation: fadeInUp 1s ease;
}

/* === About Product Section === */
.about-product {
	background-color: #e0f7fa;
	padding: 80px 0;
}

.about-product h2 {
	text-align: center;
	margin-bottom: 40px;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(58, 1, 68, 0.15);
}

/* === Recipe Types Section === */
.recipe-types {
	padding: 80px 0;
	text-align: center;
}

.recipe-types h2 {
	margin-bottom: 40px;
}

.recipe-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.recipe-card {
	flex: 1;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.recipe-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(58, 1, 68, 0.2);
}

.recipe-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.recipe-card h3 {
	padding: 20px 15px 10px;
}

.recipe-card .ingredients {
	padding: 0 15px;
	font-size: 0.9rem;
	color: #666;
	min-height: 60px;
}

.recipe-card .price {
	font-size: 1.4rem;
	font-weight: 700;
	color: #3a0144;
	padding: 10px 15px;
}

.recipe-card .btn {
	margin: 0 15px 20px;
}

/* === Advantages Section === */
.advantages {
	background-color: #e0f7fa;
	padding: 80px 0;
	text-align: center;
}

.advantages h2 {
	margin-bottom: 40px;
}

.advantages-list {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.advantage-item {
	flex: 1;
	background-color: #ffffff;
	padding: 30px 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(58, 1, 68, 0.1);
}

.advantage-icon {
	margin-bottom: 20px;
}

.advantage-item h3 {
	margin-bottom: 15px;
}

/* === Reviews Section === */
.reviews {
	padding: 80px 0;
	text-align: center;
}

.reviews h2 {
	margin-bottom: 40px;
}

.reviews-slider {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.review-item {
	flex: 1;
	min-width: 300px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-rating {
	color: #ffd700;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.review-text {
	font-style: italic;
	margin-bottom: 20px;
}

.review-author {
	font-weight: 600;
	color: #3a0144;
}

/* === Delivery Information Section === */
.delivery-info {
	background-color: #e0f7fa;
	padding: 80px 0;
}

.delivery-info h2 {
	text-align: center;
	margin-bottom: 40px;
}

.delivery-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.delivery-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(58, 1, 68, 0.15);
}

.delivery-text {
	flex: 1;
}

/* === Order Form Section === */
.order-form {
	padding: 80px 0;
}

.order-form h2 {
	text-align: center;
	margin-bottom: 40px;
}

.order-form form {
	max-width: 700px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3a0144;
}

.radio-group {
	margin-bottom: 15px;
}

.radio-group input {
	margin-right: 8px;
}

.checkbox-group {
	margin-top: 25px;
}

.checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.checkbox input {
	margin-right: 10px;
}

.recipe-selection {
	margin-top: 30px;
	margin-bottom: 30px;
}

.recipe-selection p {
	font-weight: 600;
	margin-bottom: 15px;
}

.order-form .btn {
	width: 100%;
	margin-top: 10px;
}

/* === FAQ Section === */
.faq {
	background-color: #e0f7fa;
	padding: 80px 0;
}

.faq h2 {
	text-align: center;
	margin-bottom: 40px;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: #ffffff;
	padding: 20px 30px;
	border-radius: 10px;
	margin-bottom: 20px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.faq-item p {
	margin-bottom: 0;
}

/* === Footer Styles === */
.site-footer {
	background-color: #3a0144;
	color: #ffffff;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo {
	flex: 1;
	min-width: 300px;
}

.footer-logo img {
	max-width: 150px;
	margin-bottom: 20px;
}

.footer-contact {
	flex: 1;
	min-width: 250px;
}

.footer-contact h3,
.footer-links h3 {
	color: #ffd700;
	margin-bottom: 20px;
}

.footer-contact svg {
	vertical-align: middle;
	margin-right: 10px;
}

.footer-contact a {
	color: #ffffff;
}

.footer-contact a:hover {
	color: #ffd700;
}

.footer-links {
	flex: 1;
	min-width: 200px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ffffff;
}

.footer-links a:hover {
	color: #ffd700;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Policy Pages === */
.policy-section {
	padding: 140px 0 80px;
}

.policy-section h1 {
	margin-bottom: 40px;
	text-align: center;
}

.policy-content {
	max-width: 900px;
	margin: 0 auto;
}

.policy-content h2 {
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.policy-content p {
	margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
	margin-bottom: 20px;
}

.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
	padding: 10px 15px;
	border: 1px solid #ddd;
}

.cookie-table th {
	background-color: #e0f7fa;
	text-align: left;
}

/* === Thanks Page === */
.thanks-section {
	padding: 140px 0 80px;
	text-align: center;
}

.thanks-content {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
	color: #3a0144;
}

.payment-details {
	background-color: #e0f7fa;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0 30px;
	text-align: left;
}

.payment-details p {
	margin-bottom: 10px;
}

/* === Animations === */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* === Media Queries === */
@media (max-width: 991px) {
	section {
		padding: 50px 0;
	}

	.about-content,
	.delivery-content {
		flex-direction: column;
	}

	.recipe-cards,
	.advantages-list {
		flex-wrap: wrap;
	}

	.recipe-card,
	.advantage-item {
		flex: 0 1 calc(50% - 15px);
	}

	.main-banner {
		padding: 140px 0 60px;
	}

	.main-banner h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: none;
	}

	.menu-icon {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #ffffff;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.menu-toggle:checked ~ .main-nav {
		max-height: 400px;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
	}

	.main-nav ul {
		flex-direction: column;
		padding: 20px;
	}

	.main-nav li {
		margin: 10px 0;
	}

	.recipe-card,
	.advantage-item {
		flex: 0 1 100%;
	}

	.footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.main-banner h1 {
		font-size: 2rem;
	}

	.cookie-banner .container {
		flex-direction: column;
	}

	.cookie-banner p {
		margin-bottom: 15px;
		padding-right: 0;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.main-banner {
		padding: 120px 0 40px;
	}

	.main-banner h1 {
		font-size: 1.8rem;
	}

	.main-banner p {
		font-size: 1rem;
	}

	.order-form form {
		padding: 20px;
	}
}
