/* GENERAL PAGE STYLE */
body {
    margin: 0;
    display: flex;
    font-family: Arial, sans-serif;
    background-color: #fefefe;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #2b6d2c;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    z-index: 1000;
}

.header h1 {
    margin: 0;
    font-size: 26px;
}

.menu-btn,
.icon-btn {
    font-size: 25px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

/* SIDEBAR */
.sidebar {
    width: 180px;
    background: #f3f8d0;
    padding-top: 80px;
    height: 100vh;
    position: fixed;
    top: 70px;
    left: 0;
}

.sidebar a {
    display: block;
    padding: 14px;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.sidebar a:hover {
    background: #e2e9b9;
}

/* MAIN CONTENT */
.content {
    margin-left: 200px;
    margin-top: 100px;
    padding: 20px;
    width: calc(100% - 200px);
}

/* SECTION HEADERS */
h2 {
    margin-bottom: 5px;
    color: #2b6d2c;
}

.subtitle {
    margin: 4px 0 8px 0;
    font-style: italic;
}

/* LINES */
.line {
    height: 8px;
    background: black;
    margin: 6px 0;
    width: 60%;
}

.line.long {
    width: 90%;
}

.line.short {
    width: 30%;
}

/* IMAGE PLACEHOLDERS */
.img-box {
    width: 150px;
    height: 150px;
    border: 3px solid black;
    background: #eaeaea;
}

.image-row {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    gap: 20px;
    margin-top: 10px;
}
