/*
	c19
	style_m6.css
	since june 2025
	loads after the unchanged style.css of the underscores.me theme
*/

:root {
  --dark-blue-color: #2f3443;
  --light-blue-color: #dbecff;
}

body {
  background-color: #ffffff;
  height: 100vh;
  color: #000000;
  font-size: 20px;
  line-height: 1.7;
  font-family: "nimbus-sans";
  #page {
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow: hidden;
    #content {
      position: relative;
      flex: 1;
      z-index: 1;
      #primary {
        position: relative;
        z-index: 10;
        margin-right: auto;
        margin-left: auto;
      }
    }
  }
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  clear: both;
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

*:focus {
  outline: none !important;
}

header {
  z-index: 100;
  width: 100%;
  font-size: 17px;
  .header-inner {
    display: none;
    position: relative;
    justify-content: space-between;
    margin-inline: auto;
    padding-right: 4%;
    padding-left: 4%;
    max-width: calc(1050px + 8%);

    @media (width >= 920px) {
      display: flex;
    }
    .contact {
      > p:first-child {
        > a:first-child {
          position: static;
          padding: 0;
          &:hover {
            background-color: transparent;
          }
        }
      }
    }
    a {
      position: relative;
      left: -4px;
      padding: 4px;
      &:hover {
        background-color: var(--light-blue-color);
        text-decoration: none;
      }
    }
	  a.button-link {
	background: #2F3443;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px 0;
    display: inline-block;
		  &:hover {
			outline: 2px #2F3443 solid;
            background: white;
            color: #2F3443;
		  }
	  }
    .updates {
      text-align: right;
      margin-top: 3px;
      a {
        position: relative;
        right: -4px;
        left: 0;
        padding: 4px;
        text-decoration: underline;
        &:hover {
          text-decoration: none;
        }
      }
    }
  }
  .header-mobile {
    display: flex;
    @media (width >= 920px) {
      display: none;
    }
    justify-content: center;
    gap: 25px;
    padding-top: 36px;
    padding-bottom: 36px;
    @media (width < 400px) {
      gap: 15px;
    }

    img {
      width: 70px;
      @media (width < 400px) {
        width: 50px;
      }
    }
    .headline {
      margin-top: 4px;
      margin-bottom: -4px;
      font-weight: bold;
      font-size: 26px;
      @media (width < 400px) {
        font-size: 23px;
      }
    }
    .subheadline {
      @media (width < 400px) {
        font-size: 15px;
      }
    }
  }
}

footer {
  background-color: #e8e8e8;
  overflow: auto;
  color: #000;
  text-align: center;
  .shadow {
    display: none;
    @media (width >= 920px) {
      display: block;
    }
  }
  img {
    width: 116px;
  }
  a {
    text-decoration: none;
    &:hover {
      background: var(--light-blue-color);
      text-decoration: none;
    }
  }
  .footer-desktop {
    display: none;
    padding-top: 50px;
    padding-bottom: 50px;
    @media (width >= 920px) {
      display: block;
    }
    .lodge {
      margin-top: 25px;
      font-weight: bold;
      font-size: 25px;
    }
    .address {
      margin-bottom: 4px;
      font-size: 16px;
    }
    .email-and-phone {
      font-size: 17px;
      a {
        padding: 4px;
      }
    }
    > p:last-child {
      a {
        padding: 4px;
        font-size: 17px;
        text-transform: uppercase;
      }
    }
  }
  .footer-mobile {
    padding-top: 11px;
    padding-right: 4%;
    padding-bottom: 5px;
    padding-left: 4%;
    @media (width >= 920px) {
      display: none;
    }
    .updates {
      .desktop-only {
        display: none !important;
      }
    }
    .contact {
      .address-two {
        margin-top: -5px;
        margin-bottom: 12px;
      }
      .phone {
        margin-top: 10px;
        margin-bottom: 4px;
      }
      p {
        a {
          background-color: var(--light-blue-color);
          padding: 4px;
          font-weight: bold;
        }
      }
    }
  }
}

.home-banner {
  margin-inline: auto;
  background-color: var(--dark-blue-color);
  color: #fff;
  font-family: "adobe-caslon-pro";
  letter-spacing: 1px;
  .shadow:first-child {
    margin-bottom: -10px;
    @media (width >= 920px) {
      margin-bottom: 20px;
    }
    .ink {
      opacity: 0.9;
      filter: blur(5.8px);
    }
  }
  .shadow:last-child {
    transform: scaleY(-1);
    margin-top: -20px;
    @media (width >= 920px) {
      margin-top: 20px;
    }

    .ink {
      opacity: 0.9;
      filter: blur(5.8px);
    }
  }
  .inner {
    display: flex;
    margin-inline: auto;
    padding-right: 4%;
    padding-left: 4%;
	 flex-direction:column;
	  align-items: center;
    @media (width >= 920px) {
	   flex-direction:row;
      padding-right: 4%;
      padding-left: 4%;
      max-width: calc(1050px + 8%);
    }

    a {
      @media (width <= 920px) {
/*      styles for a tag    */
	justify-content: center;
    display: flex;
		  
      }
      flex-shrink: 0;
      width: 260px;
      img {
        display: block;
        border: 5px solid var(--light-blue-color);
        padding: 5px;
        width: 260px;
		@media (width <= 920px) {
		    width: 220px;
           margin-bottom: 27px;
		  }
      }
    }
    p {
      font-size: 18.3px;
      text-align: center;
      @media (width >= 920px) {
        margin-left: 30px;
        padding-top: 8px;
        padding-right: 0px;
        padding-left: 0;
        font-size: 20.3px;
        text-align: left;
      }
      br {
        display: none;
        @media (width >= 1096px) {
          display: block;
        }
      }
      span {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 7px;
      }
    }
    > p:first-of-type {
      margin-top: 0;
    }
    > p:last-of-type {
      margin-bottom: 0;
    }
  }
}

