:root{
	--dark: #3f423d;
	--dark-green:#8a9381;
	--light-green: #b8c4b3;
	--bright-green:#7abb9a;
	--brown: #b89b80;
	--pink:#e9c9c1;
	--light:#f7f1ea;
}
body, html {
	font-family: 'Raleway', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: var(--dark);
	font-weight: 300;
	width: 100% !important;
	height: 100% !important;
}
h2 {
	margin: 0 0 20px 0;
	font-weight: 500;
	font-size: 34px;
	color: var(--dark);
	text-transform: uppercase;
}
h3 {
	font-size: 22px;
	font-weight: 500;
	color: var(--dark);
}
h4 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--dark);
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 16px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: var(--light);
}
a:hover, a:focus {
	text-decoration: none;
	color: var(--dark);
}
ul, ol {
	list-style: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: var(--bright-green);
	margin: 0;
	margin-bottom: 40px;
	border: 0;
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}

    /* Loader overlay */
		* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		}

		.loader-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--light-green);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 9999;
		opacity: 1;
		transform: scale(1);
		transition: opacity 0.8s ease, transform 0.8s ease;
		}

		.loader-wrapper.fade-out {
		opacity: 0;
		transform: scale(1.2);
		pointer-events: none;
		}

		.logo {
		width: 140px;
		animation: pulse 1.5s infinite ease-in-out;
		}

		@keyframes pulse {
		0%, 100% {
			transform: scale(1);
			opacity: 1;
		}
		50% {
			transform: scale(1.2);
			opacity: 0.7;
		}
		}

		.main-content {
		display: none;
		padding: 20px;
		}

/* Navigation */
#menu {
	padding: 20px;
	transition: all 0.8s;
}
#menu.navbar-default {
	background-color: rgba(138, 147, 129, 0);
	border-color: rgba(231, 231, 231, 0);
}
#menu a.navbar-brand {
	font-family: 'Dancing Script', cursive;
	font-size: 36px;
	color: var(--light);
	font-weight: 700;
	letter-spacing: 1px;
}
#menu.navbar-default .navbar-nav > li > a {
	text-transform: uppercase;
	color: var(--light);
	font-weight: 500;
	font-size: 15px;
	padding: 5px 0;
	border: 2px solid transparent;
	letter-spacing: 0.5px;
	margin: 10px 15px 0 15px;
}
#menu.navbar-default .navbar-nav > li > a:hover {
	color: var(--pink);
}
.on {
	background-color: #8a9381 !important;
	padding: 0 !important;
	padding: 10px 0 !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: var(--pink) !important;
	background-color: transparent;
}
.navbar-toggle {
	border-radius: 0;
	border: none;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: transparent;
	border-color: transparent;
}
.navbar-default .navbar-toggle:hover>.icon-bar {
	background-color: var(--light);
}
.section-title {
	margin-bottom: 70px;
}
.section-title .overlay {
	padding: 80px 0;
	background: rgba(0, 0, 0, 0.5);
}
.section-title p {
	font-size: 22px;
	color: rgba(255,245,228,0.8);
}
.section-title hr {
	margin: 0 auto;
	margin-bottom: 40px;
}
.btn-custom {
	text-transform: uppercase;
	color: #fff;
	background-color: transparent;
	border: 1.8px solid var(--bright-green);
	padding: 15px 25px;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-radius: 0;
	margin-top: 20px;
	transition: all 0.5s;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	background-color: rgb(122, 187, 154, 0.2);
	color: #fff;
}



/* Header Section */
.intro {
	display: table;
	width: 100%;
	padding: 0;
	background: url(/img/pics/hero.jpg) no-repeat center center;
	background-color: #fff;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
.intro .overlay {
	 /* background: rgba(0,0,0,0.4);  */
	background: rgba(62, 67, 55, 0.7); 
}
.intro h1 {
	font-family: 'Dancing Script', cursive;
	color: #fff;
	font-size: 10em;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
}

.intro span {
	/* color: #a7c44c; */
	font-weight: 600;
}
.intro p {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	margin-top: 10px;
	margin-bottom: 40px;
}
header .intro-text {
	padding-top: 200px;
	padding-bottom: 150px;
	text-align: center;
}
header .intro-text-p{
	font-size: 12px;
	margin-bottom: 0;
	font-weight: 500;
	text-transform: uppercase;
}
header .intro-text p {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin: 20px 200px;
}
.intro-text-p-span {
	color: var(--bright-green);
}
.header-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-bottom: 0;
}
.social-header ul li {
	display: inline-block;
	margin: 0 16px;
}
#header .social-header i.fa {
	font-size: 24px;
	padding: 4px;
	color: #fff;
	transition: all 0.3s;
}
#header .social-header i.fa:hover {
	color: var(--bright-green);
}
.address-header {
	display: flex;
}
.address-header img {
	margin-right: 10px;
}
.address-header p {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin: 0 0 50px 0;
}
  /* Responsive */
	@media (max-width: 768px) {
		.intro{
			background-attachment: scroll;
		}
		.intro h1 {
			font-size: 76px;
		}
		.intro p {
			font-size: 24px;
		}
		header .intro-text p {
			margin: 20px ;
		}
		header .intro-text-p {
				font-size: 18px;
		}
		.header-bottom {
			flex-direction: column;
			align-items: center;
			justify-content: center;
			margin: 0 20px;
		}
		.address-header {
			margin: 20px 0 30px 0;
		}
		.header-bottom .address-header p {
			font-size: 16px;
			margin: 0;
			text-align: center;
		}
    }


