:root {
  --primary-color: #841617;
  --secondary-color: #DC143C;
  --navbar-bg: #242424;
  --navbar-text: #fffafa;
  --menu-bg: #333333;
  --menu-bg-hover: #3a3a3a;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 Helvetica, Arial, sans-serif;
  color: #111;
  background-color: #fffafa;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-top: 50px;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
}

h1 {
  font-size: 1.8em !important;
}

h2 {
  font-size: 1.5em !important;
}

h3 {
  font-size: 1.3em !important;
}

h4 {
  font-size: 1.15em !important;
}

h5 {
  font-size: 1.1em !important;
}

h6 {
  font-size: 1.05em !important;
}

main {
  display: block;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 20px auto;
  border: 3px solid var(--primary-color);
}
@media screen and (max-width: 600px) {
  .profile-image {
    width: 150px;
    height: 150px;
  }
}

/**
 * Flag image - same height as text
 */
.flag {
  height: 1em;
  width: auto;
  display: inline;
  vertical-align: baseline;
  margin-left: 0.3em;
}

figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:visited {
  color: var(--primary-color);
}
a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: none;
}

b, strong {
  font-weight: bold;
}

.button,
.button a,
a.button,
.button:link,
.button:visited,
.button a:link,
.button a:visited {
  font-weight: normal;
  font-size: 1em !important;
  color: #f8f9fa !important;
  background: var(--menu-bg);
  border-radius: 40px;
  padding: 2px 8px;
  text-decoration: none !important;
  display: inline-block;
}

.button:hover,
.button a:hover,
a.button:hover {
  background: var(--menu-bg-hover) !important;
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

pre, code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}

:not(pre) > code {
  background-color: #f1f1f1;
  color: #333;
  padding: 0.1em 0.3em;
  font-size: 0.85em;
}

pre {
  background-color: #f8f8f8;
  padding: 1rem;
  overflow-x: auto;
  line-height: 1.4;
  tab-size: 2;
  border-left: 3px solid var(--primary-color);
  margin: 1rem 0;
}
pre > code {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.wrapper {
  max-width: calc(800px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: calc(800px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #828282;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: rgb(62.9, 62.9, 62.9);
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}
table tr:nth-child(even) {
  background-color: rgb(247.3, 247.3, 247.3);
}
table th, table td {
  padding: 10px 15px;
}
table th {
  background-color: rgb(239.65, 239.65, 239.65);
  border: 1px solid rgb(221.8, 221.8, 221.8);
  border-bottom-color: rgb(201.4, 201.4, 201.4);
}
table td {
  border: 1px solid #e8e8e8;
}

.site-header {
  background-image: linear-gradient(var(--navbar-bg) 47px, var(--primary-color) 47px, var(--primary-color) 50px);
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  z-index: 10;
  font-family: Helvetica, Arial, sans-serif;
  border-top: none;
  border-bottom: none;
  min-height: 50px;
}

.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  position: relative;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 5px;
}

.site-name {
  color: var(--navbar-text);
  font-size: 20px;
  font-weight: 500;
  font-family: Helvetica, Arial, sans-serif;
  white-space: nowrap;
}

.current-page-title {
  color: var(--navbar-text);
  font-size: 24px;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif;
  white-space: nowrap;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.site-logo img {
  height: 40px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.site-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.4s ease;
  mask: url("/assets/images/logo.png") no-repeat center/contain;
  -webkit-mask: url("/assets/images/logo.png") no-repeat center/contain;
  pointer-events: none;
}
.site-logo:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}
.site-logo:hover::after {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-right: 5px;
  padding-right: 0;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: var(--navbar-text);
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  transition: color 0.3s ease;
  line-height: 1.5;
  white-space: nowrap;
}
.site-nav .page-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 0;
}
@media screen and (max-width: 1100px) {
  .site-nav .nav-trigger {
    display: none;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 12px;
    text-align: center;
    cursor: pointer;
  }
  .site-nav .menu-icon > svg {
    fill: var(--navbar-text);
  }
  .site-nav .trigger {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: var(--menu-bg);
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .site-nav .nav-trigger:checked ~ .trigger {
    display: flex;
  }
  .site-nav .page-link {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--navbar-bg);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: var(--navbar-text);
  }
  .site-nav .page-link:last-child {
    border-bottom: none;
  }
  .site-nav .page-link:hover {
    background-color: var(--menu-bg-hover);
    color: var(--secondary-color);
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .page-link:not(.trigger .page-link) {
    display: none;
  }
}

.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 15px;
  color: #828282;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: calc(30% - 30px / 2);
}

.footer-col-2 {
  width: calc(30% - 30px / 2);
}

.footer-col-3 {
  width: calc(40% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: calc(100% - 30px / 2);
  }
}
.page-content {
  padding: 30px 0;
  flex: 1;
  text-align: justify;
}

.page-heading {
  font-size: 1.8em !important;
  text-align: center !important;
  font-weight: 600 !important;
}

.post-list-heading {
  font-size: 28px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 24px;
}

.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 30px;
  text-align: justify;
}

