html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1f1f1f;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

nav a:hover {
    color: #00bcd4;
}

/* ===== SEKCJE ===== */
section {
    padding: 90px 20px;
    max-width: 900px;
    margin: auto;
}

/* ===== HOME / HERO ===== */
#home {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 100px;

    background: linear-gradient(
        135deg,
        #6fa8ff 0%,     /* jasny niebieski */
        #f7a1c4 25%,    /* pastelowy róż */
        #ffffff 50%,    /* biały środek */
        #f7a1c4 75%,    /* pastelowy róż */
        #6fa8ff 100%    /* jasny niebieski */
    );

    color: #1a1a1a;
}

/* ===== AWATAR ===== */
#home img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;

    border: 4px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 0 0 6px rgba(247, 161, 196, 0.35),
        0 0 25px rgba(111, 168, 255, 0.4);

    margin-bottom: 24px;
}

/* ===== TEKST ===== */
h1, h2 {
    color: #00bcd4;
}

/* ===== KONTAKT ===== */
.contact a {
    text-align: center;
    display: block;
    margin: 10px 0;
    color: #00bcd4;
    text-decoration: none;
}

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

/* ===== STOPKA ===== */
footer {
    background: #1f1f1f;
    color: #aaa;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
}