/* About Section */
#about {
	padding: 120px 0;
	background-image: url(/img/backgrounds/Background-About.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#about h3 {
	font-size: 20px;
}
#about .about-text {
	margin-left: 10px;
}
#about .about-img {
	display: inline-block;
	position: relative;
}
#about .about-img:before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
}

#about p {
	line-height: 24px;
	margin: 15px 0 30px;
}
.about-text h2 span{
	color: var(--brown);
}
.secondary-btn-green {
	text-transform: uppercase;
	background-color: var(--dark-green);
	border: 1.8px solid var(--dark-green);
	color: #fff;
	padding: 14px 18px;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 0;
	margin-top: 16px;
	transition: all 0.5s;
}
.secondary-btn-green:hover {
	background-color: rgb(184, 196, 179, 0.4);
	border: 1.8px solid var(--dark-green);
	color: var(--dark);
}
.menu-btn {
	font-size: 16px;
	padding: 15px 20px;
}
.secondary-a {
	color: var(--dark);
}
  /* Responsive */
  	@media (max-width: 1000px) {
		#about {
			background-image: url(/img/backgrounds/Background-About-md.png);
		}

    }
	@media (max-width: 768px) {
		#about {
			background-image: url(/img/backgrounds/Background-About-sm.png);
		}
		.img-about {
			width: 320px;
			margin-bottom: 20px;
		}
    }

/* Menu Section */
#restaurant-menu {
	padding: 0 0 60px 0;
	background-image: url(/img/backgrounds/Background-Testimonials.png) ;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	
}
#restaurant-menu .section-title {
	background: var(--dark) url(/img/pics/menu.jpg) center center no-repeat fixed;
	background-size: cover;
}
	@media all and (max-width: 768px){
		#restaurant-menu .section-title {
				background: url(/img/pics/menu.jpg) center center no-repeat ;
				background-size: cover;
				background-attachment: scroll;
		}
	}
#restaurant-menu .section-title h2 {
	color: #fff;
}
#restaurant-menu img {
	width: 300px;
	box-shadow: 15px 0 var(--light-green);
}
#restaurant-menu h3 {
	padding: 10px 0;
	text-transform: uppercase;
}
#restaurant-menu .menu-section hr {
	margin: 0 auto;
}
#restaurant-menu .menu-section {
	margin: 0 20px 80px;
}
#restaurant-menu .menu-section-title {
	font-size: 26px;
	display: block;
	font-weight: 500;
	color: var(--dark);
	margin: 20px 0;
	text-align: center;
}
#restaurant-menu .menu-item {
	margin: 35px 0;
	font-size: 18px;
}
#restaurant-menu .menu-item-name {
	font-weight: 600;
	font-size: 17px;
	color: var(--dark);
	border-bottom: 2px dotted rgb(213, 213, 213);
}
#restaurant-menu .menu-item-description {
	font-style: italic;
	font-size: 15px;
}
#restaurant-menu .menu-item-price {
	float: right;
	font-weight: 600;
	color: var(--dark);
	margin-top: -26px;
}

.btn-location {
	display: flex;
	justify-content: center;
}


/* .menu-thumbnail-wrapper {
  margin-top: 40px;
}

.menu-thumbnail {
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.menu-thumbnail:hover {
  transform: scale(1.05);
}

.click-to-expand-text {
  margin-top: 10px;
  font-size: 16px;
  color: var(--dark-green);
  font-style: italic;
} */



/* Portfolio Section */
#portfolio {
	padding: 0 0 120px 0;
}
#portfolio .section-title {
	background: var(--dark) url(/img/pics/gallery.jpg) center center no-repeat fixed;
	background-size: cover;
	margin-bottom: 50px;
}
	@media all and (max-width: 768px){
		#portfolio .section-title  {
				background: var(--dark) url(/img/pics/gallery.jpg) center center no-repeat ;
				background-size: cover;
				background-attachment: scroll;
		}
	}
