/* 
 * HP Poultry Main CSS
 */

:root {
    /* Colors */
    --clr-white: #ffffff;
    --clr-light: #f8fafc;
    --clr-dark: #0f172a;
    --clr-charcoal: #334155;
    --clr-primary: #f97316; /* Premium Light Orange */
    --clr-primary-dark: #ea580c;
    --clr-primary-light: #ffedd5;
    --clr-border: #e2e8f0;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Borders & Shadows */
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 40px rgba(249, 115, 22, 0.08);
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-primary);
    color: var(--clr-charcoal);
    background-color: var(--clr-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--clr-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--clr-primary-dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

ul { list-style: none; }

.section-padding {
	padding: var(--space-xl) 0;
}
.bg-light { background-color: var(--clr-white); }
.text-center { text-align: center; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn-primary {
	background-color: var(--clr-primary);
	color: var(--clr-white);
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
	background-color: var(--clr-primary-dark);
	color: var(--clr-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.btn-secondary {
	background-color: var(--clr-white);
	color: var(--clr-dark);
	border: 1px solid var(--clr-border);
}
.btn-secondary:hover {
	border-color: var(--clr-dark);
	color: var(--clr-dark);
}
.btn-link {
	color: var(--clr-primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

/* Top Bar */
.top-bar {
	background-color: var(--clr-dark);
	color: var(--clr-white);
	font-size: 0.85rem;
	padding: 8px 0;
}
.top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-bar-left, .top-bar-right {
	display: flex;
	gap: 15px;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.social-link {
	color: var(--clr-white);
	opacity: 0.8;
}
.social-link:hover { opacity: 1; color: var(--clr-primary); }

/* Header */
.site-header {
	background-color: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--glass-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}
.site-header.scrolled {
	box-shadow: var(--shadow-soft);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
.site-title { font-size: 1.5rem; margin:0; }
.site-branding img.custom-logo {
	max-height: 55px; /* Minimal & Optimized */
	width: auto;
	display: block;
	object-fit: contain;
}
.main-navigation ul {
	display: flex;
	gap: 30px;
}
.main-navigation a {
	color: var(--clr-dark);
	font-weight: 500;
}
.main-navigation a:hover { color: var(--clr-primary); }
.menu-toggle { display: none; }

/* Hero Section */
.hero-section {
	padding: var(--space-xl) 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: center;
}
.hero-badge {
	display: inline-block;
	padding: 5px 15px;
	background-color: var(--clr-primary-light);
	color: var(--clr-primary-dark);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.hero-title {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}
.hero-subtitle {
	font-size: 1.1rem;
	color: var(--clr-charcoal);
	margin-bottom: 2rem;
	max-width: 90%;
}
.hero-actions { display: flex; gap: 15px; }

/* Glass Card / Vector Placeholder */
.glass-card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--radius-lg);
	height: 400px;
	position: relative;
	box-shadow: var(--shadow-soft);
}
.floating-element {
	position: absolute;
	background: var(--clr-white);
	padding: 15px 25px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-hover);
	font-weight: 600;
	color: var(--clr-dark);
}
.el-1 { top: 20%; left: -10%; }
.el-2 { bottom: 20%; right: -10%; }

/* Sections Common */
.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.section-desc {
	font-size: 1.1rem;
	color: var(--clr-charcoal);
	margin-bottom: 2rem;
}

/* Mistav Section */
.mistav-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: center;
}
.image-skeleton {
	background: #e2e8f0;
	height: 400px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}
.feature-list {
	margin-top: 1.5rem;
}
.feature-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--clr-dark);
}
.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--clr-primary);
	font-weight: bold;
}

/* Stats Section */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.stat-card {
	background: var(--clr-light);
	padding: 30px;
	border-radius: var(--radius-md);
	text-align: center;
	border: 1px solid var(--clr-border);
}
.stat-number {
	font-size: 3rem;
	color: var(--clr-primary);
	margin-bottom: 0.5rem;
}
.stat-label {
	font-weight: 600;
	color: var(--clr-charcoal);
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}
.product-card {
	background: var(--clr-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: all 0.3s ease;
	border: 1px solid var(--clr-border);
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}
.product-img {
	height: 200px;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-placeholder { color: #94a3b8; }
.product-info { padding: 25px; }
.product-title { font-size: 1.25rem; margin-bottom: 10px; }
.product-title a { color: var(--clr-dark); }
.product-title a:hover { color: var(--clr-primary); }
.product-excerpt { font-size: 0.95rem; margin-bottom: 15px; color: var(--clr-charcoal); }

/* Footer */
.site-footer {
	background-color: var(--clr-dark);
	color: var(--clr-white);
	padding: var(--space-lg) 0 20px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-logo h3 { color: var(--clr-white); }
.footer-desc { color: #94a3b8; margin-top: 15px; }
.widget-title { color: var(--clr-white); margin-bottom: 20px; }
.footer-menu a, .footer-contact-list li { color: #94a3b8; margin-bottom: 10px; display: block; }
.footer-menu a:hover { color: var(--clr-primary); }
.footer-contact-list strong { color: var(--clr-white); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
	text-align: center;
	color: #94a3b8;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
	.hero-inner, .mistav-inner { grid-template-columns: 1fr; }
	.hero-title { font-size: 2.5rem; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.main-navigation ul { display: none; } 
	.menu-toggle { display: block; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--clr-primary); }
	
	/* Mobile Menu Active State */
	.main-navigation.toggled ul {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 80px; 
		left: 0;
		width: 100%;
		background: var(--clr-white);
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
		gap: 15px;
	}
	.main-navigation.toggled ul li a {
		display: block;
		padding: 10px 0;
		border-bottom: 1px solid var(--clr-border);
	}
	.header-action { display: none; } /* Hide on mobile to prevent squishing */
}
@media (max-width: 768px) {
	.footer-grid { grid-template-columns: 1fr; }
	.top-bar-inner { flex-direction: column; gap: 10px; }
}
