* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
}

/* ===== LAYOUT ===== */

.contact-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    padding: 120px 8%;
    gap: 8%;
}

.contact-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-photo {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-photo img {
    width: 85%;
    max-width: 500px;
    object-fit: cover;
}

/* ===== TYPOGRAPHY ===== */

.name {
    font-size: 2.2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-text p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.9;
}

.limited {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.85;
}

/* ===== CONTACT INFO ===== */

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info a {
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    font-weight: 300;
    transition: 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    .contact-section {
        flex-direction: column;
        padding: 100px 10%;
        gap: 60px;
    }

    .contact-text,
    .contact-photo {
        width: 100%;
    }

    .contact-photo img {
        width: 80%;
    }

    .name {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 80px 8%;
    }

    .name {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }
}nav a {
    text-decoration: none;
    color: #111111; /* poprawiony zapis */
    font-weight: 300;
    letter-spacing: 1px;
    transition: 0.3s ease;
}