﻿/* ============================================================
   RESET I PODSTAWY
   ============================================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #2a5c1a;
	--primary-dark: #1a3d0e;
	--primary-light: #3a7a28;
	--gold: #d4a017;
	--gold-dark: #7a5c0a;
	--gold-hover: #b8860b;
	--white: #ffffff;
	--gray-light: #f5f5f0;
	--gray-mid: #e0ddd5;
	--text-dark: #1a1a1a;
	--text-muted: #4a4a4a;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
	background: var(--white);
	color: var(--text-dark);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================================
   NAGŁÓWKI - POPRAWIONY KONTRAST
   ============================================================ */
h1,
h2,
h3 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
}

.section-title .highlight {
	color: var(--gold-dark);
}

/* ============================================================
   PRZYCISKI - POPRAWIONY KONTRAST
   ============================================================ */
.btn {
	display: inline-block;
	padding: 12px 32px;
	background: var(--gold);
	color: #1a1a1a;
	font-weight: 700;
	text-decoration: none;
	border-radius: 40px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	font-size: 0.95rem;
}

.btn:hover {
	background: var(--gold-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--gold);
	color: var(--gold-dark);
}

.btn-outline:hover {
	background: var(--gold);
	color: #1a1a1a;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 2px solid var(--gold);
	padding: 10px 0;
	transition: var(--transition);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.navbar .logo img {
	height: 70px;
	width: 92px;
	display: block;
}

.navbar .nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.navbar .nav-links a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: var(--transition);
	position: relative;
}

.navbar .nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.3s ease;
}

.navbar .nav-links a:hover::after {
	width: 100%;
}

.navbar .nav-links a:hover {
	color: var(--gold);
}

.navbar .mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.8rem;
	cursor: pointer;
	padding: 5px;
}

@media (max-width: 768px) {
	.navbar .nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1.5rem 0 0.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		margin-top: 10px;
	}

	.navbar .nav-links.active {
		display: flex;
	}

	.navbar .mobile-toggle {
		display: block;
	}

	.navbar .logo img {
		height: 45px;
		width: auto;
	}
}

/* ============================================================
   SLIDER
   ============================================================ */
.hero-slider {
	margin-top: 75px;
	position: relative;
	overflow: hidden;
	background: var(--gray-light);
}

.slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.slides {
	display: flex;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
	flex: 0 0 100%;
	position: relative;
	aspect-ratio: 16 / 7;
	min-height: 400px;
	background-size: cover;
	background-position: center;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-caption {
	position: absolute;
	bottom: 15%;
	left: 8%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	padding: 1.8rem 2.5rem;
	border-radius: 16px;
	color: var(--white);
	border-left: 5px solid var(--gold);
	max-width: 500px;
}

.slide-caption h2 {
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.slide-caption p {
	font-size: 1rem;
	opacity: 0.95;
	margin-bottom: 1rem;
	color: var(--white);
}

.slide-caption .btn {
	padding: 10px 28px;
	font-size: 0.9rem;
}

.slider-nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-dot {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
}

.slider-dot.active {
	background: var(--gold);
	border-color: var(--white);
	transform: scale(1.15);
}

.slider-dot:hover {
	background: var(--gold);
}

@media (max-width: 768px) {
	.slide-caption {
		left: 5%;
		right: 5%;
		bottom: 12%;
		padding: 1.2rem 1.5rem;
		max-width: 90%;
	}

	.slide-caption h2 {
		font-size: 1.4rem;
	}

	.slide-caption p {
		font-size: 0.85rem;
	}

	.slide {
		min-height: 280px;
		aspect-ratio: 16 / 9;
	}
}

/* ============================================================
   O NAS
   ============================================================ */
#o-nas {
	padding: 80px 0 60px;
	background: var(--white);
}

#o-nas .content {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

#o-nas .content p {
	font-size: 1.15rem;
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 1rem;
}

#o-nas .content strong {
	color: var(--primary);
}

/* ============================================================
   OFERTA - ZIELONE TŁO
   ============================================================ */
#oferta {
	padding: 80px 0 60px;
	background: #e8f5e0;
}

#oferta .section-title {
	color: var(--primary-dark);
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.offer-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid rgba(42, 92, 26, 0.1);
}

.offer-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	border-color: var(--gold);
}

.offer-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.offer-card .card-body {
	padding: 1.5rem 1.8rem 1.8rem;
}

.offer-card .card-body h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--primary-dark);
}

.offer-card .card-body p {
	font-size: 0.92rem;
	color: var(--text-dark);
	margin-bottom: 1.2rem;
	line-height: 1.5;
}

.offer-card .card-body .btn {
	padding: 8px 22px;
	font-size: 0.85rem;
}

/* ============================================================
   MARKI
   ============================================================ */
#marki {
	padding: 80px 0 60px;
	background: var(--white);
}

.brand-item {
	display: flex;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
	padding: 2rem;
	border-radius: 20px;
	background: var(--gray-light);
	transition: var(--transition);
}

.brand-item:hover {
	box-shadow: var(--shadow);
}

.brand-item:nth-child(even) {
	flex-direction: row-reverse;
}

.brand-item .brand-image {
	flex: 0 0 300px;
}

.brand-item .brand-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.brand-item .brand-content h3 {
	font-size: 1.8rem;
	color: var(--primary-dark);
	margin-bottom: 0.8rem;
}

