/* === KOLORY (zmień tutaj, zmieni się wszędzie) === */
:root {
    --bg: #141414;
    --text: #e6e6e6;
    --accent: #c9d1d9;
    --muted: #999999;
    --card-bg: rgba(30, 30, 30, 0.6);
    --border: rgba(255, 255, 255, 0.05);
}

/* === BAZA === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    line-height: 1.7;
}

/* === NAWIGACJA === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(20, 20, 20, 0.9);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text);
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
}

.accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* === SEKCJE (wspólne) === */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* === KARTA (uniwersalna) === */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem;
}

/* === POWITANIE (Hero) === */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    margin-bottom: 2rem;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--muted);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    background: var(--text);
    color: var(--bg);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* === O MNIE === */
.about-card p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.badge {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* === PODRÓŻE === */
.section-desc {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
}

.travel-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.travel-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
}

.travel-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
}

.travel-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.travel-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Link do podstrony */
a.travel-link {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s;
}

a.travel-link:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

/* === KONTAKT === */
.contact-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-btn {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* === STOPKA === */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.85rem;
}

/* === TELEFONY / MAŁE EKRANY === */
@media (max-width: 600px) {
    .nav-links { display: none; }
    #hero h1 { font-size: 2.2rem; }
    .travel-item { flex-direction: column; text-align: center; }
    .travel-icon { margin-right: 0; margin-bottom: 0.8rem; }
}
