/* Zmienne kolorystyczne inspirowane naturą i spokojem */
:root {
    --primary-color: #6B8E85; /* Szałwiowa zieleń - spokój, zaufanie */
    --secondary-color: #D4C3B7; /* Ciepły beż - łagodność */
    --text-dark: #2F3E46; /* Ciemny grafit zamiast czerni */
    --text-light: #526760; /* Jaśniejszy tekst */
    --bg-light: #F4F7F6; /* Złamana biel */
    --bg-white: #FFFFFF;
    --accent: #E07A5F; /* Delikatny akcent (opcjonalny) */
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Nawigacja --- */
.navbar {
    background: var(--bg-white);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(244, 247, 246, 0.9), rgba(244, 247, 246, 0.8)), url('img/tlo.jpg'); /* Opcjonalne tło */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 10px 0;
    color: var(--text-dark);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-quote {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: #5a7a70;
}

.btn-outline {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

/* --- Sekcje Ogólne --- */
section {
    padding: 80px 0;
}

.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }
.section-sage { background: #E8EFED; }
.section-dark { background: var(--text-dark); color: white; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* --- O Mnie --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-block {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-light);
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    border-radius: 5px;
}

/* --- Kompetencje --- */
.competence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.competence-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.competence-col ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.competence-col ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.experience-note {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* --- Oferta --- */
.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-light);
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tag {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.offer-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Dla Dzieci --- */
.check-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236B8E85"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
}

.alert-box {
    background: #FFF4E5;
    border-left: 4px solid #FFB74D;
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

/* --- Opinie (Testimonials) --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-style: italic;
}

.review-author {
    margin-top: 15px;
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
    font-style: normal;
}

/* --- Cennik --- */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.pricing-row:last-child {
    border-bottom: none;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Kontakt --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
}

.contact-info {
    padding: 50px;
    background: var(--primary-color);
    color: white;
}

.contact-info h3, .contact-info p, .contact-info a {
    color: white;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details a {
    text-decoration: underline;
}

.external-links {
    margin-top: 30px;
}

.external-links .btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #888;
    font-size: 0.8rem;
}

/* --- Responsywność --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: var(--bg-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%; /* Pełna szerokość na mobilu */
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    .about-grid, .competence-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .img-placeholder {
        height: 300px;
    }
    
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
    
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}

.nav-active li {
    animation: navLinkFade 0.5s ease forwards 0.3s;
}

/* --- Sekcja Gabinet --- */
.office-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny na komputerze */
    gap: 50px;
    align-items: center;
}

.office-text-content h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.office-features {
    margin: 20px 0;
}

.office-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.office-features li::before {
    content: '✔'; /* Elegancki "ptaszek" */
    position: absolute;
    left: 0;
    color: var(--accent); /* Lub var(--primary-color) */
    font-weight: bold;
}

.office-invite {
    font-style: italic;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: var(--text-light);
}

/* Galeria zdjęć */
.office-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main img {
    width: 100%;
    height: 300px; /* Stała wysokość głównego zdjęcia */
    object-fit: cover; /* Zdjęcie wypełni ramkę, nie spłaszczy się */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-sub img {
    width: 100%;
    height: 150px; /* Mniejsze zdjęcia pod spodem */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Responsywność dla Gabinetu (Mobile) */
@media screen and (max-width: 768px) {
    .office-container {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }
    
    .gallery-main img {
        height: 250px;
    }
}
