:root {
  --bh-bg-main: #F6F1EA;
  --bh-bg-card: #FFFFFF;
  --bh-bg-dark: #3B2A1E;
  --bh-text-main: #2B2B2B;
  --bh-text-muted: #6E6259;
  --bh-text-light: #F6F1EA;
  --bh-accent-maroon: #6B1E23;
  --bh-accent-oak: #8B5A2B;
  --bh-radius: 10px;
  --bh-container: 1120px; }

header {
  background: var(--bh-bg-dark);
  color: var(--bh-text-light);
  padding: 18px 10%;
  margin: auto;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-areas: "logo social" 	"sitename menuTop"; }
  @media (max-width: 790px) {
    header {
      padding: 5px;
      text-align: center; } }
  @media (max-width: 790px) {
    header {
      grid-template-columns: 1fr;
      grid-template-areas: "logo" 	"sitename" 	"social"  	"menuTop"; } }
  header .logo {
    grid-area: logo; }
    header .logo img {
      max-width: 100%; }
  header .sitename {
    grid-area: sitename; }
  header .menu {
    grid-area: menuTop;
    text-align: right;
    display: flex;
    text-align: center;
    align-content: center;
    align-items: center;
    align-self: center;
    margin: auto; }
    @media (min-width: 1040px) {
      header .menu {
        margin: 0;
        display: flex;
        justify-content: flex-end;
        /* This pushes items to the right */ } }
  header .social {
    grid-area: social; }
    @media (min-width: 1040px) {
      header .social {
        margin: 0;
        display: flex;
        justify-content: flex-end;
        /* This pushes items to the right */ } }

.hero {
  padding: 90px 5%;
  margin: auto;
  background: var(--bh-bg-main); }
  @media (max-width: 790px) {
    .hero {
      padding: 30px 5%; } }
  .hero .herobox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title img" 		"txt img"; }
    @media (max-width: 790px) {
      .hero .herobox {
        grid-template-columns: 1fr;
        grid-template-areas: "title" 			"img" 			"txt"; } }
    .hero .herobox .title {
      grid-area: title; }
    .hero .herobox .txt {
      grid-area: txt; }
    .hero .herobox .img {
      grid-area: img; }
      .hero .herobox .img img {
        max-width: 100%; }

* {
  box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--bh-text-main);
  background: var(--bh-bg-main);
  line-height: 1.7;
  font-size: 1.3rem; }

h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.25;
  margin: 0 0 0.6em; }

a {
  color: var(--bh-accent-maroon);
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

.bh-container {
  /*
  width: min(calc(100% - 40px), var(--bh-container));
  margin-inline:auto;
  */
  width: calc(100% - 20%);
  max-width: var(--pg-container);
  margin-inline: auto; }
  @media (max-width: 790px) {
    .bh-container {
      width: calc(100% - 5%); } }
  .bh-container .bh_project_single {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-gap: 2vh; }
    .bh-container .bh_project_single .left .img img {
      width: 100%;
      height: auto; }
    .bh-container .bh_project_single .left .gallery .bh-gallery2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: .5vh; }
      .bh-container .bh_project_single .left .gallery .bh-gallery2 img {
        width: 100%;
        height: auto; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

@media (min-width: 601px) {
  img.alignright {
    float: right;
    margin: 0 0 1em 1em; }
  img.alignleft {
    float: left;
    margin: 0 1em 1em 0; }
  img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .alignright {
    float: right; }
  .alignleft {
    float: left; }
  .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .alignleft {
    float: left;
    display: inline;
    margin: 7px 28px 28px 0; }
  .alignright {
    float: right;
    display: inline;
    margin: 7px 0 28px 28px; }
  .aligncenter {
    clear: both;
    display: block;
    margin: 7px auto; } }

.bh-related {
  margin-top: 80px;
  margin: 0 10%; }
  .bh-related .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px; }
    .bh-related .container .bh-card {
      text-align: center; }

.bh-related .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 30px; }
  .bh-related .container .bh-card img {
    width: 100%;
    height: auto; }

/* Header Navigation */
.bh-nav {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0; }

.bh-nav a {
  color: var(--bh-text-light);
  font-weight: 500;
  letter-spacing: .2px; }

.bh-nav a:hover {
  text-decoration: underline; }

.bh-btn-primary {
  display: inline-block;
  background: var(--bh-accent-maroon);
  color: #fff;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 18px; }

.bh-btn-primary:hover {
  background: #56171b;
  text-decoration: none; }

article h2 {
  margin-top: 2.4em;
  border-bottom: 2px solid var(--bh-accent-oak);
  padding-bottom: .3em; }

article ul {
  padding-left: 1.2em; }

article li {
  margin-bottom: .4em; }

.bh-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0 40px; }

.bh-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); }

.bh-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .bh-card .img {
    display: block;
    text-align: center; }
  .bh-card .nfo {
    display: block;
    text-align: center; }

.bh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14); }

.bh-available-badge {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--bh-accent-oak);
  color: #fff;
  padding: 6px 10px;
  border-radius: 3px; }

.bh-content {
  margin-bottom: 1.4em;
  font-size: 1.3rem; }

/* Blog Article Styling */
.bh-blog-article .container {
  display: block;
  grid-template-columns: 33% 1fr;
  grid-gap: 1vh; }
  .bh-blog-article .container .img {
    overflow: hidden; }
    .bh-blog-article .container .img img {
      width: 100%;
      height: auto; }
  .bh-blog-article .container .text {
    padding: 0;
    margin: 0; }
    .bh-blog-article .container .text hr {
      direction: none !important; }
    .bh-blog-article .container .text p {
      line-height: 2rem;
      padding: 0;
      margin: 0; }

.bh-blog-meta {
  color: var(--bh-text-muted);
  font-size: .9rem;
  margin-bottom: 30px; }

.bh-blog-content p {
  margin-bottom: 1.4em; }

.bh-blog-content h2 {
  margin-top: 2.6em;
  margin-bottom: .6em;
  border-bottom: 2px solid var(--bh-accent-oak);
  padding-bottom: .3em; }

.bh-blog-content h3 {
  margin-top: 2em; }

.bh-blog-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0; }

.bh-blog-content ul,
.bh-blog-content ol {
  padding-left: 1.2em;
  margin-bottom: 1.4em; }

.bh-blog-content li {
  margin-bottom: .4em; }

/*# sourceMappingURL=main.map */