/* ========================================
   FUNDACJA NO PROBLEM - Główne Style
   ======================================== */

:root {
	--color-primary-children: #FF6B6B;
	--color-primary-animals: #4ECDC4;
	--color-accent: #FFE66D;
	--color-dark: #2C3E50;
	--color-light: #F8F9FA;
	--color-border: #E1E8ED;
}

/* ========================================
   OGÓLNE STYLE
   ======================================== */

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--color-dark);
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   SELEKTOR DZIECI / ZWIERZĘTA
   ======================================== */

.fnp-mode-selector {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: white;
	border-radius: 50px;
	padding: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	gap: 10px;
}

.fnp-mode-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 2px solid transparent;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: var(--color-light);
}

.fnp-mode-btn:hover {
	transform: scale(1.1);
}

.fnp-mode-btn.active {
	border-color: var(--color-dark);
	transform: scale(1.15);
}

.fnp-mode-btn.children {
	color: var(--color-primary-children);
}

.fnp-mode-btn.animals {
	color: var(--color-primary-animals);
}

/* ========================================
   STRONA GŁÓWNA
   ======================================== */

.fnp-hero-section {
	background: linear-gradient(135deg, var(--color-primary-children) 0%, var(--color-primary-animals) 100%);
	color: white;
	padding: 80px 20px;
	text-align: center;
	margin-bottom: 60px;
}

.fnp-hero-section h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: bold;
}

.fnp-hero-section p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	opacity: 0.95;
}

.fnp-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========================================
   PRZYCISKI
   ======================================== */

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background-color: var(--color-primary-children);
	color: white;
}

.btn-primary:hover {
	background-color: #e55555;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
	background-color: var(--color-primary-animals);
	color: white;
}

.btn-secondary:hover {
	background-color: #3db5b0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid white;
	color: white;
}

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SIATKA ZBIÓRKI
   ======================================== */

.fnp-zbiórki-container,
.fnp-podopieczni-container {
	margin: 40px 0;
}

.zbiórki-grid,
.podopieczni-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

/* ========================================
   KARTY ZBIÓRKI
   ======================================== */

.zbiorka-card,
.podopieczny-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.zbiorka-card:hover,
.podopieczny-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.zbiorka-thumbnail,
.podopieczny-thumbnail {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: var(--color-light);
}

.zbiorka-thumbnail img,
.podopieczny-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zbiorka-info,
.podopieczny-info {
	padding: 20px;
}

.zbiorka-info h3,
.podopieczny-info h3 {
	font-size: 1.3rem;
	margin: 0 0 12px 0;
	color: var(--color-dark);
}

.zbiorka-info p,
.podopieczny-info p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 15px;
}

/* ========================================
   PASEK POSTĘPU ZBIÓRKI
   ======================================== */

.zbiorka-progress {
	margin-bottom: 15px;
}

.progress-bar {
	width: 100%;
	height: 10px;
	background-color: var(--color-border);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 8px;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--color-primary-children), var(--color-primary-animals));
	transition: width 0.3s ease;
}

.progress-text {
	display: block;
	font-size: 0.85rem;
	color: #666;
	font-weight: 600;
}

/* ========================================
   FILTRY
   ======================================== */

.fnp-filters {
	background: var(--color-light);
	padding: 30px;
	border-radius: 12px;
	margin-bottom: 40px;
}

.filters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.filter-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-dark);
}

.filter-group select,
.filter-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-size: 1rem;
}

.filter-group select:focus,
.filter-group input:focus {
	outline: none;
	border-color: var(--color-primary-children);
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* ========================================
   STRONY INFORMACYJNE
   ======================================== */

.page-content {
	max-width: 800px;
	margin: 40px auto;
	line-height: 1.8;
}

.page-content h2 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--color-dark);
}

.page-content ul,
.page-content ol {
	margin: 20px 0;
	padding-left: 30px;
}

.page-content li {
	margin-bottom: 10px;
}

/* ========================================
   SEKCJA O NAS
   ======================================== */

.about-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin: 60px 0;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.about-section {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   FOOTER
   ======================================== */

footer {
	background: var(--color-dark);
	color: white;
	padding: 60px 20px 20px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section li {
	margin-bottom: 10px;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
	.fnp-hero-section {
		padding: 50px 20px;
	}

	.fnp-hero-section h1 {
		font-size: 1.8rem;
	}

	.zbiórki-grid,
	.podopieczni-grid {
		grid-template-columns: 1fr;
	}

	.fnp-mode-selector {
		top: 10px;
		right: 10px;
	}

	.fnp-mode-btn {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
}