#portfolio .section-title h2 {
	color: #fff;
}
.categories {
	padding-bottom: 30px;
	text-align: center;
}
ul.cat li {
	display: inline-block;
}
ol.type li {
	display: inline-block;
	margin: 0 10px;
	padding: 20px 0;
}
ol.type li a {
	color:  var(--dark);
	font-weight: 500;
	font-size: 14px;
	padding: 12px 24px;
	background: var(--light-green);
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
ol.type li a.active {
	color: var(--dark);
	background-color: var(--dark-green);
	color: #fff;
}
ol.type li a:hover {
	color: var(--dark);
	background-color: var(--dark-green);
	color: #fff;
}
.isotope-item {
	z-index: 2
}
.isotope-hidden.isotope-item {
	z-index: 1
}
.isotope, .isotope .isotope-item {
	/* change duration value to whatever you like */
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	transition-duration: 0.8s;
}
.isotope-item {
	margin-right: -1px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.isotope {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	transition-property: height, width;
}
.isotope .isotope-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	transition-property: transform, opacity;
}
.portfolio-item {
	margin: 15px 0;
}
.portfolio-item .hover-bg {
	overflow: hidden;
	position: relative;
}
.portfolio-item .hover-bg:before {
	display: block;
	content: '';
	position: absolute;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 6px;
}
.hover-bg .hover-text {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	color: #FFF;
	background: rgba(0, 0, 0, 0.6);
	padding: 30% 0 0 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.hover-bg .hover-text>h4 {
	opacity: 0;
	color: #FFF;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.3s;
	font-size: 17px;
	letter-spacing: 0.5px;
	font-weight: 500;
}
.hover-bg:hover .hover-text>h4 {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.hover-bg:hover .hover-text {
	opacity: 1;
}
.hover-bg img {
  transition: transform 0.5s ease;
}

.hover-bg:hover img {
  transform: scale(1.2);
}

/* Upcoming events Section */

#events {
	color: #fff;
	background: rgb(138, 147, 129) url(/img/pics/event.jpg) center top no-repeat fixed;
	background-size: cover;
}
	@media all and (max-width: 768px){
		#events {
				background: rgb(138, 147, 129) url(/img/pics/event.jpg) center top no-repeat ;
				background-size: cover;
				background-attachment: scroll;
		}
	}
#events .overlay {
	padding: 120px 0 80px 0;
	 /* background: rgba(61, 67, 57, 0.8);  */
	background: rgba(62, 67, 55, 0.8);  
}
#events h2, #events h3, #events p {
	color: #fff;
}
#events .section-title h3 {
	font-size: 22px;
	color: var(--bright-green);
}
.events-changing-message {
	display: flex;
	flex-direction: row;
	padding: 50px 0;
}
.events-changing-message-text{
	margin-right: 50px;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.events-changing-message-text p{
	text-align: start;
	font-size: 26px;
}
#events .changing {
	width: 400px;
    border-radius: 0 50% 0 0;
	z-index: 1;
	position: relative;
}
#events .leafs {
    position: absolute;
    right: 70px;
	width: 400px;
	z-index: 0;
}
.events-btn {
	text-transform: uppercase;
	color: #fff;
	background-color: transparent;
	border: 1.2px solid var(--bright-green);
	padding: 15px 25px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-radius: 0;
	margin-top: 20px;
	transition: all 0.5s;
}
.events-btn:hover{
	color: var(--bright-green);
}
  /* Responsive */
	@media (max-width: 820px) {
		.events-changing-message-text{
			margin-right: 10px;
	}
		#events img {
			display: none;
		}
		.events-changing-message-text p{
			font-weight: 500;
			font-size: 24px;
	}
    }



/* TESTIMONIALS */
.testimonials-text>p{
    font-size: 22px;
    font-weight: 300;
}

.testimonials-text>h2{
    font-weight: 500;
}

.site {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
	background-image: url(/img/backgrounds/Background-Testimonials.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
  /* Responsive */
	@media (max-width: 768px) {
		.site {
				background-image: url(/img/backgrounds/Background-Testimonials-sm.png);
				margin-top: 70px;
		}
    }
.container-t {
    max-width: 1300px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.testi {
    max-width: 1000px;
    margin: 0 auto;
}
.testi .head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    margin-bottom: 60px;
}
.testi .head h3 {
    font-size: 34px;
    font-weight: 800;
}
.testi .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 0;
}
.testi .thumbnail {
    width: 150px;
    height: 150px;
    position: relative;
    flex-shrink: 0;
	background: none;
	border: none;
}
.testi .thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(2);
    transition: transform .5s;
}
.testi .swiper-slide-active .thumbnail img{
    transform: scale(1);
}
.testi .thumbnail::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    background-color: var(--light-green);
    border-radius: 50%;
    z-index: -1;
    box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
    transition: border-radius .5s .3s;
}
.testi .swiper-slide-active .thumbnail::before {
    border-radius: 33% 67% 50% 50% / 50% 14% 86% 50%;
}
.testi .aside {
    position: relative;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}
