/*
Theme Name: SandalWood Light Theme
Theme URI: https://sandalwood.id
Author: SandalWood IT
Description: Tema elegan dan bersih untuk menyamakan visual blog dengan landing page SandalWood.
Version: 2.0
*/

:root { 
    --gold: #C5A059; 
    --bg-color: #FDFBF7; 
    --text-main: #333333; 
    --text-muted: #666666; 
    --font-heading: 'Playfair Display', serif; 
    --font-body: 'Montserrat', sans-serif; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    font-family: var(--font-body); 
    line-height: 1.8; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    text-align: center;
}

/* HEADER */
header.site-header { 
    padding: 3rem 5% 2rem; 
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}
header.site-header img.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}
header.site-header h1 a { 
    color: var(--gold); 
    text-decoration: none; 
    font-family: var(--font-heading);
    font-size: 2.2rem; 
    font-weight: 700; 
}
header.site-header p.tagline { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    margin-top: 0.5rem; 
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* MAIN CONTENT */
main.site-main { 
    flex: 1; 
    max-width: 900px; 
    margin: 4rem auto; 
    padding: 0 20px; 
    width: 100%; 
}

.post-item { 
    margin-bottom: 3.5rem; 
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #eaeaea;
}
.post-item:last-child { border-bottom: none; }

.post-item h2 { 
    margin-bottom: 15px; 
    font-family: var(--font-heading);
}
.post-item h2 a { 
    color: var(--text-main); 
    text-decoration: none; 
    font-size: 2rem; 
    transition: color 0.3s; 
}
.post-item h2 a:hover { color: var(--gold); }

.post-meta { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin-bottom: 20px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post-excerpt { 
    color: var(--text-muted); 
    margin-bottom: 20px; 
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.read-more { 
    display: inline-block; 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: all 0.3s;
}
.read-more:hover { color: var(--text-main); border-color: var(--text-main); }

/* FOOTER */
footer.site-footer { 
    background-color: #fff; 
    color: var(--text-main); 
    padding: 4rem 20px 2rem; 
    border-top: 1px solid #eaeaea; 
}

.footer-columns { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 3rem; 
    max-width: 1000px; 
    margin: 0 auto 3rem auto; 
}
.footer-col { 
    flex: 1; 
    min-width: 280px; 
}
.footer-col h3 { 
    color: var(--gold); 
    margin-bottom: 1rem; 
    font-family: var(--font-heading);
    font-size: 1.3rem; 
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.copyright { 
    margin-top: 2rem; 
    color: #999; 
    font-size: 0.85rem;
}