/* Reset and Base Styles */
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root
{
	--primary: #8BC53F;
	--primary-dark: #6B9E2E;
	--secondary: #8B6914;
	--background: #FDFCF9;
	--foreground: #3D3D3D;
	--muted: #6B6B6B;
	--border: #E5E0D5;
	--card-bg: #FFFFFF;
	--cream: #FAF7F2;
}

html
{
	scroll-behavior: smooth;
}

body
{
	font-family: 'Inter', sans-serif;
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
}

.container
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.container-left
{
	max-width: 1200px;
	margin-left: 10%;
	padding: 0 20px;
}

h1,
h2,
h3,
h4
{
	font-family: 'Playfair Display', serif;
}

p
{
	font-family: 'Lora', serif;
}

a
{
	text-decoration: none;
	color: inherit;
}

img
{
	max-width: 100%;
	height: auto;
}

/* Gradient Text */
.text-gradient
{
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Button Styles */
.btn
{
	display: inline-block;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 14px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 197, 63, 0.3);
}

.TxtCitCls
{
	text-align: center;
}

.flex
{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.flex-row{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 20px;
}

.SpcBtwCls
{
	align-items: center;
	justify-content: space-between;
}

.grid-3
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gap-16
{
	gap: 16px;
}

.gap-20
{
	gap: 20px;
}

.mb-20
{
	margin-bottom: 20px;
}

.btn:hover
{
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 197, 63, 0.4);
}