.testi .aside > p {
    position: relative;
    font-size: 22px;
    line-height: normal;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(10%);
    transition: transform 1s, opacity 1s;
    font-weight: 300;
}
.testi .swiper-slide-active .aside > p {
    transform: translateX(0);
    opacity: 1;
}

.testi .aside > p::before {
    content: open-quote;
    top: -40px;
    left: 10px;
}
.testi .aside > p::after {
    content: close-quote;
    right: 0;
}
.testi .aside .name {
    position: relative;
    width: fit-content;
    line-height: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 1s .2s, opacity 1s .3s;
}
.testi .swiper-slide-active .name{
    opacity: 1;
    transform: translateX(0);
}
.testi .aside .name h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--brown);
    opacity: .8;
}
.testi .aside .name p {
    font-size: 18px;
    text-align: right;
}

/* slider*/
.testi :is(.swiper-button-next, .swiper-button-prev) {
    background-color: var(--light-green); 
    top: 35%;
    width: 38px;
    height: 38px;
    transition: background-color .3s;
    box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
    color: var(--white-color);
	border-radius: 50%; 
}
.testi :is(.swiper-button-next, .swiper-button-prev):hover {
    background-color: var(--dark-green);
    color: #fff;
}
.testi :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 16px;
    font-weight: 800;
    color: var(--white-color);
}
.testi .swiper-pagination{
    position: relative;
}
.testi .swiper-pagination span{
    background-color: #C1D8C3;
    transition: width .3s;
    opacity: 1;
}
.testi .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
    background-color: var(--light-green);
}
@media (max-width: 768px){
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
.testi :is(.swiper-button-next, .swiper-button-prev) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi :is(.swiper-button-next, .swiper-button-prev) svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
	color: var(--light);
}

@media screen and (min-width: 768px) {
    .testi .wrapper {
        flex-direction: row;
        padding: 30px 100px;
    }
    .testi .thumbnail  {
        width: 200px;
        height: 200px;
    }
    .testi :is(.swiper-button-next, .swiper-button-prev) {
        top: 50%;
    }
    .testi .swiper-slide-active .name {
        transform: translateX(-50px);
    }
}


/* Contact Section */
#contact {
	padding: 100px 0;
	background-image: url(/img/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#contact .section-title{
	background: url(/img/pics/contact.jpg) center center no-repeat fixed;
	background-size: cover;
}
	@media all and (max-width: 768px){
		#contact .section-title  {
				background: url(/img/pics/contact.jpg) center center no-repeat ;
				background-size: cover;
				background-attachment: scroll;
		}
	}
#contact .section-title .overlay p {
	color: #fff;
	font-size: 22px;
	align-self: center;
	margin: 0;
}
#contact .section-title .overlay h2 {
	color: #fff;
}
.contact-p-text{
	font-size: 26px;
	margin: 80px 300px;
}

.description-in-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 50px 0;
}
.contact-items-sm{
	margin: 20px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contact-items-sm h5{
	font-size: 22px;
	text-transform: none;
	color: var(--dark-green);
	margin: 20px 0 10px 0;
}
.contact-items-sm p{
	font-size: 16px;
}


#contact .container {
	display: flex;
	align-items: center;
}
#contact .container .contact-form {
	flex: 2;
}
.form-inside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#contact .form-control {
	display: block;
	width: 100%;
	padding: 25px 15px;
	font-size: 16px;
	line-height: 1.42857143;
	color: var(--dark);
	background-color: #fff;
	background-image: none;
	border: 1px solid rgb(122, 187, 154, 0.5);
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	margin: 15px 0;
}
#contact .form-control:focus {
	border-color: #999;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
color: #777;
}
.form-control:-moz-placeholder {
color: #777;
}
.form-control::-moz-placeholder {
color: #777;
}
.form-control:-ms-input-placeholder {
color: #777;
}

#contact .container .contact-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: flex-start;
	margin-left: 30px;
}
.contact-info a{
	color: #7abb9a;
	text-decoration: underline;
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3s;
}
.contact-info a:hover{
	color: var(--dark);
}