.highlight {
  background-color: #f8f8f8;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  border-left: 3px solid var(--primary-color);
  margin: 1rem 0;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  line-height: 1.4;
}
.highlight .c {
  color: #6a737d;
  font-style: italic;
}
.highlight .err {
  color: #cb2431;
  background-color: #ffeef0;
}
.highlight .k {
  color: #d73a49;
  font-weight: bold;
}
.highlight .o {
  color: #d73a49;
  font-weight: bold;
}
.highlight .cm {
  color: #6a737d;
  font-style: italic;
}
.highlight .cp {
  color: #6a737d;
  font-weight: bold;
}
.highlight .c1 {
  color: #6a737d;
  font-style: italic;
}
.highlight .cs {
  color: #6a737d;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #cb2431;
  background-color: #ffeef0;
}
.highlight .gd .x {
  color: #cb2431;
  background-color: #fdb8c0;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #cb2431;
}
.highlight .gh {
  color: #6a737d;
  font-weight: bold;
}
.highlight .gi {
  color: #28a745;
  background-color: #f0fff4;
}
.highlight .gi .x {
  color: #28a745;
  background-color: #acf2bd;
}
.highlight .go {
  color: #6a737d;
}
.highlight .gp {
  color: #6a737d;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #6a737d;
  font-weight: bold;
}
.highlight .gt {
  color: #cb2431;
}
.highlight .kc {
  color: #005cc5;
  font-weight: bold;
}
.highlight .kd {
  color: #d73a49;
  font-weight: bold;
}
.highlight .kp {
  color: #d73a49;
  font-weight: bold;
}
.highlight .kr {
  color: #d73a49;
  font-weight: bold;
}
.highlight .kt {
  color: #d73a49;
  font-weight: bold;
}
.highlight .m {
  color: #005cc5;
}
.highlight .s {
  color: #032f62;
}
.highlight .na {
  color: #6f42c1;
}
.highlight .nb {
  color: #005cc5;
}
.highlight .nc {
  color: #6f42c1;
  font-weight: bold;
}
.highlight .no {
  color: #005cc5;
}
.highlight .ni {
  color: #6f42c1;
}
.highlight .ne {
  color: #cb2431;
  font-weight: bold;
}
.highlight .nf {
  color: #6f42c1;
  font-weight: bold;
}
.highlight .nn {
  color: #6a737d;
}
.highlight .nt {
  color: #22863a;
}
.highlight .nv {
  color: #e36209;
}
.highlight .ow {
  color: #d73a49;
  font-weight: bold;
}
.highlight .w {
  color: #6a737d;
}
.highlight .mf {
  color: #005cc5;
}
.highlight .mh {
  color: #005cc5;
}
.highlight .mi {
  color: #005cc5;
}
.highlight .mo {
  color: #005cc5;
}
.highlight .sb {
  color: #032f62;
}
.highlight .sc {
  color: #032f62;
}
.highlight .sd {
  color: #032f62;
}
.highlight .s2 {
  color: #032f62;
}
.highlight .se {
  color: #032f62;
}
.highlight .sh {
  color: #032f62;
}
.highlight .si {
  color: #032f62;
}
.highlight .sx {
  color: #032f62;
}
.highlight .sr {
  color: #032f62;
}
.highlight .s1 {
  color: #032f62;
}
.highlight .ss {
  color: #032f62;
}
.highlight .bp {
  color: #005cc5;
}
.highlight .vc {
  color: #e36209;
}
.highlight .vg {
  color: #e36209;
}
.highlight .vi {
  color: #e36209;
}
.highlight .il {
  color: #005cc5;
}
.highlight pre {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.highlight pre code,
.highlight code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.posts-item {
  margin-bottom: 1.5rem;
}
.posts-item h3 {
  margin-bottom: 0.5rem;
}
.posts-item h3 a {
  color: var(--primary-color);
  text-decoration: none;
}
.posts-item h3 a:hover {
  color: var(--secondary-color);
}
.posts-item .posts-date {
  color: #828282;
  font-size: 14px;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.posts-item .posts-excerpt {
  color: #111;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.posts-item .posts-description {
  color: #111;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.posts-item .posts-photo-count {
  color: #828282;
  font-size: 14px;
  font-style: italic;
}

hr, .separator {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #828282, transparent);
  margin: 2rem 0;
}

.gallery-page .gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}
.gallery-page .gallery-title {
  margin-bottom: 0.5rem;
}
.gallery-page .gallery-description {
  font-size: 1.1rem;
  color: rgb(66.25, 66.25, 66.25);
  margin-bottom: 0.5rem;
}
.gallery-page .gallery-date {
  color: #828282;
  font-style: italic;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
}

.gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-link:hover {
  text-decoration: none;
}

.gallery-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.gallery-thumbnail:hover {
  border-color: var(--secondary-color);
}

.gallery-caption {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.gallery-item:hover .gallery-caption {
  color: var(--secondary-color);
}

.gallery-item:hover .gallery-thumbnail {
  border-color: var(--secondary-color);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.photo-page .photo-header {
  margin-bottom: 1rem;
}
.photo-page .photo-title {
  margin-bottom: 1rem;
  text-align: center;
}

/* Shared navigation bar (used on photo pages and collection pagination) */
.photo-nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0 0 1rem;
  position: relative;
  min-height: 2.2rem;
}
.photo-nav-bar .nav-button.prev-photo {
  justify-self: start;
}
.photo-nav-bar .nav-button.next-photo {
  justify-self: end;
}
.photo-nav-bar .back-to-gallery,
.photo-nav-bar .page-indicator {
  justify-self: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.photo-nav-bar .back-to-gallery:hover {
  color: var(--secondary-color);
}
.photo-nav-bar .page-indicator {
  pointer-events: none;
}
.photo-nav-bar .nav-button {
  font-size: 1.3em; /* unified size (was 1.45em) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
  padding: 0.15rem; /* small padding to enlarge hit area */
  line-height: 1;
}
.photo-nav-bar .nav-button .nav-arrow {
  width: 1.3em; /* unified size */
  height: 1.3em;
  fill: var(--primary-color);
  transition: fill 0.2s, transform 0.15s ease;
}
.photo-nav-bar .nav-button:hover .nav-arrow {
  transform: scale(1.08);
}
.photo-nav-bar .nav-button:hover .nav-arrow {
  fill: var(--secondary-color);
}
.photo-nav-bar .nav-button.disabled, .photo-nav-bar .nav-button.disabled .nav-arrow {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Larger arrows for collection pagination (recipes, galleries list) */
.collection-nav .nav-button {
  font-size: 1.45em;
  padding: 0.2rem;
}

.collection-nav .nav-button .nav-arrow {
  width: 1.45em;
  height: 1.45em;
}

.photo-container {
  text-align: center;
  margin: 2rem 0;
}

.photo-full {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-exif {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}
.photo-exif h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.photo-exif dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}
.photo-exif dt {
  font-weight: 600;
  color: rgb(66.25, 66.25, 66.25);
}
.photo-exif dd {
  margin: 0;
  color: #111;
}

.no-galleries {
  text-align: center;
  color: #828282;
  font-style: italic;
  margin: 3rem 0;
}

@media screen and (max-width: 600px) {
  .galleries-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
  }
  .gallery-thumbnail {
    height: 150px;
  }
  /* Unified mobile adjustments for any photo-nav-bar (photos & collections) */
  .photo-nav-bar {
    padding: 0.25rem 0;
  }
  .photo-nav-bar .nav-button.prev-photo,
  .photo-nav-bar .nav-button.next-photo {
    padding: 2px 4px;
  }
  .photo-nav-bar .nav-button .nav-arrow {
    width: 1.2em;
    height: 1.2em;
  }
  .collection-nav .nav-button .nav-arrow {
    width: 1.3em;
    height: 1.3em;
  }
  .photo-exif dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/*# sourceMappingURL=main.css.map */