/*
Theme Name: Jamcoder Main
Theme URI: https://jamcoder.id/
Author: Jamcoder
Author URI: https://jamcoder.id/
Description: Tema ini adalah tema dasar untuk Jamcoder yang menyediakan struktur dan gaya dasar untuk situs web.
Tags: jamcoder, tema dasar, wordpress
Requires at least: 5.0
Tested up to: 6.3
Requires PHP: 7.4 
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jamcoder-main
Domain Path: /languages

*/

/* CSS Global */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: Arial, sans-serif;
 line-height: 1.6;
 color: #333;
}

/* Layout Dasar */
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* Header */
#site-header {
 background: #333;
 color: #fff;
 padding: 20px 0;
}

.site-title a {
 color: #fff;
 text-decoration: none;
 font-size: 2em;
}

/* Navigation */
#primary-menu {
 list-style: none;
 display: flex;
 gap: 20px;
}

#primary-menu a {
 color: #fff;
 text-decoration: none;
 padding: 5px 10px;
}

/* Content */
#main-content {
 padding: 40px 0;
}

article {
 margin-bottom: 40px;
 padding-bottom: 40px;
 border-bottom: 1px solid #eee;
}

/* Sidebar */
.widget-area {
 background: #f4f4f4;
 padding: 20px;
}

.widget {
 margin-bottom: 30px;
}

/* Footer */
#site-footer {
 background: #333;
 color: #fff;
 text-align: center;
 padding: 20px 0;
}