#contact .contact-info p {
	font-size: 18px;
	text-align: left;
}
.contact-info .social ul {
	display: flex;
}
.contact-info .social ul li {
	padding-right: 14px;
}
.contact-info .social i.fa{
	font-size: 22px;
	transition: all 0.3s;
}
.contact-info .social i.fa:hover{
	color: var(--dark);
}

.send-message-btn {
	color: var(--dark);
	background-color: rgb(122, 187, 154, 0.9);
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 15px 25px;
	margin-top: 20px;
	text-transform: uppercase;
	transition: all 0.5s;
	border: 1.8px solid var(--bright-green);
}
.send-message-btn:hover{
	background-color: rgb(122, 187, 154, 0.4);
}

@media screen and (max-width: 1100px){
	.contact-p-text{
		margin: 0 60px 40px 60px;
	}
}
@media screen and (max-width: 768px) {
	.contact-p-text{
		margin: 0 20px 40px 20px;
		font-size: 20px;
	}
	#contact .container .contact-info {
		display: none;
	}
	.description-in-contact {
		flex-direction: column;
	}
} 
/* 
.description-in-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 50px 0;
}
.contact-items-sm{
	margin: 20px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contact-items-sm h5{
	font-size: 22px;
	text-transform: none;
	color: var(--dark-green);
	margin: 20px 0 10px 0;
}
.contact-items-sm p{
	font-size: 16px;
} */



/*MAP*/
.map{
    margin-bottom: -5px;
}
.map-map{
    width: 100%;
    height: 400px;
} 


/* Footer Section*/
#footer {
	background: #8a9381;
	padding: 50px 0 0 0;
}
#footer h3 {
	color: var(--dark);
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
#footer .copyrights {
	padding: 20px 0;
	margin-top: 30px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#779936+0,8eb640+50 */
	/* background: rgb(119,153,54); 
	background: -moz-linear-gradient(top, rgba(119,153,54,1) 0%, rgba(142,182,64,1) 50%); 
	background: -webkit-linear-gradient(top, rgba(119,153,54,1) 0%, rgba(142,182,64,1) 50%); 
	background: linear-gradient(to bottom, rgba(119,153,54,1) 0%, rgba(142,182,64,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#779936', endColorstr='#8eb640', GradientType=0 ); /* IE6-9 */
}
#footer .social {
	margin: 20px 0 30px 0;
}
#footer .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#footer .social i.fa {
	font-size: 26px;
	padding: 4px;
	color: #fff;
	transition: all 0.3s;
}
#footer .social i.fa:hover {
	color: var(--dark);
}
#footer p {
	font-size: 17px;
	color: #fff;
}
.contact-item {
	display: flex;
	flex-direction: column;
}
.contact-item a{
	font-size: 17px;
	color: #fff;
	margin-bottom: 10px;

}
.contact-item a:hover{
	color: var(--dark-green);
}
#footer a {
	color: #fff;
}
#footer a:hover {
	color: var(--dark);
}




/* ABOUT PAGE */

/* Header Section */

.intro-about {
	display: table;
	width: 100%;
	height: 50vh;
	padding: 0;
	background: url(/img/pics/abt-hero.jpg) no-repeat center center;
	background-color: #fff;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
.intro-about .overlay {
	background: rgba(68, 70, 66, 0.7);
	width: 100%;
	height: 50vh;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}
.intro-about h3 {
	color: #fff;
	font-size: 54px;
	font-weight: 500;
	text-transform: none;

}


/* THE OWNER SECTION */

.owner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0;
}
.owner-text{
	flex: 1;
	padding: 40px;
	background-color: var(--light);
	margin: 0 -140px 0 200px;
	z-index: 999;
}
.owner-text h3{
	font-size: 28px;
	font-weight: 700;
}
.owner-text h3 span{
	font-family: 'Dancing Script', cursive;
	font-size: 32px;
	color: var(--dark-green);
}
.owner-text p{
	font-size: 20px;
}
.owner-img {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}
.owner-img img {
	width: 400px;
	position: relative;
	right: -100px;
}
.owner-img-border {
	border: rgb(122, 187, 154, 0.9) 1px solid;
	height: 600px;
	width: 400px;
	position: relative;
	z-index: -1;
	left: -200px;
	bottom: -50px;
}
.display-sm {
	display: none;
}
  /* Responsive */

	@media (max-width: 1450px){
		.owner {
			padding: 50px 0;
		}
		.owner-text{
			padding: 70px;
			margin: 0 -240px 0 100px;
		}
		.owner-img img {
			position: relative;
			right: -180px;
		}
		.owner-img-border {
			left: -100px;
			bottom: -40px;
		}
	}
	@media (max-width: 1200px){
		.owner-text{
			padding: 60px;
			margin: 0 -360px 0 50px;
		}
		.owner-img img {
			position: relative;
			right: -300px;
		}
		.owner-img-border {
			left: -50px;
		}
	}
	@media (max-width: 1000px){
		.owner-text{
			padding: 40px;
			margin: 0 -140px 0 40px;
		}
		.owner-img-border {
			display: none;
		}
		.owner-img img {
			width: 350px;
			position: relative;
			right: -40px;
		}
	}
	@media all and (max-width: 768px){
		.owner {
			flex-direction: column;
			padding: 40px 0;
			background-color: var(--light);
		}
		.owner-text{
			padding: 40px;
			margin: 0 ;
			z-index: 0; 
		}
		.owner-text> hr{
			display: none;
		}
		.owner-text h3{
			font-size: 26px;
		}
		.owner-text p{
			font-size: 18px;
		}
		.owner-img img {
			display: none;
		}
		.display-sm {
			display: block;
			width: 350px;
			margin: 20px 0;
		}
	}


