/* --- RESET I BAZA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    /* Stylizowane tło graficzne SVG (motyw natury) */
    background-color: #f4f7f4;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d5a27' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* --- NAWIGACJA --- */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5a27;
    text-decoration: none;
}

.logo span {
    color: #e67e22;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #2d5a27;
}

.btn-nav {
    background: #2d5a27;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1b3b18 0%, #2d5a27 100%);
    color: #fff;
    padding: 120px 0 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #e67e22;
    color: #fff;
    margin-right: 15px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* --- SEKCJE I SIATKI --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #2d5a27;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-card ul {
    list-style: none;
    margin-top: 15px;
}

.about-card li {
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2d5a27;
}

.card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
    color: #2d5a27;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

/* --- FORMULARZ KONTAKTOWY --- */
.contact-box {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box h2 {
    text-align: center;
    color: #2d5a27;
    margin-bottom: 10px;
}

.contact-box p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

.btn-block {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* --- FOOTER --- */
footer {
    background: #1b3b18;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

footer p {
    opacity: 0.8;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 5px 10px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}