/* MarioCMS - Podstawowy arkusz stylów */

/* --- USTAWIENIA GŁÓWNE --- */
body {
    background-color: #111827; /* Ciemnoszare/granatowe tło dla całej strony */
}

/* --- KOLORY MARKI --- */
.text-brand-green {
    color: #6d8b74;
}
.bg-brand-green {
    background-color: #6d8b74;
}
.hover\:bg-brand-dark:hover {
    background-color: #56776c;
}
/* NOWE KLASY DLA ZŁOTEGO KOLORU */
.text-brand-gold {
    color: #D4AF37;
}
.hover\:text-brand-gold:hover {
    color: #D4AF37;
}
.focus\:ring-brand-gold:focus {
    --tw-ring-color: #D4AF37;
}
.focus\:border-brand-gold:focus {
    border-color: #D4AF37;
}


/* --- EFEKT PARALAKSY --- */
.parallax-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}
.parallax-content {
    position: relative;
    z-index: 2;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- MENU MOBILNE --- */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
#mobile-menu.mobile-menu-active {
    max-height: 500px;
}

/* --- STYLE DLA TREŚCI ARTYKUŁÓW --- */
.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f9fafb; /* Jasny tekst dla nagłówków */
    margin-bottom: 1em;
    margin-top: 1.5em;
}
.article-content h1 { font-size: 2.25rem; line-height: 2.5rem; }
.article-content h2 { font-size: 1.875rem; line-height: 2.25rem; }
.article-content h3 { font-size: 1.5rem; line-height: 2rem; }
.article-content h4 { font-size: 1.25rem; line-height: 1.75rem; }

.article-content p {
    margin-bottom: 1.25em;
    line-height: 1.75;
    color: #d1d5db; /* Jaśniejszy tekst dla paragrafów */
}

.article-content ul, .article-content ol {
    margin-left: 1.25rem;
    margin-bottom: 1.25em;
}
.article-content ul {
    list-style-type: disc;
}
.article-content ol {
    list-style-type: decimal;
}
.article-content li {
    margin-bottom: 0.5em;
}

.article-content a {
    color: #D4AF37; /* Złoty kolor dla linków */
    text-decoration: none;
    font-weight: 600;
}
.article-content a:hover {
    text-decoration: underline;
}

.article-content strong, .article-content b {
    font-weight: 700;
    color: #f9fafb;
}

.article-content em, .article-content i {
    font-style: italic;
}

.article-content hr {
    margin-top: 2em;
    margin-bottom: 2em;
    border-color: #374151; /* Ciemniejsza linia */
}
