/*
Mighty CSS
----------
A basic, Bulma-like CSS framework.  Uses REM units.
*/

* { box-sizing: border-box; }
:root {
  /* Color Palette */
  --hex1: #6eeb83;
  --hex2: #9adf5e;
  --hex3: #bdd140;
  --hex4: #dcc12d;
  --hex5: #f6ae2d;
  --gradient: linear-gradient(to right, var(--hex1), var(--hex2), var(--hex3), var(--hex4), var(--hex5));
  --midnight: #29293a;
  --mist: #ececef;
  --evening: #3a3a54;
  --twilight: #54547a;
  --daybreak: #f6f6f8;
}


/* ----  Typesetting  ---- */
@font-face {
  font-family: primary;
  font-weight: 300;
  src: url(./assets/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf);
}
@font-face {
  font-family: primary;
  font-weight: 400;
  src: url(./assets/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf);
}
@font-face {
  font-family: primary;
  font-weight: 500;
  src: url(./assets/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf);
}
@font-face {
  font-family: primary;
  font-weight: 700;
  src: url(./assets/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf);
}

@font-face {
  font-family: font-awesome;
  font-weight: 300;
  src: url(./assets/fonts/fontawesome/FontAwesome-Light.otf);
}
@font-face {
  font-family: font-awesome;
  font-weight: 400;
  src: url(./assets/fonts/fontawesome/FontAwesome-Regular.otf);
}
@font-face {
  font-family: font-awesome;
  font-weight: 700;
  src: url(./assets/fonts/fontawesome/FontAwesome-Solid.otf);
}
@font-face {
  font-family: font-awesome-brands;
  font-weight: 400;
  src: url(./assets/fonts/fontawesome/FontAwesome-Brands.otf);
}


/* ----  Scaling & Mobile Breaks  ---- */
html {
  font-size: 80%;
}
@media screen and (min-width: 399px) {
  html { font-size: 90%; }
}
@media screen and (min-width: 499px) {
  html { font-size: 95%; }
}
@media screen and (min-width: 770px) {
  html { font-size: 80%; }
}
@media screen and (min-width: 1050px) {
  html { font-size: 100%; }
}


/* ----  Page & Background  ---- */
html,
body {
  font-family: primary, monospace;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
html {
  background-color: var(--midnight);
}
body {
  background-color: transparent;
}


/* ----  Element Normalization  ---- */
h1, h2, h3, h4 ,h5 ,h6, p, a {
  margin-top: 0; 
}
a,
a:visited {
  color: inherit;
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline; 
}

hr {
  height: 1px;
  width: 100%;
}

section {
  margin: 0;
  padding: 2rem 5%;
}
section > div {
  margin: 0 auto;
/*  max-width: 59.375rem;*/
  padding: 0;
}


/* ----  Text Modifiers  ---- */
.has-text-primary {
  font-family: primary, monospace;
  font-style: normal;
  font-weight: 400;
}
.has-text-font-awesome {
  font-family: font-awesome;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
}
.has-text-font-awesome-brands {
  font-family: font-awesome-brands;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
}

.has-text-weight-light { font-weight: 300; }
.has-text-weight-regular { font-weight: 400; }
.has-text-weight-medium { font-weight: 500; }
.has-text-weight-bold { font-weight: 700; }

.is-size-0 {
  font-size: 3rem;
  line-height: 1.25;
  margin: 0 0 3rem 0;
}
.is-size-1 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin: 0 0 2.25rem 0;
}
.is-size-2 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 2rem 0;
}
.is-size-3 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 1.75rem 0;
}
.is-size-4 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 1.5rem 0;
}
.is-size-5 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 1.25rem 0;
}
.is-size-6 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}
.is-size-7 {
  font-size: .85rem;
  line-height: 1.25;
  margin: 0 0 .85rem 0;
}
.is-size-8 {
  font-size: .65rem;
  line-height: 1.25;
  margin: 0 0 .65rem 0;
}

.is-uppercase { text-transform: uppercase; }
.is-lowercase { text-transform: lowercase; }

.has-text-left { text-align: left; }
.has-text-centered { text-align: center; }
.has-text-right { text-align: right; }