.brand-item .brand-content p {
	color: var(--text-dark);
	line-height: 1.8;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.brand-item {
		flex-direction: column !important;
		padding: 1.5rem;
		gap: 1.5rem;
	}

	.brand-item .brand-image {
		flex: 0 0 auto;
		width: 100%;
	}

	.brand-item .brand-image img {
		height: 180px;
	}

	.brand-item .brand-content h3 {
		font-size: 1.4rem;
	}
}

/* ============================================================
   KONTAKT - BEZ MAPY, Z LINKIEM
   ============================================================ */
#kontakt {
	padding: 80px 0 60px;
	background: var(--gray-light);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.contact-info {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.contact-info h3 {
	font-size: 1.5rem;
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
}

.contact-info p {
	margin-bottom: 0.8rem;
	font-size: 1rem;
	color: var(--text-dark);
}

/* ===== POPRAWA KONTRASTU IKON ===== */
.contact-info p i {
	width: 28px;
	color: #7a5c0a;
	font-size: 1.1rem;
}

.contact-info a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

.contact-info a:hover {
	color: var(--gold);
	text-decoration: underline;
}

.contact-map-link {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 350px;
}

/* ===== POPRAWA KONTRASTU IKONY MAPY ===== */
.contact-map-link .map-icon {
	font-size: 4rem;
	color: #7a5c0a;
	margin-bottom: 1.5rem;
}

.contact-map-link h3 {
	font-size: 1.5rem;
	color: var(--primary-dark);
	margin-bottom: 1rem;
}

.contact-map-link p {
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.contact-map-link .btn {
	padding: 14px 40px;
	font-size: 1rem;
}

.contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gray-mid);
}

.contact-links a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	padding: 4px 0;
}

.contact-links a:hover {
	color: var(--gold);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-map-link {
		min-height: 200px;
		padding: 1.5rem;
	}
}

/* ============================================================
   FLAGI
   ============================================================ */
#flags {
	padding: 30px 0;
	background: var(--primary-dark);
}

.flags-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.flags-grid a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.08);
	padding: 4px 12px;
	border-radius: 20px;
	text-decoration: none;
	color: #ccc;
	font-size: 0.75rem;
	transition: var(--transition);
	border: 1px solid transparent;
}

.flags-grid a:hover {
	background: var(--gold);
	color: var(--text-dark);
	border-color: var(--gold);
}

.flags-grid a img {
	width: 18px;
	height: 12px;
	object-fit: cover;
	border-radius: 2px;
}

/* ============================================================
   STOPKA
   ============================================================ */
footer {
	background: #111;
	color: #999;
	text-align: center;
	padding: 25px 20px;
	font-size: 0.85rem;
	border-top: 2px solid var(--gold);
}

footer a {
	color: var(--gold);
	text-decoration: none;
	transition: var(--transition);
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ============================================================
   STRZAŁKA DO GÓRY
   ============================================================ */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 46px;
	height: 46px;
	background: var(--gold);
	color: var(--text-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 700;
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	border: none;
	box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: var(--gold-hover);
	transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
	.section-title {
		font-size: 1.8rem;
	}

	.offer-grid {
		grid-template-columns: 1fr;
	}

	.brand-item .brand-content p {
		font-size: 0.92rem;
	}

	.contact-info {
		padding: 1.5rem;
	}

	.flags-grid {
		gap: 0.3rem;
	}

	.flags-grid a {
		padding: 3px 8px;
		font-size: 0.65rem;
	}

	.flags-grid a img {
		width: 16px;
		height: 10px;
	}
}
/* ============================================================
   POPRAWKI DOSTĘPNOŚCI - LINKI Z PODKREŚLENIEM
   ============================================================ */

/* Podkreślenie linków w stopce i na stronie */
footer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}

footer a:hover {
    color: #fff;
}

/* Linki w kontaktach - podkreślenie przy hover */
.contact-info a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--gold);
}

/* Linki w contact-links - podkreślenie */
.contact-links a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: var(--transition);
    padding: 4px 0;
}

.contact-links a:hover {
    color: var(--gold);
}

/* Linki w stopce - zawsze podkreślone */
footer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

footer a:hover {
    color: #fff;
}
/* ============================================================
   STOPKA - AGRO WOJCIECH
   ============================================================ */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 40px 20px 35px;
    font-size: 0.85rem;
    border-top: 3px solid #d4a017;
    line-height: 1.8;
}

footer a {
    color: #d4a017;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #d4a017;
    text-decoration: underline;
}

.footer-brand {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-company {
    background: #2a2a2a;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px auto;
    max-width: 600px;
    font-size: 0.9rem;
    border-left: 4px solid #d4a017;
    color: #ddd;
}

.footer-company a {
    color: #d4a017;
    text-decoration: none;
    border-bottom: 1px dotted #555;
}

.footer-company a:hover {
    color: #fff;
    border-bottom-color: #d4a017;
}

.footer-verification,
.footer-export {
    margin: 10px 0;
    font-size: 0.8rem;
    color: #ccc;
}

.footer-verification a,
.footer-export a {
    color: #d4a017;
    text-decoration: underline;
}

.footer-verification a:hover,
.footer-export a:hover {
    color: #fff;
}

.footer-tech {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
}

.footer-tech a {
    color: #d4a017;
    text-decoration: underline;
}

.footer-tech a:hover {
    color: #fff;
}

footer p:last-of-type {
    color: #aaa;
    font-size: 0.7rem;
}