/* Globalne style */
body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #f0f4f3;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
h1, h2, h3 {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 20px;
}

/* Nagłówek */
header {
    background-color: #a3d9c9;
    color: #000;
    padding: 20px 0;
    position: relative;
    text-align: center; /* Wyśrodkowanie elementów w nagłówku */
}
header img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}
header h1 {
    color: #000;
    margin-top: 0;
    font-size: 2.2em;
}
header p {
    margin-bottom: 15px; /* Dodatkowy margines pod tekstem w nagłówku */
}
/* Przycisk CTA w nagłówku */
.header-cta {
    background-color: #ffcccc;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-bottom: 20px; /* Dodany margines, aby oddzielić od kolejnego obrazka */
}
.header-cta:hover {
    background-color: #ffb3b3;
}

/* Nawigacja */
nav {
    text-align: center;
    margin: 20px 0;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
nav a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 0;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
nav a:hover {
    color: #a3d9c9;
    text-decoration: underline;
}

/* Sekcje ogólne */
section {
    padding: 30px;
    margin: 40px 10%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Wyłącz hover na sekcji kontaktowej i innych, gdzie to nie pasuje */
#contact:hover, #booksy:hover, #social-media:hover {
    transform: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

/* Styl dla kontenera CTA w sekcjach */
.section-cta-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
/* Styl dla przycisku CTA w sekcjach, podobny do nagłówkowego */
.section-cta {
    background-color: #ffcccc;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.section-cta:hover {
    background-color: #ffb3b3;
}

/* Media Queries dla responsywności */
@media (max-width: 768px) {
    section {
        margin: 20px 5%;
        padding: 20px;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
}
@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }
    .header-cta, .section-cta {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* Sekcja Zespołu */
.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.team img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #a3d9c9;
}
.team-member {
    margin-bottom: 30px;
    max-width: 800px;
}
@media (min-width: 768px) {
    .team {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .team-member {
        margin: 0 30px 30px;
        width: 45%;
    }
}

/* Lista cen i usług */
.price-list img, .promo-img, .booksy-qr-code {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.booksy-qr-code {
    max-width: 200px;
}
.price-text-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.price-text-info ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Formularz kontaktowy (jeśli kiedykolwiek będziecie go używać, teraz to tylko tekst) */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.contact-form button {
    background-color: #a3d9c9;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #7abda6;
}

/* Stopka */
footer {
    text-align: center;
    padding: 20px;
    background-color: #a3d9c9;
    color: #000;
    margin-top: 30px;
}

/* Linki w treści */
a {
    color: #a3d9c9;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    text-decoration: underline;
    color: #7abda6;
}

/* Usługi - ogólne elementy list */
#services ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}
#services ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: normal;
    color: #333;
}
/* Ikonki dla usług - domyślnie gwiazdki, nadpisane w poszczególnych podlistach */
#services ul li::before {
    content: "✨";
    color: #a3d9c9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1em;
}

/* Style dla konkretnych podlist w Usługach */
#services h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}
#services .price-list {
    margin-top: 0;
}
#services img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Specific styles for #services ul (flexbox for grid layout) */
#services > ul:first-of-type {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     max-width: none;
}
#services > ul:first-of-type li {
    background-color: #e9f2f0;
    margin: 8px;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-weight: bold;
    color: #555;
    flex: 1 1 calc(33% - 40px);
    min-width: 250px;
    text-align: center;
    padding-left: 12px;
}
#services > ul:first-of-type li::before {
    content: none;
}
/* Resetujemy na media query, aby flex działał poprawnie na mniejszych ekranach */
@media (max-width: 768px) {
    #services > ul:first-of-type li {
        flex: 1 1 calc(50% - 40px);
    }
}
@media (max-width: 480px) {
    #services > ul:first-of-type li {
        flex: 1 1 100%;
    }
}


/* Style dla list w innych sekcjach - np. Kontakt */
#contact .contact-details p {
    text-align: center;
    margin-bottom: 10px;
}
/* Styl dla etykiet numerów telefonów */
.contact-phone-label {
    font-weight: bold;
    margin-bottom: 5px;
}
/* Styl dla numerów telefonów */
.contact-phone-number {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4a4a4a;
}
.contact-phone-number a {
    color: #a3d9c9;
    text-decoration: none;
}
/* Styl dla podpowiedzi łatwego numeru */
.contact-easy-number-hint {
    font-size: 0.8em;
    color: #777;
    display: block;
    margin-top: -5px;
}
/* Styl dla informacji o specjaliście */
.contact-specialist-info {
    font-size: 0.9em;
    color: #555;
    margin-top: -5px;
    margin-bottom: 20px;
}