/* Intro Section */

.aboutUs{
	display: flex;
	margin: 90px 200px -300px 200px;
}
.first-item-about{
	flex: 1;
}
.first-item-about p{
	font-weight: 700;
	margin-top: -20px;
	font-size: 18px;
}
.second-item-about {
	flex: 2;
	margin-left: 20px;
}
.border-item {
	border: rgb(122, 187, 154, 0.6) 1px solid;
	height: 400px;
	width: 280px;
	position: relative;
	left: 50px;
	top: -340px;
	z-index: -1;
}

.third-item-about {
	flex: 3;
	margin-top: 200px;
	margin-left: 30px;
}
.third-item-about h5{
	font-size: 28px;
	text-transform: none;
	margin-bottom: 30px;
}
.third-item-about span {
	font-family: 'Dancing Script', cursive;
	font-size: 32px;
	color: var(--dark-green);
}
.third-item-about p{
	font-size: 18px;
}

  /* Responsive */

	@media (max-width: 1350px){
		.aboutUs{
			margin: 80px 80px -200px 80px;
		}
	}

	@media (max-width: 1100px){
		.aboutUs{
			margin: 50px 30px -200px 30px;
		}
		.border-item {
			left: 20px;
			top: -360px;
		}
		.third-item-about {
			margin-top: 300px;
		}
	}
	

	@media all and (max-width: 768px) {
		.intro-about {
			background: url(/img/pics/abt-hero.jpg) no-repeat center center;
			background-size: cover;
			background-attachment: scroll;
			height: 35vh;
		}
		.intro-about .overlay {
			height: 35vh;
		}
		.intro-about h3 {
			font-size: 46px;
		}


		.aboutUs{
			margin: 50px 40px;
			flex-direction: column;
		}
		.first-item-about{
			position: relative;
			top: 100px;
			right: -20px;
		}
		.first-item-about p{
			font-size: 20px;
			margin-top: -30px;
		}
		.second-item-about {
			margin-left: 0;
		}
		.second-item-about img{
			width: 100%;
		}
		.border-item {
			display: none;
		}
		.third-item-about{
			margin-top: 20px;
			margin-left: 0;
		}
	}


/* INSPIRATION  SECTION */ 

.inspiration {
	display: flex;
	align-items: stretch; 
	height: 80vh;
}

.item-inspiration-one {
	background: url(/img/pics/abt-1-2.jpg)  ;
}
.item-inspiration-two {
	flex: 1;
	text-align: center;
	padding: 60px 40px;
	display: flex;             
	flex-direction: column;
	justify-content: center; 
}
.item-inspiration-two h4{
	font-weight: 600;
	text-transform: none;
	margin-bottom: 30px;
	font-size: 26px;
}

.item-inspiration-two h4 span{
	font-family: 'Dancing Script', cursive;
	font-size: 30px;
	color: var(--dark-green);
}
.item-inspiration-two p{
	font-size: 18px;
	margin-bottom: 20px;
}
.item-inspiration-three {
	background: url(/img/pics/abt-2-2.jpg);
}
.item-inspiration-one,
.item-inspiration-three {
	flex: 1;
	background-position: center ;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 80vh; 
}
.parallax {
	background-attachment: scroll; 
}


