/* Reset i bazowe ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #f9f9f9;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* Nagłówek */
.top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px 0px;
    background-color: #fff;
    margin-bottom: 0px;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 0px;
}

.top-header h1 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

/* Główna treść */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 20px;
    background-color: #fff;
    margin-bottom: 10px;
}

.profile {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.profile-photo {
    border-radius: 50%;
    border: 1px solid #ccc;
    max-width: 200px;
    height: auto;
}

.contact {
    max-width: 400px;
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact p {
    margin: 6px 0;
    font-size: 1.1rem;
}

.contact a {
    color: #333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Stopka */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 20px;
    background-color: #fff;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

/* Sekcja SEO */
.seo {
    font-size: 0.5rem;
    color: #aaa;
    background-color: #fff;
    text-align: center;
    line-height: 1;
    width: 100%;
    padding: 20px 20px 20px;
    margin-top: 10px;
}

.seo summary {
    font-size: 0.5rem;
    color: #aaa;
    margin-bottom: 10px;
    list-style: none;
    cursor: pointer;
}

.seo summary::-webkit-details-marker {
    display: none;
}

.seo .seo-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.seo h2 {
    font-weight: normal;
    font-size: inherit;
}

/* Licznik odwiedzin */
.visitor {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    margin-top: 5px;
}

/* Responsywność */
@media (max-width: 600px) {
    .top-header {
        padding-top: 20px;
    }

    .top-header h1 {
        font-size: 1.6rem;
    }

    .profile {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .contact {
        max-width: 100%;
    }

    .contact p {
        font-size: 1rem;
    }

    .profile-photo {
        max-width: 160px;
    }
}