/* Reset stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* Pasek nawigacji */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #141414;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    text-shadow: 0 0 30px #ffffff;
}

.navbar nav a:hover {
    color: #00d9ff;
}

/* Hero sekcja */
/* Mniej miejsca nad nagłówkiem */
.hero {
    text-align: center;
    /* zmniejszamy padding-top — to eliminuje dużą przestrzeń nad h1 */
    padding: 30px 20px 60px 20px; /* top right bottom left */
}

.hero h1 {
    font-size: 64px;
    margin: 0;         /* usuń domyślne marginesy, ustaw wszystko ręcznie */
    padding: 6px 0 8px;/* tylko drobne wewnętrzne odsunięcie jeśli potrzeba */
    text-shadow: 0 0 30px #ffffff;
}


.hero p {
    font-size: 18px;
    color: #b5b5b5;
    margin-bottom: 0px;
}

/* Produkty */
.products {
    padding: 0px;
    margin-bottom: 0px;
}

.products h2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px !important;
    color: #e0bbe8;
    text-shadow: 0 0 15px #ffffff;
    animation: levitate 5s ease-in-out infinite;
}

/* animacja lewitacji */
@keyframes levitate {
    0%   { transform: scale(1) translateY(0); }
    25%  { transform: scale(1.03) translateY(-5px); }
    50%  { transform: scale(0.98) translateY(3px); }
    75%  { transform: scale(1.02) translateY(-3px); }
    100% { transform: scale(1) translateY(0); }
}

.product-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px !important; /* 🔥 TYLKO TO ZMIENIŁEM – odstęp kart */
    width: 100%;
    margin: 20px auto !important;
    padding: 0;
}

.product-card {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    box-shadow: none; /* 🔥 BRAK PODŚWIETLENIA NA START */
    transition: 0.3s ease-in-out;
    text-align: center;
    padding: 0;
    margin: 0 !important; /* 🔥 usuwa sztuczny odstęp */
}



.product-card img {
    background-color: white !important; /* białe tło */
    padding: 10px;                      /* odstęp od krawędzi */
    display: block;
    width: 100%;
    height: 400px;
    object-fit: contain;
    transform: scale(0.6);
    transition: 0.3s;
}

/* usuwa czarne tło za obrazkiem */
.product-card {
    background: linear-gradient(white 100%, #000 55%);
}






/* czarny pasek na tekst */
.product-info {
    background-color: #1a1a1a;
    padding: 40px 20px;
}

.product-card h3 {
    text-align: left;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px #ffffff;
}

.product-card p {
    text-align: left;
    font-size: 14px;
    color: #b5b5b5;
    margin-bottom: 10px;
}

.product-card .price {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.product-card button {
    background-color: #494848;
    border: 1px solid #858585; /* jasna ramka */
    padding: 10px 150px; /* normalna szerokość */
    color: #ffffff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap; /* zapobiega łamaniu tekstu */
    font-family: 'Poppins', sans-serif;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: invert(1); /* robi z nich białe ikonki */
    transition: 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: invert(53%) sepia(91%) saturate(7496%) hue-rotate(175deg) brightness(97%) contrast(101%);
}

.product-card button:hover {
    background-color: #ffffff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.city-title {
    font-family: 'Rubik Wet Paint', cursive;
    font-size: 50px;
    text-align: center;
    color: #da9dec;
    text-shadow: 0 0 15px #ffffff;
    animation: levitate 5s ease-in-out infinite;
    margin: 0;
    padding: 0;
    letter-spacing: 5px;
    text-shadow: 0 0 12px rgba(255,255,255,0.7);
    margin-left: -5px; /* przesuń w lewo, możesz zmieniać wartoś
}




