*,
::before,
::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif, Apple Color Emoji, "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    min-height: 100vh;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    display: grid;
    gap: 3vw;
    grid-template-rows: min-content 1fr min-content;
}

a {
    color: currentColor;
}

footer {
    border-top: 2px dotted;
    text-align: center;
}

header {
    background-color: #ffffff; /* Or your site's main color */
    padding: 0rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.2rem;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(255, 181, 97, 0.13);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation links */
header nav a {
  margin-left: 0rem;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
  transition: color 0.2s ease;
}



.template-homepage main {
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -30px;
}

.skip-link:focus-visible {
    top: 5px;
}

.page-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.page-form :is(textarea, input, select) {
    width: 100%;
    max-width: 500px;
    min-height: 40px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.page-form .helptext {
    font-style: italic;
}

.photo-block {
    display: inline-block;
    margin: 10px;
    width: calc(33% - 20px);
    vertical-align: top;
    text-align: center;
}

/*.photo-block img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    margin: 0 auto;*/
/*}*/

.photo-block {
    display: inline-block;
    margin: 0;
    width: 100%;
}

.photo-block-caption {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
    color: #666;
}
.project-page img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}
.photo-block-text{
    font-size: 0.9rem;
    text-align: left;
    text-decoration-color: #94da3a;
}

body {
    background-color: rgba(255, 181, 97, 0.04);
}

.layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /*border: 1px dashed red;*/
  margin-bottom: 2rem;
}

.column {
    box-sizing: border-box;
    /*border: 1px dashed red;*/
    min-height: 100px; /* just for debugging */
}

.column.one-third {
  flex: 0 0 calc(33.333% - 1rem);
  /*border: 1px dashed pink;*/
}

.column.one-sixth {
    flex: 0 0 calc(100%/6 - 1rem);
}

.column.half {
  flex: 0 0 calc(50% - 1rem);
    /*border: 1px dashed blue;*/
}

.column.two-thirds {
  flex: 0 0 calc(66.666% - 1rem);
  /*border: 1px dashed pink;*/
}

.column.full {
  flex: 0 0 100%;
    /*border: 10px dashed red;*/
}

@media (max-width: 768px) {
  .column {
    flex: 1 1 100%;
  }
}

.cover_image{
    /*max-width: 800px;*/
    width: 60%;
    height: auto;
    /*display: block;*/
}

.df-lightbox-wrapper{background-color:black}