/*
 * Tema: Mode, Elegan, Feminim
 * Font: 'Playfair Display' (Elegan) dan 'Montserrat' (Modern)
 * Warna: #F9EBEA (Pink Blush), #333 (Hitam Elegan), #AF9E9E (Abu-abu lembut)
 */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fcf8f7; /* Hampir Putih */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

#wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); /* Shadow lembut */
}

/* --- HEADER & MENU --- */
header {
    background-color: #F9EBEA; /* Pink Blush */
    padding: 30px 20px 10px 20px;
    text-align: center;
    border-bottom: 5px solid #AF9E9E;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 5px;
}

nav ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #a0522d;
    border-bottom: 2px solid #a0522d;
}

/* --- STRUKTUR KOLOM (70% - 30%) --- */
#content-area {
    display: flex;
    padding: 25px;
}

#main-content {
    flex: 7; /* 70% */
    padding-right: 30px;
}

#sub-main-content {
    flex: 3; /* 30% */
    padding-left: 30px;
    border-left: 1px solid #eee;
}

/* --- KOMPONEN --- */
.box {
    padding: 20px;
    margin-bottom: 25px;
    background-color: #fff;
    border: 1px solid #f0e6e6; /* Border sangat tipis */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.box-profil img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #F9EBEA;
}

.list-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.list-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 4px;
}

.list-item-blog {
    display: block;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.list-item-blog:last-child {
    border-bottom: none;
}

.list-item-blog img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
    background-color: #AF9E9E; /* Abu-abu lembut */
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}