@charset "UTF-8";
/* CSS Document */


* {
	box-sizing: border-box;
}

html {
	font-family: proxima-nova, helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;	
	font-size: 16px;
	line-height: 130%;
	color: black;
	text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
	scroll-padding-top: 56px;
	min-height: 100%;
	margin: 0;
	scroll-padding-top: 56px; /* Adjust to match the height of your fixed navbar */
}

body {

}

/* this eliminates vertical space between rows of images */
img {
	vertical-align: middle;
	border-style: none;
  }

a {
	color: inherit;
	text-decoration: none;
}

.underline {
	text-decoration: underline !important;
}

.footer {
	background-color: #d4ddd7;
	font-size: .75em;
	font-weight: 400;
	padding: 30px;
}


/* Nav Bar */
.navbar {
	padding-left: 20px;
	padding-right: 20px;
	background-color: #ffffff;
}

@media (min-width: 768px) {
	.navbar {
		padding-left: 5vw;
		padding-right: 5vw;
	}
}

.nav-link {
	color:#b46433;
}

.navbar-title {
	font-size: 1.25em;
	color: #016A70;
}



/* Modal */

/* Modal Background */
.modal-content {
    background-color: #faf1d0; /* Light background color similar to your theme */
    border-radius: 10px;
    padding: 20px;
    font-family: Graphik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #444569; /* Text color to match other elements */
}

/* Modal Header */
.modal-header {
    border-bottom: none; /* Remove the default border */
    padding-bottom: 0; /* Remove extra padding */
}

/* Modal Title */
.modal-title {
    font-size: 2em; /* Match the size of your headings */
    font-weight: 600; /* Slightly bold */
    color: #b46433; /* Accent color similar to your theme */
}

/* Modal Body */
.modal-body {
    font-size: 1.25em; /* Match the size of body text */
    line-height: 1.5;
    color: #686844; /* Slightly darker text for readability */
}

/* Modal Footer */
.modal-footer {
    border-top: none; /* Remove the default border */
    padding-top: 0; /* Remove extra padding */
    justify-content: center; /* Center-align the buttons */
}

/* Close Button */
.modal-header .btn-close {
    background-color: #b46433; /* Match the button to your color scheme */
    border-radius: 50%;
    padding: 5px;
}

/* Customize Button */
.modal-footer .btn {
    background-color: #b46433; /* Match the button color */
    color: #ffffff; /* White text */
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 16px;
    border: none;
}

/* Modal Overlay */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5); /* Slightly dark overlay */
}



/* Background color classes */
.bg-periwinkle {
	background-color: #FFFFDD;
	color: #016A70;
}

.bg-frog {
	background-color: #A2C579;
	color: #016A70;
}

