.quicksand-semibold {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.lexend-light {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.playfair-display-regular {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.hero-image {
  background-image: url("./lucacting/IMG_0039.JPG");
  background-color: darkolivegreen;
  height: 701px;
  width: 82%;
  margin-top: -10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: wheat;
}

.carousel {
	width: 92%;
	overflow-x: auto;
	margin: 1.5em auto;
	display: flex;
	gap: 1em;
	scroll-behavior: smooth;
	anchor-name: --carousel;
	scroll-snap-type: x mandatory;
	scroll-marker-group: after;
}

.carousel::scroll-marker-group {
	display: flex;
	justify-content: center;
	gap: .5em;
}

.card::scroll-marker {
	content: "";
	height: 1em;
	width: 1em;
	background-color: sienna;
	border-radius: 50%;
}

.card::scroll-marker:target-current {
	background-color: olive;
}

.carousel::-webkit-scrollbar {
	display:none;
}

.carousel::scroll-button(right), .carousel::scroll-button(left) {
	content: "next";
	border: 5px solid tan;
	background-color: olive;
	font-family: quicksand;
	font-size: 0.8rem;
	color: wheat;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	padding-bottom: .1em;
	cursor: pointer;
	position: fixed;
	position-anchor: --carousel;
	position-area: right center;
	translate: -40%;
}
.carousel::scroll-button(left) {
	content: "last";
	position-area: left center;
	translate: 40%;
}
.carousel::scroll-button(right):disabled, .carousel::scroll-button(left):disabled {
	opacity: 0.5;
	cursor: auto;
}


.card {
	scroll-snap-align: start;
	flex: 0 0 291px;
	height: 388px;
	background-color: rgb(79, 40, 22);
	padding: 1em;
	border-radius: .5em;
	text-align: center;
	align-content: center;
	transition: background-color .7s;
}

.card:hover {
	background-color: sienna;
}

@media(max-width:500px) {
	.card {
		flex: 0 0 100%;
	}
}

body {
	background-color: darkolivegreen; text-align: center;
	width: 100%;
}
h1 {
	font-family: Playfair Display;
	font-size: 8vw;
	color: wheat; 
}
h2 { 
	font-family: Playfair Display;
	font-size: 45px;
	color: olive;
}
h3 {
	font-family: Lexend;
	font-size: 30px;
	color: wheat;
}
h4 {
	font-size: 10px;
	color: violet; 
}
h5 {
	font-family: quicksand;
	font-size: 15px;
	color: mediumslateblue; 
}
h6 {
	font-size: 30px;
	color: gold; 
}
p {
	font-family: quicksand;
	font-size: 20px;
	color: wheat;
	background-color: sienna;
	border: 5px solid tan;
	padding: 30px;
	margin-top: 50px;
	margin-bottom: 10px;
	margin-left: 0%;
	margin-right: 0%;
}
div {
	width: 85%;
	padding: 0px;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
}
a:link, a:visited {
	font-family: playfair display;
	font-size: 3.5vw;
	color: olive;
	background-color: darkolivegreen;
	padding: 15px 25px;
	margin-bottom: 5px;
	border-radius: .5em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	transition: background-color .7s, font-size .7s;
}
a:hover, a:active {
	font-family: playfair display;
	font-size: 3.8vw;
	color: gold;
	background-color: olive;
	padding: 15px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}
address {
	font-family: quicksand;
	font-size: 15px;
	color: tan;
}
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-instagram {
  background: darkolivegreen;
  color: olive;
}