/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Cała strona */
body {
    background: #f9f9f9; /* bardzo jasnoszare tło */
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;              /* biała belka */
    border-bottom: 1px solid #ddd; /* cienki border na dole */
    color: #333;                   /* ciemnoszara czcionka */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar a {
    color: #333;                   /* ciemnoszary tekst */
    text-decoration: none;
    transition: 0.3s;
}
.navbar a:hover {
    color: #b40004; /* akcent czerwony */
}
.logo img {
    max-width: 5%;   /* logo w menu 1/4 szerokości */
    height: auto;
}

/* Hero */
.hero {
    background: none; /* usunięte tło logo */
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #333;
    padding: 0 20px;
    background: #fff;
    margin-top: 100px;
}
.hero img {
    max-width: 25%; /* logo na środku ~1/4 ekranu */
    height: auto;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.btn {
    background: #b40004; /* czerwony akcent */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover {
    background: #800003; /* ciemniejszy odcień */
}

/* O nas */
.about {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Kontakt */
.contact {
    background: #fff;
    padding: 80px 20px;
}
.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b40004;
}

/* Stopka */
footer {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ddd;
}
footer .socials a {
    color: #b40004;
    text-decoration: none;
    margin: 0 5px;
}
footer .socials a:hover {
    text-decoration: underline;
}

/* Responsywność */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero img {
        max-width: 50%; /* na mniejszych ekranach większe logo */
    }
}
