/* RESET I ZASADY PODSTAWOWE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333; /* Ciemny, ale nie czarny tekst */
    background-color: #f8f8f8; /* Lekkie tło */
}

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

.section-padding {
    padding: 80px 0;
}

/* PALETA KOLORÓW */
:root {
    --primary-color: #007bff; /* Nowoczesny Akcent: Niebieski */
    --accent-color: #ff9900; /* Akcent: Pomarańczowy */
    --dark-bg: #222;
}

/* 1. NAGŁÓWEK I NAWIGACJA */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky; /* Przyklejone menu */
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

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

.nav-list li a {
    text-decoration: none;
    color: #555;
    padding: 10px 15px;
    transition: color 0.3s;
}

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

.cta-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 8px 15px !important;
}

.hamburger-menu {
    display: none; /* Ukryte na desktopie */
    font-size: 1.8rem;
    cursor: pointer;
}

/* 2. SEKCJA HERO */
.hero {
    min-height: 70vh;
    background: url('placeholder-hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    /* Efekt 'overlay' */
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Lekkie przyciemnienie */
    z-index: -1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.primary-cta {
    background-color: var(--accent-color);
    color: white;
}

.primary-cta:hover {
    background-color: #cc7a00;
}

/* 3. UKŁAD SIATKOWY (GRID) DLA USŁUG */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Trzy kolumny na desktopie */
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* 4. STOPKA */
.footer {
    background: var(--dark-bg);
    color: #aaa;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* 5. RESPONSIVE DESIGN (Dostosowanie do urządzeń mobilnych) */
@media (max-width: 768px) {
    
    .nav {
        /* Włączenie schowanego menu */
        position: relative;
    }
    
    .hamburger-menu {
        display: block; /* Pokaż ikonę hamburgera */
    }

    .nav-list {
        /* Domyślnie schowane menu mobilne */
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
    }

    /* W tym miejscu w JS musiałaby być klasa, która pokazuje to menu: np. .nav-list.open { display: flex; } */

    .nav-list li a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero {
        min-height: 50vh;
    }

    .hero h2 {
        font-size: 2rem;
    }
    
    /* Zmiana układu Grid na jedną kolumnę */
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 15px;
    }
}