
:root {
  --primary: #C2865C;
  --secondary: #404933;
  --brown: #573C29;
  --light: #FDF3E9;
  --dark: #29190D;
  --white: #FFFFFF; 
  --black: #000000; 
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light); 
}

img{
  border: 0;
  max-width:100%;
}

a{
  text-decoration: none;
  cursor:pointer;
  transition:.7s color, .7s background-color, .3s opacity;
  color:var(--primary);
}
a:focus{
  outline: none;
}
a:hover, .button:hover{
  transition:.3s color, .3s background-color, .3s opacity;
}


h1{
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px; 
  font-style: normal;
}
h2{
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 2.5rem; 
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3px; 
  font-style: normal;
  margin-bottom: 25px; 
}


h3{
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 1.7rem; 
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3px; 
  font-style: normal;
  margin-bottom: 15px; 
}


h4{
  font-size: 1.2rem;
  font-weight: 600;
  margin: 30px 0 5px 0;
}

h3:first-child, h4:first-child{
  margin-top:0;
}

.heading{
  font-family: "Cinzel", serif;
}

p{
  margin-bottom: 15px;
}
p:last-child{
  margin-bottom:0;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.large{
  font-size: 1.1rem;
}
.small{
  font-size: 0.8rem;
}

.light{
  font-weight:300;
}
.semi{
  font-weight: 600;
}
.italic{
  font-style:italic; 
}

.clear{ clear: both; }

.container{
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  position:relative;
}
.container.narrow{
  max-width: 700px;
}

.flex{
  display:flex;
}
.flex.wrap{
  flex-wrap:wrap;
}
.flex.end{
  align-items:flex-end;
}
.flex.vert{
  align-items:center;
}
.flex .full{
  width: 100%;
}
.flex .half{
  width: 47%;
  margin-right: 6%;
}
.flex .half:nth-child(2n+2){
  margin-right:0;
}

.flex .third{
  width: 32%;
  margin-right: 2%;
}
.flex .third:nth-child(3n+3){
  margin-right:0;
}

.flex.swap{
  flex-direction: row-reverse;
}

.flex.swap .half{
  margin-right:0;
  margin-left:6%;
}
.flex.swap .half:nth-child(2n+2){
  margin-left:0;
}

.grid-5{
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px; 
}

.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-nogap{
  gap: 0 !important;
}

.grid-gap{
  gap: 50px !important;
}
.grid-tight{
  gap: 15px !important; 
}

.grid-vert{
  align-items: center; 
}

.grid-swap div:first-child{
  order: 2;
}
.grid-swap div:last-child{
  order:1;
}


.span-1 {
  grid-column: span 1;
}
.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
.span-4 {
  grid-column: span 4;
}
.span-5 {
  grid-column: span 5;
}


.margined{
  margin: 100px auto;
}
.margined-med{
  margin: 50px auto;
}
.margined-small{
  margin: 25px auto;
}

.topmargin{
  margin-top: 75px;
}
.topmargin-med{
  margin-top: 50px;
}
.topmargin-small{
  margin-top: 25px;
}

.bottommargin{
  margin-bottom: 75px;
}
.bottommargin-med{
  margin-bottom: 50px;
}
.bottommargin-small{
  margin-bottom: 25px;
}

.padded{
  padding: 50px;
}
.padded-med{
  padding: 30px; 
}
.padded-small{
  padding: 15px; 
}
.vpadded{
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.relative{
  position:relative;
}


.buttons{
  display:flex;
  flex-wrap: wrap; 
  gap: 25px; 
}
.buttons.center{
  justify-content: center; 
}

.buttons a, .button{
  display: inline-block;
  border-radius: 3px;
  background-color: var(--light);
  color:var(--secondary);
  padding: 7px 35px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 1.2rem; 
  transition: .7s transform; 
}
.button:hover{
  transform: scale(1.05);
  transition: .3s transform; 
}

.button.green{
  background-color: var(--secondary); 
  color: var(--light);
}
.button.outline{
  background-color: rgba(0,0,0,.2); 
  border: 1px solid var(--light); 
  color: var(--light); 
}


.inline{
  display:inline;
}

.inlineblock{
  display:inline-block;
}

.block{
  display:block;
}
img.block{ width: 100%; } 

.bgcover{
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.v50{ height: 50vh; }
.v80{ height: 80vh; }
.v100{ height: 100vh; }

img.aspect{ object-fit: cover; } 
.aspect-square{ aspect-ratio: 1/1; }
.aspect-video{ aspect-ratio: 16/9; }
.aspect-photo{ aspect-ratio: 4/3; }
.aspect-height{ height: 100%; } 

.bg-primary{ background-color: var(--primary); }
.bg-secondary{ background-color: var(--secondary); }
.bg-brown{ background-color: var(--brown); }

.text-primary{ color: var(--primary); }
.text-secondary{ color: var(--secondary); }
.text-black{ color: var(--black); }
.text-white{ color: var(--white); }
.text-light{ color: var(--light); }

.dev-error{
  border: 2px solid #BF312F;
  background-color: #FCDFDF;
  padding: 10px;
  margin: 20px 0;
  font-size: 13px; 
  line-height: 15px; 
}


header{
  height: 80px; 
  position: relative;
  z-index: 5; 
}

header .logo{
  width: 200px; 
  padding-top: 3px; 
  transition: .7s transform;
}
header .logo img{
  display: block;
  width:100%; 
}
header .logo:hover{
  transform:scale(1.02);
  transition: .3s transform;
}

header nav{
  width: calc(50% - 100px);
}
header nav a{
  display: inline-block;
  height: 80px;
  line-height: 80px; 
  margin-right: 25px; 
  color: var(--light); 
  position:relative; 
}
header nav a:last-child{
  margin-right:0;
}

header nav a .line{
  display: block; 
  position:absolute;
  width: 0;
  height: 1px;
  background-color: var(--light);
  left: 50%;
  bottom: 20px;
  opacity: 0;
  transition: .7s width, .7s left, .7s opacity; 
}
header nav a:hover .line{
  width: 100%;
  left: 0; 
  opacity: 1;
  transition: .3s width, .3s left, .3s opacity; 
}

.overlay{
  position:absolute;
  top: 0;
  left:0;
  width:100%;
  height: 100%; 
  background: rgba(0,0,0,.5);
}

.hills{
  width: 70%; 
  max-width: 300px; 
  margin: 0 auto 25px auto; 
}

.round{
  border-radius: 15px; 
}
.round-small{
  border-radius: 5px; 
}

.feature-icon img{
  display: block;
  height: 60px; 
}

.grid-border{
  border-right: 1px solid var(--light);
}
.grid-border:last-child{
  border-right:0;
}

.gallery-img{
  transition: .7s transform;
}
.gallery-img:hover{
  transform: scale(1.03);
  transition: .3s transform; 
}

.stars img{
  width: 25px;
  margin: 0 2px;  
}

footer .logo{
  width: 150px; 
}
footer nav a{
  display: block;
  margin-bottom: 10px; 
  color: var(--light);
}

footer .footer-nav a{
  color: var(--light);
  margin-right: 15px; 
}

.core{
  opacity: .5;
}
.core:hover{
  opacity: .8;
}