@media all and (max-width: 768px){
.item-inspiration-two{
	background-image: url(/img/pics/abt-2-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.items-inspo{
	padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent */
    border-radius: 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	color: black;
}
.item-inspiration-one, .item-inspiration-three {
	display: none;
}
}

/* QUOTE SECTION */

.quote {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 180px 0;
	background: url(../img/backgrounds/Background-1702x360.png) center center no-repeat;
	text-align: center;
}

.quote h3{
	margin: 0 300px 30px 300px;
	font-size: 28px;
}
.quote p{
	font-size: 18px;
}

@media (max-width: 1440px){
	.quote {
		background: url(../img/backgrounds/Background-1440x360.png) center center no-repeat;
	}
}

@media (max-width: 1100px){
		.quote {
		background: url(../img/backgrounds/Background-1159x360.png) center center no-repeat;
	}
	.quote h3{
		margin: 0 150px 30px 150px;
	}
}

@media all and (max-width: 768px){
	.quote {
		background: url(../img/backgrounds/Background-768x360.png) center center no-repeat;
		padding: 60px 0;
	}
	.quote h3{
		margin: 0 20px 30px 20px;
		font-size: 22px;
	}
}


/* INSTAGRAM */

.follow {
    display: flex;
    justify-content: center;
}
.follow p{
    font-size: 26px;
	font-weight: 600;
	text-align: center;
}
.follow p span{
	color: var(--dark-green);
	font-family: 'Dancing Script', cursive;
	font-size: 32px;
}
.inst {
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.inst-link {
    text-decoration: none;
    padding: 10px 40px 0 40px;
    text-align: center;
    position: relative;
    bottom: -35px;
    background-color: #fff;
	color: var(--dark);
}
.inst-link p{
	font-size: 20px;
	text-transform: uppercase;
}
.instagram {
    display: flex;
    padding: 5px;
}
.proba {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}
.insta {
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
    margin: 5px;
    margin-bottom: 25px;
}
.insta-one {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/1.jpg);
}
.insta-two {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/2.jpg);
}
.insta-three {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/3.jpg);
}
.insta-four {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/4.jpg);
}
.insta-five {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/5.jpg);
}
.insta-six {
    background-color: #c3bfbf;
    background-image: url(/img/instagram/6.jpg);
}

@media all and (max-width: 991px) {
	    .instagram {
            flex-direction: column;
        }
        .inst {
            margin-top: 70px;
        }
        .footer-link {
            padding: 18px;
        }
}

@media all and (max-width: 600px){
	    .inst {
            margin-top: 10px;
        }
        .inst-link {
            bottom: -20px;
        }
        .insta {
            height: 130px;
        }
        .small {
            flex-direction: column;
            align-items: center;
        }
        .footer-link {
            padding: 3px;
            font-size: 16px;
        }
        .text-footer {
            font-size: 8px;
        }
}


/* CONTACT US PAGE */