/* ==================== NAVBAR ==================== */
.navbar
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(253, 252, 249, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.navbar .container
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.navbar-logo img
{
	height: 64px;
	width: auto;
}

.navbar-links
{
	display: flex;
	align-items: center;
	gap: 32px;
}

.navbar-links a
{
	font-size: 14px;
	font-weight: 500;
	color: var(--foreground);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.navbar-links a:hover
{
	color: var(--primary);
	opacity: 1;
}

.mobile-menu-btn
{
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-btn span
{
	display: block;
	width: 24px;
	height: 2px;
	background: var(--foreground);
	margin: 6px 0;
	transition: 0.3s;
}

.mobile-menu
{
	display: none;
	padding: 20px;
	border-top: 1px solid var(--border);
}

.mobile-menu a
{
	display: block;
	padding: 12px 0;
	font-size: 14px;
	color: var(--foreground);
}

/* ==================== HERO SECTION ==================== */
.hero
{
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	overflow: hidden;
}

.hero-bg
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-bg img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(253, 252, 249, 0.95) 0%, rgba(253, 252, 249, 0.7) 50%, transparent 100%);
}

.hero-content
{
	position: relative;
	z-index: 10;
	max-width: 540px;
}

.hero h1
{
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	animation: slideUp 0.6s ease-out;
}

.hero-subtitle
{
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	color: var(--secondary);
	margin-bottom: 16px;
	animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-text
{
	font-size: 1.1rem;
	color: var(--muted);
	margin-bottom: 32px;
	line-height: 1.8;
	animation: slideUp 0.6s ease-out 0.2s both;
}

.hero .btn
{
	animation: slideUp 0.6s ease-out 0.3s both;
}

/* ==================== ABOUT SECTION ==================== */
.about
{
	padding: 80px 0;
	background: var(--cream);
}

.about-grid
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-images
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.about-images img
{
	border-radius: 16px;
	width: 100%;
	height: 200px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-images img:first-child
{
	grid-column: span 2;
	height: 280px;
}

.heritage-badge
{
	grid-column: span 2;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 20px;
	border-radius: 16px;
	text-align: center;
}

.heritage-badge .years
{
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
}

.heritage-badge .label
{
	font-size: 0.9rem;
	opacity: 0.9;
}

.about-content h2
{
	font-size: 2.5rem;
	margin-bottom: 24px;
}

.about-content p
{
	color: var(--muted);
	margin-bottom: 16px;
	line-height: 1.8;
	text-align: justify;
}

.features-list
{
	margin-top: 32px;
}

.feature-item
{
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

.feature-icon
{
	width: 24px;
	height: 24px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: white;
	font-size: 14px;
}

.feature-text h4
{
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.feature-text p
{
	font-size: 0.9rem;
	margin: 0;
}

/* ==================== PRODUCTS SECTION ==================== */
.products
{
	padding: 80px 0;
}

.section-header
{
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.section-header h2
{
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.section-header p
{
	color: var(--muted);
}

.products-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.product-card
{
	background: var(--card-bg);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.product-card:hover
{
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.product-card img
{
	width: 100%;
	height: 256px;
	object-fit: cover;
}

.product-info
{
	padding: 24px;
}

.product-info h3
{
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 4px;
}

.product-subtitle
{
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 8px;
}

.product-desc
{
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 16px;
}

.benefits-title
{
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.benefit-item
{
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
}

.benefit-dot
{
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	margin-top: 6px;
	flex-shrink: 0;
}

.benefit-item span
{
	font-size: 0.9rem;
	color: var(--muted);
}

/* ==================== CONTACT SECTION ==================== */
.contact
{
	padding: 80px 0;
	background: var(--cream);
}

.contact-form
{
	background: var(--card-bg);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group
{
	margin-bottom: 20px;
}

.form-group label
{
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 8px;
}

.form-group input,
.form-group textarea
{
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	background: var(--background);
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus
{
	outline: none;
	border-color: var(--primary);
}

.form-group textarea
{
	min-height: 120px;
	resize: vertical;
}

.contact-form .btn
{
	width: 100%;
	padding: 14px;
}

.contact-card
{
	background: var(--card-bg);
	padding: 24px;
	border-radius: 16px;
	flex: 1;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon
{
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(139, 197, 63, 0.1), rgba(139, 197, 63, 0.2));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon svg
{
	width: 24px;
	height: 24px;
	color: var(--primary);
}

.contact-details h4
{
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-details p
{
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 4px;
}

.contact-details a
{
	color: var(--primary);
	font-weight: 500;
	
}

.contact-details a:hover
{
	text-decoration: underline;
}

/* ==================== ACHIEVEMENTS SECTION ==================== */
.achievements
{
	padding: 40px 0;
	background: linear-gradient(to bottom, var(--background), var(--cream));
}

.achievement-card
{
	/* width: 30%; */
	background: var(--card-bg);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	gap: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(139, 197, 63, 0.1);
	transition: all 0.3s ease;
}

.achievement-card:hover
{
	transform: translateY(-10px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon
{
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(139, 197, 63, 0.1), rgba(139, 197, 63, 0.2));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s ease;
}

.achievement-icon svg
{
	width: 24px;
	height: 24px;
	color: var(--primary);
}

.achievement-content h3
{
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--foreground);
}

.achievement-content p
{
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0;
}

.achievement-featured
{
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
}

.achievement-featured .achievement-icon
{
	background: rgba(255, 255, 255, 0.2);
	width: 56px;
	height: 56px;
}

.achievement-featured .achievement-icon svg
{
	color: white;
	width: 28px;
	height: 28px;
}

.achievement-featured p,
.achievement-featured h3
{
	color: white;
}

/* ==================== FOOTER ==================== */
.footer
{
	background: var(--foreground);
	color: var(--background);
	padding: 48px 0;
}

.footer .container
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
}

.footer-logo img
{
	height: 80px;
}

.footer-tagline
{
	font-size: 0.9rem;
	opacity: 0.7;
	margin-top: 16px;
	max-width: 280px;
}

.footer-right
{
	text-align: right;
}

.social-links
{
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.social-link
{
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.social-link:hover
{
	background: var(--primary);
}

.social-link svg
{
	width: 20px;
	height: 20px;
}

.copyright
{
	font-size: 0.85rem;
	opacity: 0.5;
}

.PflPicCls
{
	width: 240px;
}

.PflPicCls img
{
	border: 8px #DDD solid;
	height: 12.5rem;
	object-fit: cover;
	object-position: top;
	width: 12.5rem;
	border-radius: 50% !important;
	transition: all .4s ease-in-out;
}

.PflPicCls img:hover
{
	border: 8px #0D0 solid;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn
{
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 100;
	width: 56px;
	height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
}

.whatsapp-btn:hover
{
	background: #128C7E;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg
{
	width: 28px;
	height: 28px;
	fill: white;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideUp
{
	from
	{
		opacity: 0;
		transform: translateY(20px);
	}

	to
	{
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==================== Tab View ==================== */
@media (max-width: 1000px)
{

	.flex{
		display: flex;
		flex-direction: column;
		gap: 40px;
	} 

	.grid-3
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.about-grid
	{
		display: flex;
		gap: 40px;
	}

	.about-images
	{
		order: -1;
	}

	.about-grid
	{
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.about-images
	{
		order: -1;
	}

	.products-grid
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.hero h1
	{
		font-size: 2.8rem;
	}

	.hero-subtitle
	{
		font-size: 1.4rem;
	}
}


/* ================= SMALL MOBILE VIEW (<= 480px) ================= */
@media (max-width: 500px)
{
	.grid-3
	{
		grid-template-columns: repeat(1, 1fr);
	}

	/* Navbar */
	.navbar-links
	{
		display: none;
	}

	.mobile-menu-btn
	{
		display: block;
	}

	.mobile-menu.active
	{
		display: block;
	}

	/* Hero */
	.hero h1
	{
		font-size: 2.5rem;
	}

	.hero-subtitle
	{
		font-size: 1.25rem;
	}

	/* Products */
	.products-grid
	{
		grid-template-columns: 1fr;
	}

	/* Section headers */
	.section-header h2,
	.about-content h2
	{
		font-size: 2rem;
	}

	/* Footer */
	.footer .container
	{
		flex-direction: column;
		text-align: center;
	}

	.footer-right
	{
		text-align: center;
	}

	.social-links
	{
		justify-content: center;
	}

	.hero h1
	{
		font-size: 2rem;
	}

	.about-images img:first-child
	{
		height: 200px;
	}

	.about-images img
	{
		height: 150px;
	}

	.contact-form
	{
		padding: 24px;
	}
}