/* Ogólne ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #181818; /* Ciemny motyw */
    color: #f0f0f0; /* Jasny tekst na ciemnym tle */
    padding: 0 20px;
    font-size: 16px;
}

header {
    background-color: #333; /* Ciemny szary */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-top: 0;
}

main {
    margin: 40px 0;
}

/* Sekcja informacyjna */
.info, .pricing, .order, .socials {
    margin-bottom: 40px;
    background-color: #282828; /* Ciemniejsze tło dla sekcji */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.info h2, .pricing h2, .order h2, .socials h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 15px;
}

.info p, .pricing ul, .order p {
    font-size: 1.2em;
    line-height: 1.6;
}

ul {
    list-style-type: none;
}

li {
    background-color: #444; /* Ciemny szary dla elementów listy */
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Sekcja promocji - przekreślona cena */
.old-price {
    text-decoration: line-through;
    color: #ff4c4c; /* Czerwony kolor dla przekreślonej ceny */
    margin-right: 10px;
}

.promo-price {
    color: #4CAF50; /* Zielony dla ceny po obniżce */
    font-weight: bold;
}

/* Ikony społecznościowe */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Sekcja stopki */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Styl dla formularza */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #f0f0f0;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}
