/* RESET I PODSTAWY */
* { box-sizing: border-box; }
html { scrollbar-gutter: stable; height: 100%; }
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* KONTENER */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* NAGŁÓWEK */
.main-header {
    background: #000;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 30px;
}
.header-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo-main-wrapper { display: flex; flex-direction: column; }
.logo-link { display: flex; align-items: center; gap: 18px; }
.logo-img { height: 55px; width: auto; }
.logo-text-wrapper h1 { color: #ff751f; font-size: 1.7rem; font-weight: 800; margin: 0; letter-spacing: -1px; line-height: 1.1; }
.tagline { color: #666; font-size: 0.75rem; text-transform: uppercase; margin: 2px 0 0 0; font-weight: 600; }

.top-list-mini {
    font-size: 0.65rem;
    color: #ff751f;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    padding-left: 73px;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* AKCJE NAGŁÓWKA */
.header-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.search-form { display: flex; width: 260px; }
.search-form input { background: #1a1a1a; border: 1px solid #333; color: #fff; padding: 8px; border-radius: 6px 0 0 6px; flex-grow: 1; outline: none; }
.search-form button { background: #ff751f; color: #fff; border: none; padding: 0 15px; border-radius: 0 6px 6px 0; cursor: pointer; font-weight: bold; }

.custom-select-wrapper { width: 260px; position: relative; }
.custom-select { background: #1a1a1a; border: 1px solid #333; color: #fff; padding: 8px; border-radius: 6px; cursor: pointer; font-size: 0.9rem; }
.dropdown-list { 
    display: none; position: absolute; width: 100%; background: #1a1a1a; border: 1px solid #333; 
    z-index: 1000; margin-top: 5px; border-radius: 6px; max-height: 160px; overflow-y: auto; 
}
.dropdown-list.show { display: block; }

/* SEKCJA POWITALNA (HERO) */
.welcome-hero {
    display: flex; align-items: center; gap: 40px; background: #1a1a1a; padding: 40px; border-radius: 20px; margin-bottom: 50px; border: 1px solid #222;
}
.author-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid #ff751f; padding: 5px; }
.hero-text h2 { color: #ff751f; margin-top: 0; font-size: 1.8rem; }
.hero-signature { color: #ff751f; font-weight: 800; font-style: italic; }

.section-divider { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: #444; text-align: center; margin-bottom: 30px; }

/* WYNIKI WYSZUKIWANIA SPECJALNE */
.search-section-header {
    background: #222;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    color: #ff751f;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.calendar-search-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.calendar-search-item {
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    display: block;
    transition: 0.2s;
}
.calendar-search-item:hover {
    border-color: #ff751f;
    background: #222;
}
.search-date {
    color: #ff751f;
    font-weight: bold;
    margin-right: 10px;
}
.search-desc {
    color: #ccc;
    font-size: 0.95rem;
}

/* TREŚĆ WPISÓW */
main { flex: 1; }
.main-content { max-width: 800px; margin: 0 auto; }
.story-card { background: #1a1a1a; padding: 35px; border-radius: 14px; border: 1px solid #252525; margin-bottom: 30px; }
.story-card h2 { font-size: 1.6rem; margin: 10px 0; color: #fff; }
.badge {
    background: rgba(255, 117, 31, 0.1); color: #ff751f; padding: 5px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; border: 1px solid rgba(255, 117, 31, 0.2);
}
.read-more { color: #ff751f; font-weight: 700; margin-left: 5px; }

/* PAGINACJA */
.pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin: 40px 0; }
.page-btn { background: #1f1f1f; color: #ff751f; padding: 10px 20px; border-radius: 8px; border: 1px solid #333; font-weight: 700; }

/* STOPKA */
.site-footer {
    background: #000; padding: 50px 0; border-top: 1px solid #222; margin-top: 60px; width: 100%;
}
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-links { display: flex; gap: 30px; margin-bottom: 25px; }
.copyright { color: #888; font-size: 0.95rem; font-weight: 800; }

/* MOBILNOŚĆ */
@media (max-width: 900px) {
    .header-top { flex-direction: column; text-align: center; }
    .welcome-hero { flex-direction: column; text-align: center; padding: 30px 20px; }
    .author-img { width: 140px; height: 140px; }
    .header-actions { width: 100%; align-items: center; }
    .top-list-mini { padding-left: 0; text-align: center; }
}