/* Card Listings */
.hero-container {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

@media (min-width: 768px) {
	.hero-container {
		padding-top: 5vw;
		padding-bottom: 5vw;
	}
}

.hero-container .inner {
	width: 100%;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.hero-container .inner {
		padding-left: 5vw;
		padding-right: 5vw;
	}
}

.listing-container {
	width: 100%;
	padding: 1em;
}

@media (min-width: 768px) {
	.listing-container {
		padding: 5vw;
	}
}

.big-text {
	font-size: 2.5em;
	line-height: 128%;
	margin-bottom: 1em;
	max-width: 800px;
	font-weight: 600;
}

.medium-text {
	font-size: 1.5em;
	line-height: 126%;
	margin-bottom: 1em;
	max-width: 800px;
}

.spacer {
	height: 6vh;
}

/* Isotope grid */
.grid {
	margin: 0px;
	padding: 0px;
	padding-bottom: 0vh;
	width: 100%;
	margin-bottom: 10vh;
}

/* clear fix */
.grid:after {
	content: '';
	display: block;
	clear: both;
  }

  .grid-sizer, .grid-item {
	width: 100%;
  }

@media(min-width: 768px) {
	.grid-sizer, .grid-item {
	  width: 50%;
	}
  }
  @media(min-width: 1280px) {
	.grid-sizer, .grid-item {
	  width: 33.333%;
	}
  }

.grid-item--full-width { 
	width: 100%; 
	padding: 12px 0px;
  }
  
  .grid-item--big { width: 100%; }
  
  @media(min-width: 768px) {
	.grid-item--big { width: 50%; }
  }
  
  @media(min-width: 1280px) {
	.grid-item--big { width: 66.666%; }
  }


  /* ---- .grid-item ---- */
.grid-item {
	float: left;
	margin: 0px;
	padding: 0;
	padding-bottom: 1em;
  }
  
  @media(min-width: 768px) {
	.grid-item {
	  padding: 1vw;
	}
  }

  @media(min-width: 1280px) {
	.grid-item--big .grid-box-outer { 
	  flex-direction: row-reverse;
	}
  
	.grid-item--big .grid-box-outer img {
	  border-radius: 0px 12px 12px 0px;
	  width: 60%;
	  height: auto;
	}
  }


/* Card styling */

.date-added, .date-updated {
	display: none;
	font-size: .75em;
}

.card img {
	border-radius: 5px;
	margin-bottom: 1.5rem;
	max-width: 100%;
}

.horizontal-list {
    padding-left: 1em !important; /* Removes default padding */
	display: flex;
	flex-wrap: wrap;
}

.horizontal-list li {
	list-style-type: circle;
    margin-right: 15px; /* Space between items */
    padding-right: 20px; /* Space to ensure bullets don’t overlap */
	text-wrap: nowrap;
}

.img-crop {
	margin-bottom: 1.5rem;
	position: relative;
    width: 100%;
}

.img-crop img {
	object-fit: cover; /* This crops the image */
    width: 100%;
    height: 100%;
}

/* Custom CSS for Circle Image on Mobile */
@media (max-width: 768px) {
    .circle-on-mobile {
        width: 90px; /* Adjust as needed */
        height: 90px; /* Adjust as needed */
        border-radius: 50% !important; /* Makes the image circular */
        object-fit: cover; /* Ensures the image covers the circle */
    }
}

/* Button styles */
button, .button {
	padding: 10px 16px;
	background-color: #D2DE32;
	border-radius: 30px;
	color: #444569;
	font-weight: 500;
	font-size: 1.25em;
	text-align: center;
	display: inline-block;
	border: none;
	box-shadow: none;
	text-wrap: nowrap;
	transition-duration: 0.5s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.3, 0.01, 0, 1);
}

.category-button-group button {
	background-color: #016A70;
	border-radius: 60px;
	padding: 12px 20px !important;
	color: #ffffff;

}
@media (min-width: 768px) {
	.category-button-group button {
		border-radius: 60px;
		padding: 20px 30px;
	}
}
.category-button-group button:hover, .tag-button-group button:hover {
	filter:brightness(1.125); /* Increase saturation on hover */
}

.tag-button-group .view-all {
	padding: 2px 9px;
	font-weight: 400;
	font-size: .875em;
	border-radius: 3px;
	background-color: transparent;
	border: 1px solid #016A70;
	color: #016A70;
}



.category-button-group button, .tag-button-group button {
	padding: 20px 30px;
}

.category-button-group .active, .tag-button-group .active {
	background-color: #b46433;
	border-color: #b46433;
	color: #ffffff;
}

.tag-button-group button {
	padding: 2px 9px;
	font-weight: 400;
	font-size: .875em;
	border-radius: 3px;
	background-color: #A2C579;
	border: 1px solid #A2C579;
}

.button-group {
	display: flex;
	margin-bottom: 1em;
	flex-wrap: wrap;
	gap: .75em;
}
@media (min-width: 768px) {
	.button-group {
		display: flex;
		flex-direction: row;
	}
}


/* Tags */
.tags {
	display: flex;
	align-items: start;
	flex-direction: row;
	border-radius: 6px;
	gap: 6px;
	flex-wrap: wrap;
}

.tags span {
	font-size: .75em;
	padding: 2px 8px;
	border-radius: 3px;
	text-wrap: nowrap;
	color: #ffffff;
	background-color: gray
}

.tags span.recently-updated, .tags span.recently-added {
	background-color: #b46433;
}







.footer {
	background-color: #d4ddd7;
	font-size: .75em;
	font-weight: 400;
	padding: 30px;
}

