/* Import Jost font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

/* Body default font and background */
body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background-color: #0e3d0e; /* Dark forest green */
    color: white;
}

/* Sidebar styling */
.sidebar {
    width: 15%;
    background-color: #7a2e3a; /* Soft burgundy */
    color: white;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 3px 0 6px rgba(0,0,0,0.25);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar a {
    display: block;
    color: #f2d7d9;
    text-decoration: none;
    padding: 8px 0;
    font-size: 1rem;
}

.sidebar a:hover {
    color: #ffffff;
}

/* Submenu links under sidebar items */
.submenu {
    margin-left: 25px;
    margin-top: 5px;
}

.submenu a {
    font-size: 0.85rem;
    color: #f6cfd4;
    padding: 3px 0;
    display: block;
}

.submenu a:hover {
    color: #ffffff;
}

/* Main content styling */
.main-content {
    margin-left: 15%; /* Space for sidebar */
    padding: 0 30px;
    box-sizing: border-box;
    color: white;
    min-height: 100vh;
    background-color: inherit; /* Matches body background */
}

/* Links in main content */
.main-content a:link {
    color: yellow;
}

.main-content a:visited {
    color: orange;
}
