/* Reset stylów */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Główny kontener */
.main-content {
    margin: 100px auto 0 auto;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    font-family: 'Fredoka', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

body.menu-open .main-content {
    margin-top: 330px; /* Wysokość headera, gdy menu jest otwarte (powinna odpowiadać max-height z nav.menu-open) */
}

/* Stylizacja artykułu */
.main-content article {
    display: block;
}

/* Nagłówek główny */
.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f86969;
    text-align: center;
    font-weight: 700;
}

/* Krótki opis artykułu */
.article-summary {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}



/* Nagłówki sekcji */
.main-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f86969;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Akapity */
.main-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Listy numerowane */
.main-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.main-content ol li {
    margin-bottom: 10px;
}

/* Obrazy w artykule */
.main-content figure {
    margin: 40px 0;
    text-align: center;
}

.main-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.main-content figure figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* Pogrubienie */
.main-content strong {
    font-weight: bold;
}

/* Styl dla przycisku "Back to Top" */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    background-color: #f86969;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 24px;
}

.back-to-top:hover {
    background-color: #d9534f;
}

/* Spis treści */
.table-of-contents {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #fafafa;
}

.table-of-contents h2 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
    text-align: left; /* Upewnia się, że nagłówek jest wyrównany do lewej */
}

.table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
}

.table-of-contents ul li {
    margin-bottom: 10px;
}

.table-of-contents ul li a {
    color: #333;
    text-decoration: none;
}

.table-of-contents ul li a:hover {
    color: #f86969;
    text-decoration: underline;
}

/* Responsywność */
@media (max-width: 800px) {
    .main-content {
        padding: 15px;
        margin-top: 200px;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content h2 {
        font-size: 1.5rem;
    }

    .main-content p {
        font-size: 0.95rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .back-to-top i {
        font-size: 20px;
    }
}
