/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #5d4037;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #8d6e63;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background-color: #a1887f;
    color: white;
}

.btn-primary:hover {
    background-color: #8d6e63;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #a1887f;
    border: 2px solid #a1887f;
}

.btn-secondary:hover {
    background-color: #a1887f;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: #5d4037;
    border: 2px solid #5d4037;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: #5d4037;
    color: white;
}

.btn-help {
    background-color: #c8e6c9;
    color: #2e7d32;
    margin-top: 20px;
}

.btn-help:hover {
    background-color: #a5d6a7;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #5d4037;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #5d4037;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-menu a:hover {
    color: #a1887f;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5d4037;
    cursor: pointer;
}

/* Sekcja Hero */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(141, 110, 99, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sekcja O nas */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #8d6e63;
    border-left: 4px solid #a1887f;
    padding-left: 20px;
    margin-top: 30px;
}

/* Sekcja Zwierzęta */
.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.animal-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.animal-image {
    height: 250px;
    overflow: hidden;
}

.animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.animal-card:hover .animal-image img {
    transform: scale(1.05);
}

.animal-info {
    padding: 25px;
}

.animal-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #5d4037;
    margin-bottom: 10px;
}

.animal-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #8d6e63;
    font-size: 0.9rem;
}

.animal-details i {
    margin-right: 5px;
}

.animal-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Sekcja Jak pomóc */
.help-section {
    background-color: #f9f5f0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.help-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-10px);
}

.help-icon {
    font-size: 2.5rem;
    color: #a1887f;
    margin-bottom: 20px;
}

.help-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #5d4037;
    margin-bottom: 15px;
}

.help-description {
    color: #666;
    line-height: 1.6;
}

.donation-info {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donation-info h3 {
    font-family: 'Poppins', sans-serif;
    color: #5d4037;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.donation-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.donation-list li {
    padding: 10px 0;
    color: #666;
}

.donation-list i {
    color: #81c784;
    margin-right: 10px;
}

/* Sekcja Historie */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 