/*
Theme Name: Senil Theme
Author: Senil Info System
Version: 1.1
Description: Minimal Mint Green theme for Senil Info System.
*/

/* Import Google Fonts - Zen Maru Gothic for Cute/Round Vibe */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
    --primary-color: #98FF98;
    /* Mint Green */
    --accent-color: #00897b;
    --bg-color: #f0f7f4;
    --text-color: #333;
    --white: #ffffff;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--white) 0%, #e0f2f1 100%);
    border-bottom: 3px solid var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    text-decoration: none;
    color: var(--accent-color);
}

/* Main */
.site-main {
    padding: 40px 0;
    min-height: 80vh;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
.site-footer {
    background-color: var(--white);
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* -------------------------------------------------------------------------- */
/*  Plugin Integration: Single Post & Footer (Migrated)                       */
/* -------------------------------------------------------------------------- */

/* Cinematic Layout: Applied to Single Posts */
body.single-post .site-main .content-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto !important;
    /* Force Centering */
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Typography for Single Posts */
body.single-post h2 {
    border-left: 5px solid #10b981;
    /* Mint Green */
    padding-left: 15px;
    font-size: 1.8rem;
    margin: 50px 0 30px;
    line-height: 1.4;
    color: #00897b;
}

body.single-post h3 {
    border-left: 4px solid #a8e6cf;
    /* Light Mint */
    padding-left: 12px;
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: #333;
}

body.single-post p {
    line-height: 2.0;
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #4b5563;
}

/* Image Styling */
body.single-post img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

/* Premium Footer Styles - High Specificity */
footer.site-footer.sev-portal-footer {
    background: #2c3e50 !important;
    color: #fff !important;
    padding: 60px 20px !important;
    text-align: center;
    border-top: 3px solid #10b981 !important;
    /* Mint Green */
    margin-top: 0;
}

.sev-footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    /* Use Outfit for English Logo if available, or Zen Maru */
}

.sev-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sev-footer-nav li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.sev-footer-nav li a:hover {
    color: #10b981;
}

.sev-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}