/* Last Updated: 4 December 2025 */
:root {
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace,'Courier New', Courier;
  --bg: #fff;
  --accent-bg: #f5f7ff;
  --text: #212121;
  --text: #010000;
  --text-light: #585858;
  --border: #d8dae1;
  --accent: #0d47a1;
  --code: #d81b60;
  --preformatted: #444;
  --marked: #ffdd33;
  --disabled: #efefef
}

html {
  font-family: var(--sans-font);
  font-size: 16px;
  scroll-behavior: smooth
}
body {
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.5;
  margin: 0
}
main {
  padding-top: 1rem;
  max-width: 40rem;
  margin: 1rem auto;
  overflow-x:hidden;
  border: 1px solid var(--bg);
  display: flex;
  flex-direction: column;
  font-family:verdana;
  text-rendering: optimizeLegibility;
  background-color: var(--bg);
}
section {
 padding:0.5em;
 order: 1;
}
/* header */
header {
  color: white;
  background-color: white;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  width: 100%;
  z-index: 3;
}
header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

header li a {
  display: block;
  padding: 5px;
  font-family: 'trebuchet ms', Helvetica, sans-serif;
  text-decoration: none;
  color: white;
  background: transparent;
}
header li a:visited {
  color: white;
}
header li a:hover,
header .menu-btn:hover {
  color: black;
  background-color: #f4f4f4;
}

header .logo {
  display: block;
  float: left;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
  color: #0000FF;
}
header #naam {
    font-family: 'trebuchet ms', Helvetica, sans-serif;
}
header #naam em {
  font-style: normal;
  color: #CE1126;
}

/* menu */
header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  background-color: #CE1126;
}

/* menu icon */
header .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  float:right;
  color:pink;
  background-color: #CE1126;
}

