/*
Theme Name: Elegan Minimalis
Author: Anda
Description: Tema WordPress kustom dengan desain yang bersih, modern, dan elegan.
Version: 1.0
Text Domain: elegan-minimalis
*/

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Playfair Display', 'Segoe UI', Roboto, serif;
    color: #2c3e50;
    background-color: #f9f9f9;
    line-height: 1.6;
}

a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c5a880; /* Warna aksen emas elegan */
}

/* Layout */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.content-area {
    flex: 3;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Sidebar */
.site-sidebar {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    height: fit-content;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c5a880;
    padding-bottom: 5px;
}

/* Articles & Pages */
.post-card, .page-card {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.entry-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.entry-meta {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.site-footer a {
    color: #c5a880;
}