/*
Theme Name: Manga Night Review
Theme URI: https://manga-night-review.com
Author: Antigravity
Author URI: https://google.deepmind.com
Description: Custom WordPress theme for adult manga reviews, featuring a clean 2-column layout and conversational reviews.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manga-night-review
*/

:root {
    --primary-color: #ff9eb5;
    /* Softer pink */
    --secondary-color: #ffd1dc;
    /* Light pink */
    --accent-color: #ff6b8b;
    /* Vibrante pink */
    --text-color: #554;
    --bg-color: #fff0f5;
    /* Very light pinkish BG */
    --card-bg: #ffffff;
    --font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --radius: 12px;
}

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap');

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: radial-gradient(#ffe4e1 1px, transparent 1px);
    background-size: 20px 20px;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Layout */
.site-container {
    max-width: 1120px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 15px;
}

header.site-header {
    width: 100%;
    background-color: #ff8e8e;
    /* Match the sample screenshot solid color */
    border-radius: var(--radius);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 142, 142, 0.4);
    margin-bottom: 20px;
    border: none;
    background-image: linear-gradient(135deg, #ff8e8e 0%, #ff6b8b 100%);
}

.site-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    /* White text for header */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-title a {
    color: #ffffff;
}

.title-accent {
    color: #fffb00;
    /* Yellow/Gold to stand out against pink */
    font-weight: 900;
    margin: 0 5px;
    display: inline-block;
}

.site-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 5px;
}

.main-content {
    flex: 1;
    min-width: 60%;
}

.sidebar {
    width: 320px;
}

/* Posts */
.post {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.post-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 2px dashed var(--secondary-color);
    padding-bottom: 10px;
}

.post-title a {
    color: var(--text-color);
}

.post-meta {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
    background: #fdfdfd;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.post-thumbnail img {
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(255, 107, 139, 0.3);
}

.read-more:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(255, 107, 139, 0.4);
}

/* Sidebar Widgets */
.widget {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 3px solid #fff;
}

.widget-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 20px;
    background: #fff0f5;
    padding: 8px 15px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Character Profiles in Sidebar */
.character-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #fffbfc;
    border-radius: var(--radius);
    border: 1px solid #ffeef2;
    transition: transform 0.2s;
}

.character-profile:hover {
    transform: scale(1.02);
}

.character-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.character-name {
    font-weight: bold;
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
}

.character-role {
    font-size: 0.75rem;
    color: #999;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-navigation li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .site-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .main-content {
        min-width: 100%;
    }
}