/*
Theme Name: Landingpedia
Theme URI: https://wordpress.org/themes/landingpedia/
Author: Harry Wahyudi
Author URI: https://landingpedia.com
Description: Tema WordPress Landingpedia yang bersih, sederhana, dan siap untuk dikustomisasi.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landingpedia
*/

/*--------------------------------------------------------------
>>> DESAIN DASAR
--------------------------------------------------------------*/
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
>>> HEADER
--------------------------------------------------------------*/
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.site-title {
    margin: 0;
    font-size: 2.5rem;
}

.site-title a {
    color: #222;
    font-weight: bold;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

/*--------------------------------------------------------------
>>> KONTEN
--------------------------------------------------------------*/
.content-area {
    padding: 20px 0;
}

.post {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-title {
    margin-top: 0;
}

.post-title a {
    color: #222;
}

.post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
>>> FOOTER
--------------------------------------------------------------*/
.site-footer {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

