/*
Theme Name: Baker's Press
Author: Nabil
Description: A minimalist food blog theme inspired by Sally's Baking Addiction.
Version: 1.0
*/

:root {
    --brand-mint: #4ecdc4;
    --brand-pink: #f7d7f0;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-offwhite: #f8f9fa;
    --container: 1100px;
}

/* --- Base --- */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    margin: 0;
    background: var(--bg-white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

a { color: var(--text-dark); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--brand-mint); }

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.site-header { text-align: center; padding: 40px 0; border-bottom: 5px solid var(--brand-mint); }
.site-title { font-size: 3.5rem; margin: 0; }
.site-description { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-top: 10px; }

/* --- Navigation --- */
.main-navigation { border-bottom: 1px solid #eee; margin-bottom: 40px; }
.main-navigation ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center; flex-wrap: wrap;
}
.main-navigation li a {
    display: block; padding: 15px 25px;
    text-transform: uppercase; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
}
.main-navigation li a:hover { background: var(--brand-pink); }

/* --- Content Grid --- */
.site-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 Content, 1/3 Sidebar */
    gap: 50px;
    padding-bottom: 50px;
}

/* --- Posts --- */
.post { margin-bottom: 60px; }
.post-thumbnail img { width: 100%; height: auto; border-radius: 4px; margin-bottom: 20px; }
.entry-title { font-size: 2.2rem; text-align: center; margin-bottom: 10px; }
.entry-meta { text-align: center; color: #888; font-size: 0.9rem; margin-bottom: 25px; font-style: italic; }
.entry-content { font-size: 1.1rem; }
.read-more-btn {
    display: inline-block; background: var(--brand-mint); color: #fff;
    padding: 10px 25px; margin-top: 20px; font-weight: bold; border-radius: 3px;
}
.read-more-btn:hover { background: #333; color: #fff; }

/* --- Sidebar --- */
.widget { margin-bottom: 40px; padding: 20px; background: var(--bg-offwhite); border: 1px solid #eee; }
.widget-title { text-align: center; text-transform: uppercase; border-bottom: 2px solid var(--brand-pink); padding-bottom: 10px; margin-bottom: 20px; font-size: 1.1rem; }

/* --- Footer --- */
.site-footer { background: #333; color: #fff; text-align: center; padding: 40px 0; margin-top: 50px; }
.site-footer p { margin: 0; font-size: 0.9rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .site-content { grid-template-columns: 1fr; }
    .site-title { font-size: 2.5rem; }
}