/* 
* Main Styles for tasude-cubusa
* Colors:
* - #2D3250 - Deep blue-violet (main background)
* - #3BB273 - Fresh green (accents, buttons, icons)
* - #FFD166 - Sunny yellow (CTA highlights)
* - #F9F9F9 - Light background for content
* - #1E1E1E - Text and icon color
*/

/* Global Reset & Base Styles */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 62.5%; /* 10px = 1rem */
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #1e1e1e;
	background-color: #f9f9f9;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #3bb273;
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	color: #ffd166;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.btn,
button {
	display: inline-block;
	background-color: #3bb273;
	color: #f9f9f9;
	border: none;
	border-radius: 0.5rem;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
	text-align: center;
}

.btn:hover,
button:hover {
	background-color: #ffd166;
	color: #1e1e1e;
	transform: translateY(-3px);
}

.cta-button {
	background-color: #ffd166;
	color: #1e1e1e;
	font-weight: 700;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	display: inline-block;
}

.cta-button:hover {
	background-color: #3bb273;
	color: #f9f9f9;
	transform: translateY(-2px);
}

section {
	padding: 5rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

h1 {
	font-size: 3.6rem;
}

h2 {
	font-size: 2.8rem;
	position: relative;
	padding-bottom: 1rem;
}

h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 6rem;
	height: 0.3rem;
	background-color: #3bb273;
}

h3 {
	font-size: 2.2rem;
}

p {
	margin-bottom: 1.5rem;
}

ul {
	list-style: none;
}

/* Header Styles */
header {
	background-color: #2d3250;
	color: #f9f9f9;
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.logo {
	display: block;
	width: 5rem;
	height: 5rem;
}

.main-nav ul {
	display: flex;
	gap: 2rem;
}

.contact-info a {
	color: #f9f9f9;
	font-weight: 500;
}

/* Mobile Menu Styles */
.menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 3rem;
	height: 2.2rem;
	cursor: pointer;
}

.menu-button span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #f9f9f9;
	border-radius: 3px;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	background-color: #2d3250;
	color: #f9f9f9;
	padding: 8rem 0;
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 4.8rem;
	margin-bottom: 2rem;
	max-width: 80rem;
}

.hero-subtitle {
	font-size: 2.2rem;
	margin-bottom: 3rem;
	max-width: 70rem;
}

.hero-image {
	margin-top: 2rem;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
	background-color: #f9f9f9;
	position: relative;
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
}

.about-text {
	flex: 1;
	min-width: 30rem;
}

.benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 3rem;
}

.benefit-item {
	flex: 1;
	min-width: 25rem;
	background-color: #fff;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	color: #3bb273;
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

/* Recipe Section */
.recipes {
	background-color: #2d3250;
	color: #f9f9f9;
}

.recipe-intro {
	text-align: center;
	max-width: 70rem;
	margin: 0 auto 5rem;
}

.recipe-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
}

.recipe-card {
	flex: 1;
	min-width: 30rem;
	max-width: 35rem;
	background-color: #f9f9f9;
	color: #1e1e1e;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.recipe-card:hover {
	transform: translateY(-10px);
}

.recipe-image {
	height: 20rem;
	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.05);
}

.recipe-details {
	padding: 2rem;
}

