/* RESET I PODSTAWOWE STYLISTYKI (BEZ ZMIAN) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; 
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #006400; 
}

section {
    padding: 60px 0;
}

/* NAGŁÓWEK I MENU (BEZ ZMIAN) */
header {
    background-color: #006400; 
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #38761d; 
    border-radius: 5px;
}

/* SEKCJA GŁÓWNA (HERO) - WAŻNA AKTUALIZACJA */
.hero {
    /* UWAGA: Zmień 'hero-bg.jpg' na nazwę swojego pliku! */
    background: url('hero-bg.jpg') no-repeat center center/cover; 
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    min-height: 450px; /* Zapewnia widoczność tła */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* PRZYCISKI CTA (BEZ ZMIAN) */
.cta-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.primary-btn {
    background-color: #ffcc00; 
    color: #333;
    border: 2px solid #ffcc00;
}

.primary-btn:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

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

.secondary-btn:hover {
    background-color: #fff;
    color: #006400;
}

/* SEKCJA OFERTA - WAŻNA AKTUALIZACJA */
.offer-section {
    background-color: #fff;
    text-align: center;
}

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

.offer-category {
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center; /* Wyśrodkowanie ikon */
}

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

.category-icon {
    width: 60px; /* Rozmiar ikony */
    height: 60px;
    margin-bottom: 15px;
}

.offer-category h3 {
    color: #38761d; 
    font-size: 1.5em;
    margin-bottom: 15px;
}

.offer-category ul {
    list-style-type: none;
    text-align: left;
}

.offer-category ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

/* SEKCJA KONTAKT (BEZ ZMIAN) */
.contact-section {
    background-color: #eaf0e8; 
    text-align: center;
}

.contact-details {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-grid h3 {
    color: #006400;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
}

.map-placeholder {
    margin-top: 30px;
    border: 5px solid #006400;
    border-radius: 8px;
    overflow: hidden;
}

/* STOPKA (BEZ ZMIAN) */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer .container {
    padding: 10px 0;
}

/* MEDIA QUERIES (RESPONSYWNOŚĆ) (BEZ ZMIAN) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    header .container {
        flex-direction: column;
    }

    nav ul {
        padding-top: 10px;
    }

    nav ul li a {
        padding: 5px 10px;
    }
}