/* --- RT HEADER — STICKY CSS --- */

.rt-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
    
    /* STICKY PARANDUS */
    position: sticky; 
    top: 0;
    z-index: 9999; /* Kõrge väärtus tagab, et header on alati kõige peal */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Õrn vari, et eristuks sisu kohal */
}

/* Kui oled sisse logitud, siis nihutame headerit allapoole, et admin bar seda ei kataks */
.admin-bar .rt-header {
    top: 32px !important;
}

/* Mobiilis on admin bar kõrgem */
@media screen and (max-width: 782px) {
    .admin-bar .rt-header {
        top: 46px !important;
    }
}

.rt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-logo a {
    font-size: 24px;
    font-weight: 800;
    color: #000000 !important;
    text-decoration: none !important;
}

.rt-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.rt-nav a {
    color: #333333 !important;
    font-weight: 600;
    text-decoration: none !important;
}

.rt-btn-outline {
    border: 2px solid #ff6600;
    color: #ff6600 !important;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    margin-right: 10px;
    display: inline-block;
}

.rt-btn-fill {
    background: #ff6600;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-block;
}

/* 4. TÜHIMIKU KAOTAMINE */
body {
    padding-top: 0 !important;
    margin: 0;
    background-color: #ffffff !important;
}

.home .entry-header, 
.home .page-header, 
.site-main > header {
    display: none !important;
}

#primary, .site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ==================== TEKSTIDE PÄÄSTJA ==================== */

#content, #primary, .site-main, article, section {
    color: #2d2d2d !important;
}

.entry-content p, 
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, 
.entry-content li, .entry-content span,
.entry-summary p,
.site-main p, .site-main h1, .site-main h2, .site-main h3 {
    color: #2d2d2d !important;
}

/* ==================== META-ANDMETE PÄÄSTJA ==================== */

.entry-meta, 
.entry-meta a, 
.entry-footer, 
.entry-footer a, 
.posted-on, 
.byline, 
.cat-links, 
.tags-links {
    color: #666666 !important;
}

.entry-meta a:hover, 
.entry-footer a:hover {
    color: #ff6600 !important;
}

.news-card .date, 
.news-card .category {
    color: #666666 !important;
}

/* ==================== LÕPPVIIMISTLUS ==================== */

.entry-content a, 
.news-card a {
    color: #ff6600 !important;
    text-decoration: none !important;
    font-weight: 700;
}

.text-white {
    color: #2d2d2d !important;
}