/* Reset i style ogólne */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f8fafc;
    color: #222;
}

/* Nawigacja (Navbar) */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    color: #333;
}

.logo span {
    color: #a1833d; /* Ciepły złoty akcent */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000;
}

.nav-links .nav-btn {
    background: #8a6d29;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-links .nav-btn:hover {
    background: #735a20;
}

/* Elastyczna i bezpieczna sekcja bannera głównego */
.hero-banner-wrapper {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-banner-container {
    width: 100%;
    max-width: 1400px; /* Maksymalna szerokość dopasowana do pliku graficznego */
    margin: 0 auto;
    display: block;
    line-height: 0; 
}

.hero-banner-img {
    width: 100%;
    height: auto; /* Proporcjonalne skalowanie na telefonach */
    display: block;
    max-width: 100%; /* Blokuje powiększenie obrazu ponad jego oryginalny rozmiar */
}

/* Sekcja z dużym złotym przyciskiem (CTA) */
.cta-section {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-bottom: 1px solid #edf2f7;
}

.cta-section h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 500;
}

.main-cta-btn {
    display: inline-block;
    background: #8a6d29; /* Odcień złota z wizualizacji */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(138, 109, 41, 0.3);
    transition: transform 0.2s, background-color 0.3s;
}

.main-cta-btn:hover {
    background: #735a20;
    transform: translateY(-2px);
}

/* Główne sekcje tekstowe i kontenery */
section {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
}

.intro {
    text-align: center;
    max-width: 800px;
}

.intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Galeria trzech zdjęć niżej na stronie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Siatka kart oraz formularz */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cards div, form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.cards h3 {
    margin-top: 0;
    color: #8a6d29;
}

/* Listy punktowe */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Formularz kontaktowy */
form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    background: #f8fafc;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: 2px solid #8a6d29;
    background: #fff;
}

button {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: #8a6d29;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #735a20;
}

/* Stopka */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    color: #a0aec0;
    font-size: 14px;
}

/* Adaptacja dla urządzeń mobilnych */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .cta-section h2 {
        font-size: 24px;
    }
    .main-cta-btn {
        font-size: 16px;
        padding: 14px 30px;
        width: 100%;
        box-sizing: border-box;
    }
    section {
        padding: 15px 20px;
    }
}