/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background-color: #b00092;
	color: white;
}

.btn-primary:hover {
	background-color: #ff2ddc;
	color: white;
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	color: #b00092;
	border: 2px solid #b00092;
}

.btn-outline:hover {
	background-color: #b00092;
	color: white;
}

.btn-small {
	padding: 8px 16px;
	font-size: 14px;
}

/* Header */
.header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-logo img {
	height: 44px;
	width: auto;
	object-fit: contain;
}

.nav-menu {
	display: flex;
}

.nav-list {
	display: flex;
	gap: 2rem;
}

.nav-link {
	font-weight: 500;
	color: #333;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #b00092;
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #c500a4;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	padding: 0;
	background: none;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	display: block;
	text-align: center;
}

.hero-text h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #b00092;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.section-footer {
	text-align: center;
	margin-top: 3rem;
}

/* Featured Products */
.featured-products {
	padding: 80px 0;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.product-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
	position: relative;
	height: 250px;
	background-color: #f8f9fa;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 54, 93, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.product-info {
	padding: 1.5rem;
	text-align: center;
}

.product-info h3 {
	font-size: 1.3rem;
	color: #b00092;
	margin-bottom: 0.5rem;
}

.price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #c500a4;
}

/* Brand Story */
.brand-story {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-text h2 {
	font-size: 2.5rem;
	color: #b00092;
	margin-bottom: 1.5rem;
}

.story-text p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.story-image img {
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
	padding: 80px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.stars {
	color: #c500a4;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.testimonial-content p {
	color: #666;
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial-author h4 {
	color: #b00092;
	margin-bottom: 0.5rem;
}

.testimonial-author span {
	color: #999;
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background-color: #1b0024;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 45px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.footer-section p {
	color: #cbd5e0;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: white;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #cbd5e0;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #c500a4;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background-color: #ff2ddc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.social-links a:hover {
	background-color: #c500a4;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0.5rem;
	color: #cbd5e0;
}

.contact-info i {
	color: #de4cff;
	width: 16px;
}

.footer-bottom {
	border-top: 1px solid #ff2ddc;
	padding-top: 2rem;
	text-align: center;
	color: #cbd5e0;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}
	.footer-logo {
		justify-content: center;
	}
	.nav-menu.active {
		left: 0;
	}
	.contact-info p {
		justify-content: center;
	}
	.nav-list {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active .bar:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.nav-toggle.active .bar:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.story-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 250px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-text h1 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.story-text h2 {
		font-size: 2rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-card {
		margin: 0 10px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.product-card,
.testimonial-card {
	animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}

.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}
