/* Zmienne CSS */
:root {
    --color-primary: #739678; /* Soft Green/Sage - główny kolor akcentu */
    --color-secondary: #5e7a63; /* Ciemniejszy zielony */
    --color-background-light: #F8F8F8; /* Jasne tło sekcji */
    --color-text: #333333;
    --color-light: #ffffff;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --color-topbar: #5e7a63; /* Ciemniejszy zielony dla górnego paska */
}

/* Globalne style i reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6; 
    color: var(--color-text);
    background-color: var(--color-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nagłówki sekcji */
.section {
    padding: 70px 0;
}

.section:nth-child(even) {
    background-color: var(--color-background-light);
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Obrazy */
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
    min-height: 300px;
}

/* Przyciski (Button Styling) */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin-right: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

/* --- TOP BAR (Kontakt i Godziny) --- */
.top-bar {
    background-color: var(--color-topbar);
    color: var(--color-light);
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 20px;
}

.contact-info {
    color: var(--color-light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
    font-size: 1rem;
}

/* STYLIZACJA IKON SPOŁECZNOŚCIOWYCH W TOP BAR */
.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 10px; /* Odstęp między ikonami */
    margin-left: 20px; /* Odsunięcie od godziny/telefonu */
}

.top-bar-socials a {
    color: var(--color-light); /* Białe ikony */
    font-size: 1.1rem;
    transition: color 0.3s;
}

.top-bar-socials a:hover {
    color: var(--color-primary); /* Akcent po najechaniu */
}

/* HEADER I NAWIGACJA */
.main-header {
    background-color: var(--color-light);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

/* SEKCJA HERO */
.hero-section {
    position: relative;
    height: 75vh; 
    min-height: 450px;
}

.hero-image-placeholder {
    /* ZAKTUALIZOWANA ŚCIEŻKA DO OBRAZU HERO */
    background: url('images/relax.png') center center/cover no-repeat; 
    background-color: #a0a0a0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-light);
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* STYL DLA PRZYCISKU DRUGORZĘDNEGO W HERO (ZWIĘKSZONY KONTRAST) */
.hero-subtitle + div .btn-secondary {
    background-color: var(--color-light); /* Białe tło */
    color: var(--color-primary); /* Zielony tekst */
    border-color: var(--color-light); /* Biała ramka */
}

.hero-subtitle + div .btn-secondary:hover {
    background-color: #eee; 
    color: var(--color-secondary); 
    border-color: #eee;
}

/* SEKCJA O NAS / FILOZOFIA (O MNIE) */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content .text-content {
    flex: 1;
    padding: 10px 0; 
}

.about-content h2 {
    text-align: left; 
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-content .image-content {
    flex: 1;
}

/* SEKCJA DLACZEGO MY (Benefits) */
.benefits-section {
    background-color: var(--color-background-light); 
    padding: 50px 0;
}

.benefits-section h2 {
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--color-light);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--color-primary); 
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-family: var(--font-main);
    font-weight: 600;
}

/* SEKCJA USŁUGI */
.services-section {
    padding-top: 70px; 
}

.services-grid {
    /* Ustawienie 3 kolumn dla desktopów */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* STYL DLA ZDJĘĆ POGLĄDOWYCH W KARTACH USŁUG (MINIATURY) */
.service-card .service-icon {
    width: 120px; /* Rozmiar zdjęcia podglądowego */
    height: 120px;
    display: block; 
    margin: 0 auto 15px auto; 
    
    /* Właściwości dla ładnego formatowania zdjęć: */
    border-radius: 50%; /* Kształt koła */
    object-fit: cover; /* Kadrowanie, by wypełnić kontener bez zniekształceń */
    border: 3px solid var(--color-primary); /* Akcent wizualny */
}


.center-text {
    text-align: center;
}

/* SEKCJA CENNIK */
.price-table {
    max-width: 700px;
    margin: 0 auto 30px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: var(--color-secondary);
    color: var(--color-light);
    font-weight: 600;
}

.price-table tr:nth-child(even) td {
    background-color: #f3f3f3; 
}

.price-table tr:hover td {
    background-color: #e9e9e9;
}

/* STYL DLA NAGŁÓWKÓW SEKCJI W TABELI CENNIK (POPRAWIONE WYRÓWNANIE I TŁO) */
.price-table table .section-header td {
    background-color: #ededed; /* Stonowany, jasny szary */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1em;
    padding: 12px 15px;
    color: var(--color-secondary); 
    border-bottom: 2px solid var(--color-primary); 
    text-align: left; /* POPRAWIONE WYRÓWNANIE */
}

/* Styl dla kolumny Ceny (wyrównanie do prawej i akcent kolorystyczny) */
.price-table th:last-child,
.price-table td:last-child {
    text-align: right; 
    width: 25%; 
    font-weight: bold;
    color: var(--color-primary); 
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

/* SEKCJA KONTAKT */
.contact-details-map {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.cta-contact {
    margin-top: 15px;
    margin-right: 0;
}

.map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* STOPKA */
.main-footer {
    background-color: var(--color-text);
    color: #bbb;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.main-footer a {
    color: var(--color-primary);
    text-decoration: none;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .about-content, .contact-details-map {
        flex-direction: column;
        text-align: center;
    }

    .about-content .image-content {
        order: -1; 
    }
}

@media (max-width: 768px) {
    /* Ukrywamy Top Bar na małych ekranach, by nie przeszkadzał */
    .top-bar {
        display: none; 
    }
    
    .main-nav {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; 
        left: 0;
        background-color: var(--color-light);
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .main-nav a {
        margin: 0;
        padding: 10px 20px;
        border-top: 1px solid #eee;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-content {
        text-align: center;
    }
    
    .about-content h2 {
        text-align: center; 
    }
    
    .contact-details p {
        justify-content: center; 
    }
    
    .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }
    
    /* Zmniejszenie miniatur na urządzeniach mobilnych */
    .service-card .service-icon {
        width: 90px;
        height: 90px;
    }
}