.has-text-white { color: #FFF !important; }
.has-text-black { color: #000 !important; }
.has-text-hex1 { color: var(--hex1) !important; }
.has-text-hex2 { color: var(--hex2) !important; }
.has-text-hex3 { color: var(--hex3) !important; }
.has-text-hex4 { color: var(--hex4) !important; }
.has-text-hex5 { color: var(--hex5) !important; }
.has-text-daybreak { color: var(--daybreak) !important; }
.has-text-evening { color: var(--evening) !important; }
.has-text-midnight { color: var(--midnight) !important; }
.has-text-mist { color: var(--mist) !important; }
.has-text-twilight { color: var(--twilight) !important; }

.has-letter-spacing-1 { letter-spacing: 0.03125rem; }
.has-letter-spacing-2 { letter-spacing: 0.0125rem; }


/* ----  Element Modifiers  ---- */
.has-background-hex1 { background-color: var(--hex1); }
.has-background-hex2 { background-color: var(--hex2); }
.has-background-hex3 { background-color: var(--hex3); }
.has-background-hex4 { background-color: var(--hex4); }
.has-background-hex5 { background-color: var(--hex5); }
.has-background-gradient { background-color: var(--gradient); }
.has-background-daybreak { background-color: var(--daybreak); }
.has-background-evening { background-color: var(--evening); }
.has-background-midnight { background-color: var(--midnight); }
.has-background-mist { background-color: var(--mist); }
.has-background-twilight { background-color: var(--twilight); }

.has-border-hex1 { border: 0.25rem solid var(--hex1); }
.has-border-hex2 { border: 0.25rem solid var(--hex2); }
.has-border-hex3 { border: 0.25rem solid var(--hex3); }
.has-border-hex4 { border: 0.25rem solid var(--hex4); }
.has-border-hex5 { border: 0.25rem solid var(--hex5); }
.has-border-daybreak { border: 0.25rem solid var(--daybreak); }
.has-border-evening { border: 0.25rem solid var(--evening); }
.has-border-midnight { border: 0.25rem solid var(--midnight); }
.has-border-mist { border: 0.25rem solid var(--mist); }
.has-border-twilight { border: 0.25rem solid var(--twilight); }

.has-border-bottom { border-left:0;border-right:0;border-top:0; }
.has-border-left { border-bottom:0;border-right:0;border-top:0; }
.has-border-right { border-bottom:0;border-left:0;border-top:0; }
.has-border-top { border-bottom:0;border-left:0;border-right:0; }

.has-margin-1 { margin: 2.25rem 0; }
.has-margin-2 { margin: 2rem 0; }
.has-margin-3 { margin: 1.75rem 0; }
.has-margin-4 { margin: 1.5rem 0; }
.has-margin-5 { margin: 1.25rem 0; }
.has-margin-6 { margin: 1rem 0; }
.has-margin-7 { margin: .75rem 0; }
.has-margin-8 { margin: .25rem 0; }
.has-margin-none { margin: 0; }

.has-margin-bottom { margin-left:0;margin-right:0;margin-top:0; }
.has-margin-left { margin-bottom:0;margin-right:0;margin-top:0; }
.has-margin-right { margin-bottom:0;margin-left:0;margin-top:0; }
.has-margin-top { margin-bottom:0;margin-left:0;margin-right:0; }

.has-padding-1 { padding: 2.25rem; }
.has-padding-2 { padding: 2rem; }
.has-padding-3 { padding: 1.75rem; }
.has-padding-4 { padding: 1.5rem; }
.has-padding-5 { padding: 1.25rem; }
.has-padding-6 { padding: 1rem; }
.has-padding-7 { padding: .75rem; }
.has-padding-8 { padding: .25rem; }
.has-padding-none { padding: 0; }

.has-padding-bottom { padding-left:0;padding-right:0;padding-top:0; }
.has-padding-left { padding-bottom:0;padding-right:0;padding-top:0; }
.has-padding-right { padding-bottom:0;padding-left:0;padding-top:0; }
.has-padding-top { padding-bottom:0;padding-left:0;padding-right:0; }

.has-position-relative { position: relative; }
.has-position-absolute { position: absolute; }
.has-position-fixed { position: fixed; }

.is-block { display: block; }
.is-inline-block { display: inline-block; }


/* ----  FlexBox  ---- */
*[class*="is-flex"] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; 
  gap: 1rem; 
/*  justify-content: space-between;*/
}

.is-flex-column {
  flex-direction: column;
}
.is-flex-column > * {
  width: 100%;
}

.is-flex-nowrap {
  flex-wrap: nowrap;
}

.fits-flex-33,
.fits-flex-50,
.fits-flex-66 {
  width: 100%;
}
@media screen and (min-width: 499px) {
  .fits-flex-33 {
/*     width: 50%;  */
    width: calc((100% - 1rem) * .5);
  }
}
@media screen and (min-width: 770px) {
  .fits-flex-33 {
/*     width: 33%; */
   width: calc((100% - 2rem) * .333);
  }
  .fits-flex-50 {
/*     width: 50%; */
   width: calc((100% - 1rem) * .5);
  }
  .fits-flex-66 {
    width: calc((100% - 1rem) * .666);
  }
}

.flex-align-end {
  align-content: flex-end;
  align-items: flex-end;
}
.flex-align-start {
  align-content: flex-start;
  align-items: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}
.flex-justify-start {
  justify-content: flex-start;
}

.flex-grow-0 { flex-grow: 0; }
.flex-grow-1 { flex-grow: 1; }

/* Custom Styles */ 
body {
  color: #FFF; 
} 
.custom-logo-link {
  width: 6rem; 
} 

.recipes.feed article {
  padding-top: 5.75rem; 
}

.recipes.feed article .photo {
  height: 5rem; 
  left: 0; 
  top: 0; 
  width: 100%; 
} 

.recipes.feed article .photo img { 
/*  clip-path: polygon(calc(100% - 9rem) 0, 100% 0, 100% 9rem); */
  height: 100%; 
  object-fit: cover; 
  object-position: center;
  width: 100%; 
} 

article ul, 
article ol {
  margin-left: 0; 
}

.recipe article {
  padding-top: 15rem; 
}

.recipe article .photo {
  height: 14.0rem; 
  left: 0; 
  top: 0; 
  width: 100%; 
}

.recipe article .photo img {
  height: 100%; 
  object-fit: cover; 
  object-position: center;
  width: 100%; 
} 

.recipe article ul li {
  margin-bottom: .25rem;
}
 
.recipe article ol li {
  margin-bottom: .5rem;
}

details summary h3 {
  margin-left: .5rem !important; 
} 

a { text-decoration: underline; }