/*
Theme Name: iFlow
Theme URI: https://iflow.com.vn/
Author: iFlow Developer
Author URI: https://iflow.com.vn/
Description: Theme WordPress siêu tối giản, chuẩn SEO Semantic và tối ưu AMP dành cho hệ thống iFlow.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: iflow
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --accent: #3b82f6; /* Xanh công nghệ */
    --glass: rgba(255, 255, 255, 0.8);
    --border: rgba(226, 232, 240, 0.8);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
}

.site-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* HERO SECTION (Trang chủ) */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
}
.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
    line-height: 1.1;
}
.hero-section p {
    color: #64748b;
    font-size: 1.2rem;
}

/* POST CARDS */
.post-loop-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.post-loop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

/* SINGLE POST STYLE */
.entry-content {
    font-size: 1.1rem;
    color: #334155;
}
.entry-content img {
    max-width: 100%;
    border-radius: 16px;
    height: auto;
}