.home-links {
  a {
    display: block;
    border-bottom: 1px solid var(--dark-blue-color);
    padding-right: 4%;
    padding-left: 4%;
    width: 100%;
    &:hover {
      background-color: var(--light-blue-color);
    }
    &:last-child {
      border-bottom: 0;
    }
    .inner {
      display: flex;
      justify-content: space-between;
      margin-right: auto;
      margin-left: auto;
      padding-top: 10px;
      padding-bottom: 25px;
      max-width: 1050px;
      text-align: center;
      @media (width >= 920px) {
        padding-top: 70px;
        padding-bottom: 70px;
        text-align: left;
      }
      > div:first-child {
        flex: 1;
      }
      .headline {
        margin-top: 18px;
        font-weight: bold;
        font-size: 25px;
      }
      .subheadline {
        margin-top: -1px;
        font-size: 18px;
      }
      .text {
        font-size: 18px;
        p {
          margin-top: 8px;
          margin-bottom: 8px;
          line-height: 1.2;
        }
      }
      img {
        display: none;
        flex-shrink: 0;
        align-self: center;
        margin-left: 40px;
        max-width: 260px;
        @media (width >= 920px) {
          display: block;
        }
      }
    }
  }
}

.page-banner {
  width: 100%;
  max-width: none;
  min-height: 260px;
  max-height: 490px;
  object-fit: cover;
}

.page-title {
  margin-right: auto;
  margin-bottom: -8px;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
  max-width: calc(810px + 8%);
  font-size: 42px;
}

.page-content {
  margin: 0 auto;
  padding-right: 4%;
  padding-bottom: 30px;
  padding-left: 4%;
  max-width: calc(810px + 8%);

  h1,
  h2,
  h3,
  h4 {
    margin-top: 20px;
    margin-bottom: 0;
  }

  h1 {
    font-weight: bold;
    font-size: 42px;
  }
  h2 {
    font-weight: normal;
    font-size: 42px;
  }
  h3 {
    font-weight: bold;
    font-size: 42px;
    font-family: adobe-caslon-pro;
  }
  h4 {
    font-weight: normal;
    font-size: 42px;
    font-family: adobe-caslon-pro;
  }

  h1 + ul,
  h2 + ul,
  h3 + ul,
  h4 + ul,
  h5 + ul {
    margin-top: 16px;
  }

  ul {
    clear: none;
    li {
      position: relative;
      left: 30px;
      margin-bottom: 14px;
      max-width: calc(100% - 30px);
      line-height: 1.6;
      list-style-type: none;
      &:before {
        position: absolute;
        top: 7px;
        left: -30px;
        background-color: var(--light-blue-color);
        width: 15px;
        height: 15px;
        content: "";
      }
    }
  }

  a {
    text-decoration: underline;
    &:hover {
      background: var(--light-blue-color);
      text-decoration: none;
    }
  }

  figcaption {
    display: none;
  }
}

.shadow {
  width: 100%;
  height: 50px;
  overflow: hidden;
  .ink {
    position: relative;
    top: -73.5%;
    opacity: 0.4;
    filter: blur(9px);
    margin-right: auto;
    margin-left: auto;
    border-radius: 68%;
    background-color: #000000;
    width: 79.4%;
    height: 100%;
  }
}


/* Custom override CSS */


#masthead .contact p {
	display: flex;
	flex-direction:column;
	justify-content: space-between;
	gap: 3px;
}

#masthead .contact .contact-span {
	 position: relative;
    top: -7px;

}

.home-banner p {
font-size: 18px !important;
	line-height: 2.2
}

.contact-address {
	border-top: 1px solid grey;
	padding-top:12px;
	position: relative;
	top:8px;
}
.footer-desktop p:last-child a {
	text-transform:none !important;
position: relative;
                left: 0;
                padding: 4px;
                text-decoration: underline;
	font-weight:bold;
}

a.button-link {
	background: #2F3443;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px 0;
    display: inline-block;
	
}
a.button-link:hover{
    outline: 2px #2F3443 solid;
    background: white;
    color: #2F3443;
}
a.button-link:focus {
	 outline: 2px #2F3443 solid;
}