/* --- General --- */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}
h1{
    text-align: center;
}
h1, h2, h3 {
    color: #222;
}

/* --- HEADER --- */
.site-header {
    background: linear-gradient(135deg, #005f73, #0a9396);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #94d2bd;
}


/* --- Navigation --- */
nav {
    background: #0a9396;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Sticky header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* --- Main content --- */
main, form, .oferta {
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
}
p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
    font-size: 15px;
}
/* --- Oferta / Usługi --- */
.oferta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.usluga {
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.usluga h2 {
    font-size: 18px;
    margin-top: 0;
}

/* --- Kontakt --- */
.kontakt-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.kontakt-box h2 {
    margin-top: 0;
    color: #005f73;
}

.kontakt-box p {
    margin-bottom: 15px;
}
/* --- Forms --- */
form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select, form textarea, form button {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

form textarea {
    resize: vertical;
}

form button {
    background: #005f73;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background: #0a9396;
}

/* --- Footer --- */
footer {
    background: #005f73;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* --- Table styling --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background: #0a9396;
    color: #fff;
}
/* --- Buttons --- */
.btn {
    display: inline-block;
    background: #0a9396;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover {
    background: #005f73;
}

.btn-delete {
    background: #d62828;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-delete:hover {
    background: #a4161a;
}
/* szpont na index */
.szpont {
    background: linear-gradient(135deg, #94d2bd, #0a9396);
    color: #fff;
    padding: 30px 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.szpont::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(25deg);
}
.szpont ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.szpont ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.szpont ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0077cc;
    font-size: 18px;
    line-height: 1.2;
}