/* 
 * Taguri-bejude - Main Stylesheet
 * Color Palette:
 * - Background: Lavender gradient (#E6E6FA → #DDA0DD)
 * - Accents: Bright lemon (#F5FF45)
 * - Buttons and icons: Carrot (#FFA07A)
 * - Text: Warm white (#F9F9F9)
 * - Menu and form background: Dark graphite (#1C1C1C)
 */

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background: linear-gradient(135deg, #e6e6fa, #dda0dd);
	color: #1c1c1c;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

section {
	padding: 60px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	font-weight: 600;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	position: relative;
	margin-bottom: 40px;
	text-align: center;
}

h2:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #ffa07a;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	border: none;
}

.btn-primary {
	background-color: #ffa07a;
	color: #1c1c1c;
}

.btn-primary:hover {
	background-color: #f5ff45;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	background-color: #1c1c1c;
	color: #f9f9f9;
}

.btn-secondary:hover {
	background-color: #333;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
	background-color: #1c1c1c;
	color: #f9f9f9;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 50px;
}

.menu-toggle {
	display: none;
}

.menu-button {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.menu-button span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #f9f9f9;
	transition: all 0.3s ease;
}

.main-nav ul {
	display: flex;
	gap: 20px;
}

.main-nav a {
	color: #f9f9f9;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 4px;
}

.main-nav a:hover {
	color: #f5ff45;
}

.nav-cta {
	background-color: #ffa07a;
	color: #1c1c1c !important;
}

.nav-cta:hover {
	background-color: #f5ff45;
	color: #1c1c1c !important;
}

/* Hero section */
.hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: -1;
	background: url("../img/tMfgSw.jpg") center/cover no-repeat;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #1c1c1c;
}

.hero p {
	font-size: 1.2rem;
	color: #1c1c1c;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* About section */
.about-content {
	display: flex;
	gap: 40px;
	align-items: center;
}

.about-text,
.about-image {
	flex: 1;
}

.about-image img {
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Products section */
.product-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.product-card {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
}

.product-image {
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: 8px;
}

.product-image img {
	width: 100%;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-card h3 {
	color: #1c1c1c;
}

.price {
	font-size: 1.5rem;
	font-weight: 600;
	color: #ffa07a;
	margin: 15px 0;
}

/* Benefits section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.benefit-item {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.composition {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.composition h3 {
	margin-bottom: 20px;
}

.composition ul {
	list-style-type: disc;
	padding-left: 20px;
}

.composition li {
	margin-bottom: 10px;
}

/* Testimonials section */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
	margin-bottom: 15px;
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	color: #ffa07a;
}

/* FAQ section */
.faq-items {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.faq-item {
	padding: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-item h3 {
	cursor: pointer;
	position: relative;
	padding-right: 30px;
	color: #1c1c1c;
}

/* Order form section */
.order-form {
	background-color: #1c1c1c;
	color: #f9f9f9;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.order-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.order-form input {
	width: 100%;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 255, 0.05);
	color: #f9f9f9;
}

.order-form select {
	width: 100%;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: #f9f9f9;
	color: #1c1c1c;
}

.order-form input:focus,
.order-form select:focus {
	outline: none;
	border-color: #ffa07a;
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.checkbox-group input {
	width: auto;
}

.checkbox-group label {
	margin-bottom: 0;
}

.checkbox-group a {
	color: #ffa07a;
	text-decoration: underline;
}

.checkbox-group a:hover {
	color: #f5ff45;
}

.total-price {
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffa07a;
}

/* Thank you page */
.thank-you {
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.thank-you-content {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-summary {
	margin: 30px 0;
	text-align: left;
	background-color: rgba(28, 28, 28, 0.05);
	padding: 20px;
	border-radius: 8px;
}

.thank-you-message {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.thank-you-actions {
	margin-top: 20px;
}

/* Legal pages */
.legal-content {
	min-height: 60vh;
}

.legal-text {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
	text-align: left;
	margin-top: 40px;
}

.legal-text h2:after {
	left: 0;
	transform: none;
}

.legal-text ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.legal-text li {
	margin-bottom: 10px;
}

/* Footer */
.site-footer {
	background-color: #1c1c1c;
	color: #f9f9f9;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-logo img {
	height: 50px;
	margin-bottom: 20px;
}

.footer-contact h3,
.footer-links h3 {
	color: #ffa07a;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.footer-contact h3:after,
.footer-links h3:after {
	content: "";
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: #ffa07a;
	bottom: 0;
	left: 0;
}

.footer-contact p {
	margin-bottom: 10px;
}

.footer-contact span {
	color: #ffa07a;
	font-weight: 500;
	margin-right: 5px;
}

.footer-links ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a:hover {
	color: #ffa07a;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 2000;
	background-color: #1c1c1c;
	color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	max-width: 400px;
}

.cookie-content {
	padding: 20px;
}

.cookie-content h3 {
	color: #ffa07a;
	margin-bottom: 10px;
}

.cookie-content p {
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.cookie-more {
	display: block;
	text-align: center;
	margin-top: 15px;
	color: #f9f9f9;
	text-decoration: underline;
}

.cookie-more:hover {
	color: #ffa07a;
}

/* Responsive styles */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.about-content {
		flex-direction: column;
	}

	.about-text,
	.about-image {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.menu-button {
		display: flex;
	}

	.menu-toggle:checked + .menu-button span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.menu-toggle:checked + .menu-button span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked + .menu-button span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	.main-nav {
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		background-color: #1c1c1c;
		height: 0;
		overflow: hidden;
		transition: height 0.3s ease;
	}

	.menu-toggle:checked ~ .main-nav {
		height: auto;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.main-nav ul {
		flex-direction: column;
		gap: 15px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	section {
		padding: 40px 0;
	}

	.product-cards,
	.benefits-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
}
