/*
Theme Name: BlankSlate Child
Theme URI: https://opencollective.com/blankslate
Template: blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready,one-column,two-columns,custom-menu,featured-images,microformats,sticky-post,threaded-comments,translation-ready
Version: 2026.1775753572
Updated: 2026-04-09 16:52:52

*/
#menu-main-menu {
	display:flex;
	font-family: 'ltc-caslon-pro';
}
#menu-main-menu-1 a {
    color: #000;
    margin-right: 20px;
    /* text-transform: uppercase; */
    text-decoration: none;
    font-size: 18px;
	font-family: 'ltc-caslon-pro';
}
#menu-main-menu a {
	    color: #000;
    margin-right: 20px;
    /* text-transform: uppercase; */
    text-decoration: none;
    font-size: 18px;
}
#container {
	width:1300px;
	max-width:100%;
	padding: 0 30px;
	margin:auto;
}
#header {
	display: flex;
    justify-content: space-between;
	padding: 30px;
	align-items: center
}
#site-title h1 a span {
font-family: "ltc-caslon-pro", serif;
font-weight: 400;
font-style: normal;
font-size:30px;
color:#121212
}

#site-title h1 a {
	text-decoration: none;
}
#search {
	display: none
}
/* =====================================================
   EMBLA CAROUSEL
===================================================== */

.home-carousel {
    width: 100%;
    height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.embla__container {
    display: flex;
    height: 100%;
}

.embla__slide {
    flex: 0 0 100%;
    min-width: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 2rem;

    box-sizing: border-box;
    height: 100%;
}
/* =====================================================
   SINGLE IMAGE
===================================================== */

.embla__slide.single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.embla__slide.single img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: calc(100vh - 80px);
}

/* =====================================================
   DOUBLE IMAGE
===================================================== */

.embla__slide.double {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
}

.embla__slide.double img {
    max-width: calc(50vw - 2rem);
    max-height: calc(100vh - 120px);

    width: auto;
    height: auto;
}

/* =====================================================
   SPACER
===================================================== */

.embla__slide.spacer {
    display: block;
}

/* =====================================================
   NAVIGATION
===================================================== */

.embla__prev,
.embla__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 100;

    border: 0;
    background: transparent;

    cursor: pointer;

    font-size: 2rem;
    line-height: 1;
}

.embla__prev {
    left: 20px;
}

.embla__next {
    right: 20px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .home-carousel {
    height: auto;
    overflow: visible;
  }

  .embla__viewport {
    overflow: visible;
    height: auto;
  }

  .embla__container {
    display: block;
    height: auto;
    transform: none !important;
  }

  .embla__slide {
    display: block;
    height: auto;
    min-width: 0;
    width: 100%;
    margin-bottom: 24px;
  }

  .embla__slide.single,
  .embla__slide.double {
    display: block;
  }

  .embla__slide.single img,
  .embla__slide.double img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-bottom: 24px;
  }

 .embla__slide.double img {
    margin-bottom: 24px;
}

.embla__slide.double img:last-child {
    margin-bottom: 24px;
}

  .embla__prev,
  .embla__next {
    display: none;
  }

}.mobile-menu-toggle,
.mobile-menu-drawer,
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  #header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    background: transparent;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 999;
  }

  .mobile-menu-overlay[hidden] {
    display: none;
  }

  .mobile-menu-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    background: #fff;
    z-index: 1003;
    padding: 2rem;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .mobile-menu-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-menu-drawer[hidden] {
    display: block;
  }

  .mobile-menu-close {
    background: transparent;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: 2rem;
  }

  .mobile-menu-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-drawer li {
    margin-bottom: 1rem;
  }

  .mobile-menu-drawer a {
    text-decoration: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}