/*==========================================================
  busy.cards  -  Main stylesheet

  Design philosophy

  * Keep it simple.
  * Use ordinary HTML wherever possible.
  * Avoid clever CSS.
  * One purpose for each rule.
  * Make changes safe for the next caretaker.

==========================================================*/


/*==========================================================
  PAGE
==========================================================*/

body {
    background: #fff2e6;
    color: #663300;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 10px;
}

/* Main page content */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 8px;
    background: #fff8f2;
    border-radius: 5px;
}


/*==========================================================
  HEADINGS
==========================================================*/

h1 {
    font-size: 1.30em;
}

h2 {
    font-size: 1.15em;
    color: #855C33;
}

h3 {
    font-size: 1.05em;
    color: #af7904;
}


/*==========================================================
  LINKS

  Picture links have no underline.
  Text links have a coloured underline.
==========================================================*/

a {
    color: #a64d00;
    text-decoration: none;
}

a:not(:has(img)) {
    border-bottom: 3px solid rgba(200,100,0,.5);
}

a:not(:has(img)):hover {
    color: #7a3a00;
    border-bottom-color: #7a3a00;
}

a:focus {
    outline: 3px solid #e0a874;
    outline-offset: 2px;
}


/*==========================================================
  PHOTOGRAPHS

  Ordinary photographs fill the available page width.

==========================================================*/

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 2px solid #994d00;
    border-radius: 8px;
}

figure {
    margin: 1em 0;
}

figcaption {
    margin-top: 8px;
    text-align: center;
    font-style: italic;
    font-size: 0.95em;
}


/*==========================================================
  MENU

  Used on menu/index pages.

==========================================================*/

.menu {
    list-style: none;
    max-width: 600px;
    margin: 20px auto;
    padding: 0;
}

.menu li {
    margin-bottom: 12px;
}

.menu a {
    display: block;
    padding: 14px 16px;
    background: #fff8f2;
    border: 1px solid #f0d8c2;
    border-radius: 10px;
}


/*==========================================================
  MORE LINKS

==========================================================*/

.morelinks {
    text-align: center;
    max-width: 75ch;
    margin: 10px auto;
}

.morelinks a {
    margin: 0 10px;
}


/*==========================================================
  SHORT QUOTATIONS

==========================================================*/

.quote {
    text-align: center;
    font-style: italic;
}