body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
}

.gora_tla {
    background-color: wheat; /* Zmień na #222 jeśli wolisz ciemny */
    width: 100%;
    height: 20vh;
}

.dol_tla {
    background-color: white;
    width: 100%;
    min-height: 80vh;
}

.profil {
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.profilowe {
    /* SKALOWANIE ZDJĘCIA: 15vh sprawia, że na niskich ekranach zdjęcie się zmniejszy */
    width: clamp(90px, 15vh, 150px);
    height: clamp(90px, 15vh, 150px);
    border: 5px solid white;
    border-radius: 50%;
    background-color: wheat;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.profil-tekst {
    margin-top: 10px;
    /* SKALOWANIE NAPISU */
    font-size: clamp(1.2rem, 4vh, 1.8rem);
    font-weight: 800;
    color: #222;
    letter-spacing: -1px;
}

.info {
    line-height: 1.6;
    max-width: 500px;
    /* ELASTYCZNY MARGINES: na niskich ekranach (jak 600px) będzie mniejszy */
    margin: 15vh auto 0; 
    padding: 0 20px 40px; 
    color: #333;
}

.app_logo {
    max-width: 2rem;
    border-radius: 25%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-right: 12px;
}

h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.item a {
    text-decoration: none;
    color: #222;
    transition: all 0.2s;
    margin-top: 3px;
    cursor: pointer;
}

.item a:hover {
    color: #666;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-height: 650px) or (max-width: 480px) {
    .info {
        margin-top: 100px;
    }
    .profil-tekst {
        font-size: 1.3rem;
    }
    .profilowe {
        width: 100px;
        height: 100px;
    }
}
