/* ----------------------------------------------------
CSS ZEN GARDEN ASSIGNMENT - Brandon ABonce

   PAGE BASICS
   Sets overall background, text color, and default font
---------------------------------------------------- */
body {
    background-color: #dde6f5;     /* LIGHT BLUE background (changed for you) */
    font-family: Arial, sans-serif; /* Simple readable font */
    color: #222;                    /* Dark gray text */
    line-height: 1.5;               /* Easier reading */
}

/* ----------------------------------------------------
   HEADER STYLES
   Centers main title + subtitle and adds color
---------------------------------------------------- */
header h1 {
    color: #0055aa;        /* Deep blue main title */
    text-align: center;
}

header h2 {
    color: #0077cc;        /* Lighter blue subtitle */
    text-align: center;
}

/* ----------------------------------------------------
   SECTION HEADINGS
   Simple spacing + color change
---------------------------------------------------- */
h3 {
    color: #333;
    margin-top: 20px;
}

/* ----------------------------------------------------
   MAIN LAYOUT WRAPPER
   Creates a centered white box for the content
---------------------------------------------------- */
.page-wrapper {
    max-width: 900px;    /* Keeps content from stretching too wide */
    margin: 0 auto;      /* Centers the content */
    padding: 20px;
    background: white;   /* Clean white content area */
}

/* ----------------------------------------------------
   SIDEBAR BOX
   Light background + padding to separate it from content
---------------------------------------------------- */
.sidebar {
    background-color: #e8eef5; /* soft blue-gray */
    padding: 15px;
    margin-top: 20px;
}

/* ----------------------------------------------------
   SIDEBAR LISTS
   Removes bullets and adds small spacing
---------------------------------------------------- */
.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 8px;
}

/* ----------------------------------------------------
   LINKS
   Basic blue link styling + hover effect
---------------------------------------------------- */
a {
    color: #0066cc;
}

a:hover {
    color: #004c99;
}
