:root {
    --primary-color: #2E523A; /* Ciemna zieleń z logo */
    --accent-color: #C5A065;  /* Złoty beż z logo */
    --bg-color: #F9F9F7;      /* Złamana biel */
    --text-color: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* --- NAGŁÓWEK --- */
header {
    background-color: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Dostosować w razie potrzeby */
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
}

.brand-tagline {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent-color);
    font-style: italic;
}

.social-nav {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Ukrywanie tekstu linków na bardzo małych ekranach */
@media (max-width: 768px) {
    .link-text { display: none; }
    .brand-name { font-size: 1.2rem; }
    .logo-img { height: 45px; }
}

/* --- HERO SECTION --- */
.hero {
    /* Zdjęcie tła - placeholder relaksujący */
    background: linear-gradient(rgba(46, 82, 58, 0.7), rgba(46, 82, 58, 0.5)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* --- MAIN CONTENT --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 10px;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
    object-fit: cover;
}

/* --- CENNIK --- */
.pricing-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.price-list {
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: #fcfcfc;
}

.service-name {
    font-weight: 700;
    color: var(--primary-color);
}

.service-price {
    color: var(--accent-color);
    font-weight: 700;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.footer-info, .footer-map {
    flex: 1;
    min-width: 300px;
}

.footer-info h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #ccc;
}

iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .about-section { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .btn { justify-content: center; }
}