.contact-intro {
	display: table;
	width: 100%;
	height: 50vh;
	padding: 0;
	background: url(https://cdn.pixabay.com/photo/2022/09/25/22/25/iphone-7479302_640.jpg) no-repeat center center;
	background-color: #fff;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

	@media all and (max-width: 768px) {
		.contact-intro {
			height: 35vh;
			background-attachment: scroll;
		}
	}




	/* MENU PAGE */
.menu-header-p{
	color: #fff;
	font-size: 22px;
}
.menu-intro{
	display: table;
	width: 100%;
	height: 50vh;
	padding: 0;
	background: url(/pics/menu.jpg) no-repeat center center;
	background-color: #fff;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
	@media all and (max-width: 768px) {
		.menu-header-p {
			font-size: 20px;
		}
			.menu-intro {
			height: 35vh;
			background-attachment: scroll;
		}
	}

  :root{
    --gap: 22px;
  }

  *{ box-sizing:border-box }

  .wrap{
    max-width: 1200px;
    margin: 50px auto;
    padding:0 ;
  }

  .grid{
    display:grid;
    grid-template-columns: 1fr 1.15fr;   /* right col slightly wider */
    grid-template-rows: auto auto auto auto; /* 4 rows like the mock */
    gap: var(--gap);
    align-items:start;
  }
.card-link{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card-link:focus-visible{
  outline: 3px solid rgba(59,130,246,.7);
  outline-offset: 3px;
} 
.card::after{
  pointer-events: none;
}
  .item--img1 { grid-column:1; grid-row:1 / span 2; }  /* tall image spans rows 1-2 */
  .item--text1{ grid-column:2; grid-row:1; }           /* paragraph at top-right */
  .item--img2 { grid-column: 2; grid-row: 2; align-self: end;}           /* banner under paragraph */
  .item--img3 { grid-column:1; grid-row:3; }           /* bottom-left wide image */
  .item--img4 { grid-column:2; grid-row:3; }           /* bottom-right square image */
  .item--text2{ grid-column:1; grid-row:3;  align-self: end;} /* supporting text below left image */

  /* TEXT BLOCKS */
  .lead{
    font-size: 40px;
    color: var(--dark-green);
	font-weight: 500;
	letter-spacing: 0;
	margin-bottom: 10px;
  }
  .blurb{
    font-size: 20px;
    margin:0;
  }

  /* IMAGE CARDS */
  .card{
    position:relative;
    overflow:hidden;
    background:#000;
    min-height: 180px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
	cursor: pointer;
  }
  .card a:hover{
	color: var(--bright-green);
  }
  .card img{
    width:100%;
	height:100%;
    display:block;
	object-fit:cover;
    transition: transform .6s ease;
  }
  .card:hover img{ transform: scale(1.2); }
  .card::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.55) 100%);
  }

  /* Centered overlay titles — bigger font */
  .label{
    position:absolute;
	inset:0;
    display:flex;
	align-items:center; 
	justify-content:center;
    z-index:2;
	color:#fff;
	text-align:center;
    font-weight:500;
	text-transform:uppercase;
    font-size: clamp(20px, 3vw, 26px);
    pointer-events:none;
    padding:10px 14px;
}

  /* Aspect helpers approximating the screenshot */
  .ratio-tall   { aspect-ratio: 3/4; }
  .ratio-banner { aspect-ratio: 21/9; }
  .ratio-wide   { aspect-ratio: 16/9; }
  .ratio-square { aspect-ratio: 1/1; }

  /* === Responsive === */

	@media (max-width: 1200px){
		.wrap{
			max-width: 1000px;
		}
	}
	@media (max-width: 1000px){
		.wrap{
			max-width: 800px;
		}
		.lead{
			font-size: 30px;
		}
		.blurb{
			font-size: 18px;
		}
	}


@media (max-width: 860px){
  .grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .item--img1,
  .item--text1,
  .item--img2,
  .item--img3,
  .item--img4,
  .item--text2{
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .card{ min-height: 0; }

  .ratio-tall,
  .ratio-banner,
  .ratio-wide,
  .ratio-square,
  .item--text1,
  .item--text2{ aspect-ratio: 1 / 1; }

  .item--text1,
  .item--text2{
    padding: 0;               
    display: grid;
    place-items: center;
    overflow: hidden;           
    text-align: center;
  }

  .item--text1{ order: 1; }
  .item--img1 { order: 2; }
  .item--img2 { order: 3; }
  .item--img3 { order: 4; }
  .item--img4 { order: 5; }
  .item--text2{ order: 6; }

		.lead{
			font-size: 24px;
		}
		.blurb{
			font-size: 16px;
		}
}
@media (max-width: 560px){
  .grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .item--img1,
  .item--text1,
  .item--img2,
  .item--img3,
  .item--img4,
  .item--text2{
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  /* Uniform square tiles for ALL items */
  .card{ min-height: 0; }
  .ratio-tall,
  .ratio-banner,
  .ratio-wide,
  .ratio-square,
  .item--text1,
  .item--text2{ aspect-ratio: 1 / 1; }

  .item--text1,
  .item--text2{
    display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 12px;
    aspect-ratio: 5 /3;
  }

  .item--text1{ order: 1; }
  .item--img1 { order: 2; }
  .item--img2 { order: 3; }
	.item--text2{ order: 4; }
  .item--img3 { order: 5; }
  .item--img4 { order: 6; }

}















	@media all and (max-width: 768px) {
		.intro h1 {
			font-size: 76px;
		}
		.intro p {
			font-size: 24px;
		}
		header .intro-text-p {
				font-size: 18px;
		}
    }





	/* TEMPORARY MANU PAGE */

.coming-soon {
display: table;
width: 100%;
height: 100vh;
padding: 0;
background: url(/img/pics/temp-menu.jpg) no-repeat center center;
background-attachment: fixed;
background-size: cover;
}


.coming-soon .overlay {
background: rgba(62, 67, 55, 0.7);
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 20px;
}


.coming-soon h1 {
color: #fff;
font-size: 58px;
font-weight: 400;
margin: 0 0 20px 0;
}


.coming-soon .tagline {
font-size: 18px;
color: var(--bright-green);
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 500;
}


.coming-soon p {
font-size: 20px;
color: #fff;
font-weight: 300;
max-width: 900px;
margin: 0 auto 30px auto;
line-height: 1.6;
}


.social-icons {
margin-top: 20px;
}
.social-icons ul li{
	display: inline-block;
	margin: 0 10px;
}
.social-icons a {
color: #fff;
font-size: 28px;
margin: 0 15px;
transition: all 0.3s;
}
.social-icons a:hover {
color: var(--bright-green);
}



@media (max-width: 768px) {
.coming-soon h1 {
font-size: 3em;
}
.coming-soon p {
font-size: 18px;
margin: 0 20px 30px 20px;
}
.social-icons a {
font-size: 24px;
margin: 0 10px;
}
}