#contact ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 400px;
}
#contact ul li::before {
    color: #a3d9c9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1em;
}
/* Ikony dla Godzin Otwarcia w Contact */
#contact .contact-details h3:nth-of-type(1) + ul li::before {
    content: "🗓️";
}
/* Ikony dla Metod Płatności w Contact */
#contact .contact-details h3:nth-of-type(2) + ul li::before {
    content: "💳";
}


#contact .map-container {
    margin-top: 20px;
    text-align: center;
}
#contact .map-container iframe {
    width: 100%;
    max-width: 600px;
    height: 350px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
 @media (min-width: 768px) {
     #contact .map-container iframe {
         max-width: 800px;
         height: 600px;
     }
 }

/* Sekcja oferta specjalna */
#special-offer {
    text-align: center;
}
#special-offer .offer-text {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#special-offer .offer-details {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
#special-offer .offer-disclaimer {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}


/* Sekcja wydarzenia plenerowe */
#outdoor-events {
    text-align: center;
}
#outdoor-events .event-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
#outdoor-events .event-gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}
/* Na małych ekranach zdjęcia mogą być większe */
@media (max-width: 480px) {
    #outdoor-events .event-gallery img {
        max-width: 100%;
    }
}

/* Styl dla zdjęć voucherów */
.voucher-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.voucher-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 300px;
    object-fit: contain;
}

/* ULEPSZONE STYLE DLA SEKCJI OPINII (#testimonials) */
#testimonials .testimonial-grid {
    display: grid; /* Zmieniamy z flex na grid */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsywna siatka, min 300px, reszta wypełnia przestrzeń */
    gap: 30px; /* Większy odstęp między opiniami */
    justify-content: center; /* Wyśrodkowanie siatki */
    padding: 0 20px; /* Dodatkowy padding po bokach dla siatki */
    max-width: 1200px; /* Ograniczenie maksymalnej szerokości siatki */
    margin: 20px auto; /* Wyśrodkowanie siatki na stronie */
}

#testimonials .testimonial-item {
    background-color: #fff; /* Białe tło dla każdej opinii, dla kontrastu */
    padding: 25px; /* Większy padding */
    border-radius: 12px; /* Bardziej zaokrąglone rogi */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Wyraźniejszy, nowoczesny cień */
    text-align: center;
    display: flex; /* Używamy flexboxa wewnątrz elementu opinii dla lepszego układu treści */
    flex-direction: column;
    justify-content: space-between; /* Rozłożenie treści równomiernie */
    height: auto; /* Dostosowanie wysokości do zawartości */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Płynna animacja */
    border: 1px solid #e0e0e0; /* Delikatna ramka */
}

#testimonials .testimonial-item:hover {
    transform: translateY(-8px); /* Lekkie podniesienie na hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); /* Mocniejszy cień na hover */
}

#testimonials .testimonial-item img {
    width: 100px; /* Mniejszy, spójny rozmiar dla zdjęć profilowych */
    height: 100px;
    border-radius: 50%; /* Zdjęcia okrągłe */
    object-fit: cover;
    margin: 0 auto 15px auto; /* Wyśrodkowanie obrazka */
    border: 4px solid #a3d9c9; /* Grubsza ramka */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Cień na zdjęciu */
}

#testimonials .testimonial-text-content {
    flex-grow: 1; /* Pozwala zawartości tekstowej rozciągnąć się */
    margin-top: 0; /* Resetujemy margines */
}

#testimonials .quote-summary {
    font-style: italic;
    margin-bottom: 15px; /* Większy odstęp */
    font-size: 1.15em; /* Nieco większy tekst */
    color: #333; /* Ciemniejszy, czytelniejszy kolor */
    line-height: 1.5;
}

#testimonials .original-quote {
    font-size: 0.9em;
    color: #666;
    display: block; /* Upewniamy się, że zawsze jest widoczne, jeśli nie ma JS do rozwijania */
    margin-top: 10px;
}

#testimonials .author {
    font-weight: bold;
    color: #4a4a4a;
    margin-top: 20px; /* Większy odstęp */
    display: block;
    font-size: 0.95em;
}

/* Responsywność dla opinii (dostosowane do grid) */
@media (max-width: 992px) {
    #testimonials .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Dwie kolumny na tabletach */
        gap: 25px;
    }
}

@media (max-width: 600px) {
    #testimonials .testimonial-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na małych ekranach */
        gap: 20px;
        padding: 0 15px; /* Mniejszy padding */
    }
    #testimonials .testimonial-item {
        padding: 20px; /* Mniejszy padding */
    }
}