/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

/* ===== CONTAINER ===== */
#container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* ===== HEADER ===== */
#header {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

#site-title a {
    text-decoration: none;
    color: #222;
    font-size: 28px;
    font-weight: bold;
}

/* ===== NAV ===== */
#nav {
    margin-top: 15px;
}

#nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

#nav a {
    text-decoration: none;
    padding: 8px 12px;
    color: #444;
    border-radius: 4px;
    transition: 0.3s;
}

#nav a:hover,
.current_page_item a {
    background: #0073aa;
    color: #fff;
}

/* ===== HERO IMAGE ===== */
#pic {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

#pic img {
    max-width: 100%;
    height: auto;
}

/* ===== MAIN LAYOUT ===== */
#content-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* ===== CONTENT ===== */
#content {
    margin-bottom: 20px;
}

.entry-content {
    font-size: 16px;
}

/* ===== SIDEBARS ===== */
.widget-area {
    background: #fafafa;
    padding: 15px;
    border: 1px solid #eee;
}

.widget-title {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 8px;
}

.widget a {
    color: #0073aa;
    text-decoration: none;
}

.widget a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
#footer {
    border-top: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    font-size: 14px;
}

/* ===== BUTTONS ===== */
button,
input[type="submit"] {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover,
input[type="submit"]:hover {
    background: #005f8d;
}

/* ===== FORM ===== */
input[type="text"] {
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #content-box {
        grid-template-columns: 1fr;
    }

    #nav ul {
        flex-direction: column;
    }

    #pic {
        flex-direction: column;
    }
}