/* Import czcionki z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    background-color: #f9f4f9; /* Jasny różowy */
    color: #444; /* Ciemniejszy szary tekst */
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Nawigacja --- */
header {
    background-color: #fff;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center; /* Wyśrodkowanie w poziomie */
    align-items: center; /* Wyśrodkowanie w pionie */
    width: 100%;
    flex-wrap: wrap; /* Dla responsywności */
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.logo img {
    max-height: 60px;
    width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Płynny efekt hover */
}

.logo img:hover {
    transform: scale(1.1); /* Powiększenie logo przy najechaniu */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #444; /* Szary kolor na linki */
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5722; /* Pomarańczowy podczas hover */
}

/* Menu hamburgerowe */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #444; /* Ciemniejszy szary */
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #444; /* Szary kolor na linki */
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff5722; /* Pomarańczowy podczas hover */
}/* --- Sekcja "O mnie" --- */
.about-header {
    text-align: center;
    margin-bottom: 2em;
    padding: 1em;
    background-color: #f9f9f9;
    border-bottom: 2px solid #ddd;
}

.about-header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #444;
}

.about-header p {
    font-size: 1.2em;
    color: #666;
}

/* Główna sekcja "O mnie" */
.about-container {
    display: flex;
    justify-content: center;
    gap: 3em;
    padding: 3em;
    align-items: center;
    flex-wrap: wrap; /* Dla responsywności */
}

/* Obraz */
.about-image img {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    margin: 0 auto;
}

.about-image img:hover {
    transform: scale(1.15);
}

/* Tekst */
.about-text {
    max-width: 600px;
    line-height: 1.8;
    font-size: 1.1em;
    text-align: left;
}

/* Sekcja umiejętności */
.skills {
    background-color: #f9f9f9;
    padding: 2em;
    text-align: center;
    margin-top: 2em;
}

.skills h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: #333;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.skills-list li {
    font-size: 1.2em;
    color: #555;
    background-color: #fff;
    padding: 0.5em 1em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Media Queries dla urządzeń mobilnych */
@media (max-width: 768px) {
    .about-container {
        text-align: center;
    }

    .skills-list {
        flex-direction: column;
        gap: 1em;
    }

/* Responsywność */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Ukryj klasyczne menu na urządzeniach mobilnych */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hamburger {
        display: flex; /* Pokaż hamburgera */
    }

    .mobile-menu {
        display: none; /* Menu mobilne ukryte */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu.active {
        display: flex; /* Menu mobilne pokazane, gdy aktywne */
    }
}
/* Responsywność */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Ukryj klasyczne menu na urządzeniach mobilnych */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hamburger {
        display: flex; /* Pokaż hamburgera */
    }

    .mobile-menu {
        display: none; /* Menu mobilne ukryte */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu.active {
        display: flex; /* Menu mobilne pokazane, gdy aktywne */
    }
}	