/* ================================================
   SLANGPUNS.COM — Custom CSS
   Colors: Navy #0A1628 | Red #E63946 | Yellow #FFD23F
   ================================================ */

:root {
    --sp-navy:   #0A1628;
    --sp-navy2:  #112240;
    --sp-red:    #E63946;
    --sp-red2:   #c1121f;
    --sp-yellow: #FFD23F;
    --sp-yellow2:#f5a623;
    --sp-white:  #FFFFFF;
    --sp-gray:   #F8F9FA;
    --sp-border: #dee2e6;
    --sp-muted:  #6c757d;
    --sp-text:   #1a1a2e;
}

/* ── HEADER ENHANCEMENTS ── */
.site-header {
    border-bottom: 3px solid var(--sp-red) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
}

.site-header .inside-header {
    padding: 0 30px !important;
}

/* Logo text */
.main-title a,
.site-branding a {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 30px !important;
    letter-spacing: 2px !important;
    color: #fff !important;
}

/* Nav links */
.main-navigation a {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 8px 14px !important;
    border-radius: 5px !important;
    transition: all 0.2s !important;
    color: rgba(255,255,255,0.8) !important;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.08) !important;
    color: var(--sp-yellow) !important;
}

.main-navigation .current-menu-item > a {
    color: var(--sp-yellow) !important;
    background: rgba(255,210,63,0.1) !important;
}

/* ── CATEGORIES BAR ── */
.sp-categories-bar {
    background: rgba(0,0,0,0.28);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.sp-categories-bar::-webkit-scrollbar { display: none; }

.sp-categories-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.sp-cat-menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.sp-cat-menu li { margin: 0 !important; }

.sp-cat-menu a {
    display: block !important;
    color: rgba(255,255,255,0.55) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    text-decoration: none !important;
    padding: 10px 16px !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
}

.sp-cat-menu a:hover {
    color: #fff !important;
    border-bottom-color: var(--sp-red) !important;
    background: transparent !important;
}

.sp-cat-menu .current-menu-item a,
.sp-cat-menu .current-cat a {
    color: var(--sp-yellow) !important;
    border-bottom-color: var(--sp-yellow) !important;
}

/* ── FOOTER ── */
.sp-footer {
    background: var(--sp-navy);
    border-top: 3px solid var(--sp-red);
    margin-top: 40px;
    font-family: 'DM Sans', sans-serif;
}

/* Ticker */
.sp-ticker-wrap {
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    padding: 10px 0;
}

.sp-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: sp-ticker 35s linear infinite;
}

@keyframes sp-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sp-tick-item {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    padding: 0 24px;
    white-space: nowrap;
}

.sp-tick-item strong {
    color: var(--sp-yellow);
    font-weight: 700;
    font-size: 13px;
}

.sp-tick-dot {
    color: var(--sp-red);
    font-size: 8px;
    padding: 0 4px;
    opacity: 0.5;
}

/* Footer main */
.sp-footer-main {
    padding: 50px 0 40px;
}

.sp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand col */
.sf-logo {
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 14px;
}

.sf-logo span { color: var(--sp-yellow); }

.sf-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 280px;
}

.sf-social {
    display: flex;
    gap: 8px;
}

.sf-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    transition: all 0.2s;
}

.sf-social a:hover {
    background: var(--sp-red);
    border-color: var(--sp-red);
    color: #fff;
}

/* Footer columns */
.sf-col h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 17px;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sf-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-links li { margin: 0 !important; }

.sf-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sf-links a::before {
    content: "›";
    color: var(--sp-red);
    font-size: 15px;
    line-height: 1;
}

.sf-links a:hover { color: var(--sp-yellow); }

/* Footer bottom */
.sp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
}

.sp-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.sf-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.sf-copy a {
    color: var(--sp-yellow);
    text-decoration: none;
}

.sf-bottom-links {
    display: flex;
    gap: 20px;
}

.sf-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.sf-bottom-links a:hover { color: var(--sp-yellow); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .sp-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .sf-brand { grid-column: 1 / -1; }
    .sp-footer-bottom-inner { flex-direction: column; text-align: center; }
    .sf-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .site-header .inside-header { padding: 0 15px !important; }
}

@media (max-width: 480px) {
    .sp-footer-inner { grid-template-columns: 1fr; }
}