.recipe-price {
	display: inline-block;
	background-color: #ffd166;
	color: #1e1e1e;
	padding: 0.5rem 1.5rem;
	border-radius: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.recipe-title {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.recipe-desc {
	margin-bottom: 2rem;
}

.recipe-card .btn {
	width: 100%;
}

/* Animation Section */
.animation-section {
	background-color: #f9f9f9;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.animation-content {
	position: relative;
	z-index: 2;
}

.animation-title {
	margin-bottom: 4rem;
}

.animation-container {
	position: relative;
	height: 30rem;
	margin: 0 auto;
	max-width: 80rem;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* CSS Animation */
.animation-heart {
	position: absolute;
	width: 8rem;
	height: 8rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}

.animation-circle {
	position: absolute;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: rgba(59, 178, 115, 0.2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ripple 3s linear infinite;
}

.animation-circle:nth-child(2) {
	animation-delay: 1s;
}

.animation-circle:nth-child(3) {
	animation-delay: 2s;
}

@keyframes ripple {
	0% {
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		width: 30rem;
		height: 30rem;
		opacity: 0;
	}
}

/* Testimonials Section */
.testimonials {
	background-color: #2d3250;
	color: #f9f9f9;
}

.testimonial-intro {
	text-align: center;
	max-width: 70rem;
	margin: 0 auto 5rem;
}

.testimonial-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
}

.testimonial-card {
	flex: 1;
	min-width: 28rem;
	max-width: 35rem;
	background-color: #f9f9f9;
	color: #1e1e1e;
	border-radius: 1rem;
	padding: 3rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 8rem;
	color: rgba(59, 178, 115, 0.2);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text {
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1.5rem;
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	margin-bottom: 0.3rem;
}

.author-info p {
	font-size: 1.4rem;
	margin-bottom: 0;
	color: #666;
}

/* FAQ Section */
.faq {
	background-color: #f9f9f9;
}

.faq-intro {
	text-align: center;
	max-width: 70rem;
	margin: 0 auto 5rem;
}

.accordion {
	max-width: 80rem;
	margin: 0 auto;
}

.accordion-item {
	background-color: #fff;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
	position: relative;
}

.accordion-toggle {
	display: none;
}

.accordion-title {
	display: block;
	padding: 2rem;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	color: #1e1e1e;
}

.accordion-title::after {
	content: "+";
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	transition: transform 0.3s ease;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 2rem;
}

.accordion-toggle:checked + .accordion-title::after {
	content: "-";
	transform: translateY(-50%) rotate(180deg);
}

.accordion-item .accordion-toggle:checked ~ .accordion-content {
	max-height: 50rem;
	padding: 0 2rem 2rem;
}

/* Order Form Section */
.order-section {
	background-color: #2d3250;
	color: #f9f9f9;
}

.order-intro {
	text-align: center;
	max-width: 70rem;
	margin: 0 auto 5rem;
}

.order-form-container {
	max-width: 70rem;
	margin: 0 auto;
	background-color: #f9f9f9;
	border-radius: 1rem;
	padding: 3rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	color: #1e1e1e;
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 1.2rem;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	font-size: 1.6rem;
	transition: border-color 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: #3bb273;
}

.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.form-check input {
	margin-top: 0.5rem;
	margin-right: 1rem;
}

.error-message {
	color: #e74c3c;
	font-size: 1.4rem;
	margin-top: 0.5rem;
}

/* Footer Styles */
footer {
	background-color: #2d3250;
	color: #f9f9f9;
	padding: 5rem 0 2rem;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	margin-bottom: 4rem;
}

.footer-about,
.footer-contact,
.footer-links,
.footer-social {
	flex: 1;
	min-width: 25rem;
}

.footer-links ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.social-icons {
	display: flex;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: #3bb273;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(30, 30, 30, 0.9);
	color: #f9f9f9;
	padding: 1.5rem 0;
	z-index: 1000;
	backdrop-filter: blur(5px);
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.cookie-content p {
	margin-bottom: 0;
	flex: 1;
}

.cookie-accept {
	background-color: #ffd166;
	color: #1e1e1e;
}

/* Thankyou Page */
.thank-you {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	text-align: center;
	padding: 5rem 0;
}

.thank-you-icon {
	color: #3bb273;
	font-size: 8rem;
	margin-bottom: 2rem;
}

/* Policy Pages */
.policy-content {
	max-width: 80rem;
	margin: 0 auto;
	padding: 5rem 0;
}

.policy-content h2 {
	margin-top: 4rem;
}

.policy-content p,
.policy-content ul {
	margin-bottom: 2rem;
}

.policy-content ul {
	list-style: disc;
	padding-left: 2rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	html {
		font-size: 55%;
	}

	.menu-button {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 8rem;
		left: 0;
		width: 100%;
		background-color: #2d3250;
		padding: 2rem;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 99;
	}

	.main-nav ul {
		flex-direction: column;
		gap: 1.5rem;
	}

	.menu-toggle:checked ~ .main-nav {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.menu-toggle:checked + .menu-button span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.menu-toggle:checked + .menu-button span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked + .menu-button span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.contact-info {
		display: none;
	}

	.hero-title {
		font-size: 3.6rem;
	}

	.recipe-card,
	.testimonial-card,
	.benefit-item {
		min-width: 100%;
	}

	.cookie-content {
		justify-content: center;
		text-align: center;
	}

	.footer-content {
		gap: 3rem;
	}

	.footer-about,
	.footer-contact,
	.footer-links,
	.footer-social {
		min-width: 100%;
	}
}