.bg-grainbowl {
	background-color: #e1c8b2;
	color: #a78535;
}
.bg-luxorgold {
	background-color: #a78535;
	color: #e1c8b2;
}
.bg-finch {
	background-color: #686844;
	color: #d4ddd7;
}
.bg-talisman {
	background-color: #d4ddd7;
	color: #686844;
}
.bg-dingley {
	background-color: #726916;
	color:#e6d9e5;
}
.bg-champagne {
	background-color: #faf1d0;
	color: #884e3b;
}
.bg-mulledwine {
	background-color: #423a57;
	color: #ece0d0;
}
.bg-birdflower {
	background-color: #d0be1c;
	color: #4a496c;
}



.start-content {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (min-width: 768px) {
	.centered-content, .start-content {
		padding-top: 12vh;
		padding-bottom: 12vh;
	}
}

.start-content .inner {
	width: 100%;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.start-content .inner {
		padding-left: 8vw;
		padding-right: 8vw;
	}
}

.big-text {
	font-size: 1.75em;
	line-height: 128%;
	margin-bottom: 1.25em;
	font-weight: 600;
}
@media (min-width: 768px) {
	.big-text {
		font-size: 2.5em;
		max-width: 800px;
	}
}
.medium-text {
	font-size: 1.5em;
	line-height: 126%;
	margin-bottom: 1em;
	max-width: 800px;
}

.spacer {
	height: 8vh;
}

.card {
	border: none;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	margin: 0px;
	height: 100%;
	flex-grow: 1;
	position: relative;
    transition: opacity 0.5s ease;	
}

.card .title{
	display: flex;
	flex-direction: row;
	gap: 1em;
	align-items: center;
}

.card.faded {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
	border-radius: 5px;
	font-size: 2em;
	font-weight: 600;
}

.card.faded .overlay {
    opacity: 1; /* Show overlay when card is faded */
	border-radius: 5px;
}

.card-body {
	display: flex;
	flex-direction: column;
	padding: 1em 1em 1em;
	height: 100%;
	flex-grow: 1;
}

@media (min-width: 768px) {
	.card-body {
		padding: 1.75em 1.75em 1em;
	}
}

.card-body h2 {
	font-size: 1em;
	font-weight: 600;
	margin-bottom: .5em;
}

.card-body p {
	margin-bottom: 0em;
}

.card-body .contact {
	border-bottom: 1px solid #bbb;
	padding-top: .25em;
	padding-bottom: 1em;
	margin-bottom: 1em;
}

.contact a {
    color: #016A70; /* Adjust color */
    margin-right: 8px; /* Add some spacing between icons */
    font-size: 1.125em; /* Adjust icon size */
}

.contact a:hover {
    color: #b46433; /* Change color on hover */
}

.card-body .contact i:hover {
	
}

.card-body ul {
    list-style-type: disc;
    padding-left: 20px;
	margin-bottom: 0;
}

.card-body li {
    margin-bottom: .25em;
	line-height: 120%;
}

.card-body .directions {
	background-color: #b2c6e0;
	color: #ffffff;
	font-size: .75em;
	padding: 1px 6px;
	border-radius: 3px;
	text-transform: uppercase;
	position: relative;
	bottom: 2px;
}

.card-body .cta {
	display: flex;
	flex-direction: column;
	gap: .5em;
}

.card-body .cta .button {
	display: inline-block;
	border-radius: 6px;
	margin: 0px;
	transition-duration: 0.5s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.3, 0.01, 0, 1);
}

.card-body .cta .button:hover {
	filter:brightness(1.05); /* Increase saturation on hover */
}

.card-body .cta .button.secondary {
	background-color: transparent;
	color: #A2C579;
	border: 1px solid currentColor;
}

.card-footer {
	padding: 0em 1em 1em;
	background-color: inherit;
	border-top: 0;
	border-radius: 6px;
	margin-top: auto; /* Push the footer to the bottom if needed */
}

@media (min-width: 768px) {
	.card-footer {
		padding: 0em 1.75em 1.75em;
	}	
}

.card-title {
	font-size: 1.75em;
	font-weight: 600;
	margin-bottom: 0.25em;
	color: #016A70;
}

/* Buttons */








button .full-width, .button .full-width {
	display: block;
}

