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

body {
    background-color: #f9fafb;
    font-family: sans-serif
}

.header {
    background-color: #78350f;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    height: 40px;
}

.site-title {
    font-weight: bold;
    font-size: 20px;
}





.litters-a{
    height: auto;
    padding: 20px 0;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 520px));
    gap: 40px;
    row-gap: 30px;
    justify-content: center;
    max-width: 1080px; /* Maksymalna szerokość siatki */
    margin: 0 auto;
}

.cat-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-top: 30px;
    background-color: red;
    width: 520px;
    height: 260px;
    object-fit: cover;
}

.cat-card:hover {
    transform: translateY(-10px);
}

.cat-card{
    width: 100%;
    height: 260px;
    margin-top: 30px;
    background-color: red;
    max-width: 520px;
    object-fit: cover;
}

.cat-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.cat-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}










.footer-section {
	background-color: #1f2937;
	color: white;
	padding: 80px 0 40px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-top {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 768px) {
	.footer-top {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer-brand {
	max-width: 400px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.footer-logo img {
	height: 64px;
	margin-right: 10px;
}

.footer-logo span {
	font-weight: bold;
	font-size: 20px;
}

.footer-description {
	color: #9ca3af;
	line-height: 1.6;
}

.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

@media (min-width: 768px) {
	.footer-links {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-column h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 8px;
}

.footer-column a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #374151;
	margin-top: 48px;
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-bottom p {
	color: #9ca3af;
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 24px;
}

.footer-socials a {
	color: #9ca3af;
	font-size: 20px;
	transition: color 0.3s;
}

.footer-socials a:hover {
	color: white;
}