header .menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
footer {
  margin:1rem 1rem 2rem 0;
  padding: 1rem;
  font-family: Consolas, Monaco, 'Andale Mono', monospace;
  color: var(--text-light);
  clear: both;
}
h1 { 
  margin: 0.25em 0;
  font-family:verdana;
  font-size: 2rem;
  font-weight: normal;
}
h2 {
    font-size: 1.5rem;
    font-weight: normal;
}
h2#h2comments {
    color:#112112;
}
h2#h2comments::before {
    content: "💬 ";
}
h2.recipes::before {
    content: "🍲 ";
}
h2.lyrics::before {
    content: "🎶 ";
}
h4 {
  color: black;
}
#rnav {
  order: 2;
}
#rnav img {
  max-width:100%;
  max-height:100%;
}
.breadcrumb ul {
    display: flex;
    margin: 0;
    padding: 1em 0;
}
.breadcrumb li {
  list-style-type: none;
  font-size: 95%;
}
.breadcrumb li::after {
    padding: 0;
    margin: 0;
    content: ' > ';
    margin-right: 4px;
}
.breadcrumb li:last-child::after {
    content: "";
}
.lyrhome{
  display: flex;
  flex-direction: column;
}
.lyr{
  margin: 1em;
  padding: 0;
}
.lyr a,.lyr a:visited{
  margin: 0;
  padding: 1em;
  color: white;
  display: block;
  font-size: 1.2em;
  text-decoration: none;
  transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
  border:1px solid #2BA5F7;
  border-radius: 1em;
  background: #2BA5F7;
}
.lyr a:hover{
  color:#2BA5F7;
  background-color: white;
}
.grid4{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.grid4 a,.grid4 a:visited {
  margin:0.25em 0;
  padding: 0.25em 0;
  flex-basis: 45%;
}
.grid4 a:hover{
  color:#CE1126;
}

pre {
  font-family: Consolas, Monaco, 'Andale Mono', monospace;
}
.prevnext{
  color:gray;
}
.prevpost,.nextpost{
  display:block;
  width:100%;
}
.prevpost{
    text-align: left;
}
.nextpost{
    text-align: right;
}
button, .btn {
    display: inline-block;
    font-weight: 400;
    font-family:monospace,'Courier New', Courier;font-size:16px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-green,a.btn-green,a:visited.btn-green {
    color: #000;
    background-color: #5cb85c;
    border:1px solid black;
    border-color: #4cae4c;
    text-decoration: none;
}
.btn-blue,a.btn-blue,a:visited.btn-blue {
    color: #fff;
    background-color: #2BA5F7;
    border:1px solid black;
    border-color: #4cae4c;
    text-decoration: none;
}
button:hover {
    cursor:pointer;
}
.btn:hover {
  color:white;
  background-color: black;
  transition: 0.25s;
}
input[type=text] {
  padding: 0.375rem 0.75rem;
  font-family:var(--mono-font);
  font-size:16px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid black;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.right{
  text-align: right;
}
.small{
  font-size: 90%;
}
.welcome {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2rem;
  font-style: italic;
}
/* Custom */
/* comment */
#comments {clear:both}
.comment {margin:0.5rem 0 1rem 0;font-size:95%}
.comauthr{
    margin:0;
    padding:0.5rem 0;
    font-family:var(--text);
    border-bottom: 2px solid black;
    /* background:#2BA5F7; */
}
.commesg{
  margin:0.5rem 0;
  font-family:var(--text);
  line-height:1.5rem;
  white-space:pre-wrap;
  max-width:99%;
  overflow:scroll;
}
#frmcomment label {padding:3rem 0}
.halfdabba{width:48%;float:left}
#frmcomment textarea{width:92%;height:100px;font-family:monospace,'Courier New', Courier;border:1px solid black}
#frmcomment input{margin:0.75rem 0;padding:0.5rem;width:90%;border:1px solid black}
.grid {
    margin-right:0.5rem;
    display: inline-block;
}
.grid.recipe::before {
    content: '🥣 ';
}
.grid.lyric::before {
    content: '🎵 ';
}

/* Desktop */
@media (min-width: 48em) {
  header, main, footer {
    margin: auto;
    max-width:70rem;
  }
  header ul {
    margin: 0.25em 0.25em;
  }
  header li {
    float: left;
  }
  header li a {
    padding: 0.76em 20px;
    text-transform: uppercase;
    text-align: center;
    display: block;
  }
  header .logo {
    display: inline-block;
  }
  header .menu {
    margin: 0.5rem 0;
    clear: none;
    max-height: none;
    background-color: #2BA5F7;
  }
  header .menu-icon {
    display: none;
  }
  .wrapper {
    background-color: white;
  }
  header .logo {
    float: none;
  }
  header #naam {
    /*
    padding-left: 80px;
    background: url(/physics.svg) no-repeat left;
    */
    font-size: 1.2rem;
  }
  main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 500px;
  }
  section {
    vertical-align: top;
    padding: 1rem;
    width: 48rem;
    background-color: var(--bg);
  }
  .prevnext {
    display:flex;
  }
  .prevpost,.nextpost {
    flex:1 1 1 1;
  }
  #rnav {
    width: 300px;
    margin:0 0 0.5em 0;
    padding: 0;
    float:right;
  }
  footer {
    margin:0 auto;
    padding: 1em 0;
    border-top: 2px dotted gray;
    width: 1070px;
    font-size: 1rem;
  }
  footer p {
    display:inline-block;
  }
  footer nav a,footer nav a:visited {
    margin-right: 1em;
    color:blue;
  }
  .lyrhome{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lyr {
    flex-basis: 45%;
  }
  .grid4 a,.grid4 a:visited {
    flex-basis: 25%;
  }
  .grid4 a:hover{
    color:#CE1126;
  }
}

@media print {
  body {
    margin: 0;
    color: #000;
    background-color: #fff;
  }
  header,footer,nav,form,#comments,.prevnext {
    display: none;
  }
  article {
    column-width: 17em;
    column-gap: 3em;
  }
  * {
    background-image: none !important;
  }
  img, svg {
    display: none !important;
  }
  section::after {
    position:relative;
    margin-top:2rem;
    content: "Printed from Pinoymix.com";
    display: block;
    text-align: center;
  }
}