﻿*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  z-index: 0;
  min-height: 100vh;
}

html {
	scroll-behavior: smooth;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}


.navbar {
	display: flex;
	width: 100%;
	background: rgba(102, 68, 54, 0.8);
	position: absolute;
	z-index: 3;
	justify-content: space-between;
	align-items: center;
	height: 150px;
	align-items: flex-end;
}

.navbar2 {
	display: flex;
	width: 100%;
	background: rgba(102, 68, 54, 0.8);
	z-index: 3;
	justify-content: space-between;
	align-items: center;
	height: 150px;
	align-items: flex-end;
}


.logo img {
	width: 100%;
	height: 150px;
}

.navtext {
	display: flex;
	margin-right: 5%;
}

.navlinks {
	display: flex;
	gap: 50px;
	align-items: flex-end;
	white-space: nowrap;
	font-size: 26px;
	font-family: Playfair Display, serif;
	color: #c59a8c;
	text-shadow: 0px 2px 8px rgba(238, 192, 191, 0.5);
	transition: all 0.3s ease;
	font-weight: 600;
}

.navlinks a:hover {
	color: #8c9563;
	transform: scale(1.02)
}

.herosection {
	display: flex;
	flex-direction: column;
	border-bottom: 10px solid #664436;
}

.herosection img {
	width: 100%;
	height: 1000px;
	object-fit: cover;
	z-index: 0;
}

.herotext {
	display: flex;
	flex-direction: column;
	margin-left: 5%;
	position: absolute;
	z-index: 1;
	margin-top: 10%;
	padding: 30px;
}

.herotext h1 {
	font-family: Playfair Display, serif;
	color: #664436;
	font-size: 80px;
	letter-spacing: 2px;
	text-shadow: 0px 5px 15px rgba(102, 68, 54, 0.7);
	text-decoration: underline;
}

.herotext a {
	display: inline-block;
	padding: 10px;
	text-align: center;
	font-size: 30px;
	color: #c59a8c;
	background-color: #664436;
	box-shadow: 0px 0px 15px rgba(102, 68, 54, 0.7);
	border-radius: 8px;
	transition: all 0.3s ease-in;
	margin-top: 40px;
	font-weight: bold;
}

.herotext a:hover {
	background-color: #c59a8c;
	transform: scale(1.02);
	color: #664436;
}

.aboutsection {
	display: flex;
	box-shadow: 0px 0px 10px rgba(102, 68, 54, 0.8);
	border-bottom: 5px solid #664436;
	position: relative;
	z-index: 1;
}

.abouttext {
	display: flex;
	flex-direction: column;
	padding: 20px;
	align-items: center;
	flex: 1;
	background-color: #a8b084;
	border-left: 5px solid #664446;
	padding-top: 150px;
	position: relative;
}

.abouttext h1 {
	font-family: Playfair Display, serif;
	background: linear-gradient(to bottom, #664436, #432c23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 75px;
}

.abouttext p {
	font-size: 22px;
	color: #664436;
	line-height: 1.7;
	z-index: 1;
}

.pullquote {
	font-size: 22px;
	color: #664436;
	line-height: 1.7;
	z-index: 1;
	font-style: italic;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}


.aboutimage {
	display: flex;
	flex: 1;
}

.aboutimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-left: 5px solid #664436;
}

.services {
	display: flex;
	flex-direction: column;
	background-color: #8C9563;
	padding: 20px;
	border-bottom: 5px solid #664436;
}

.servicesrow {
	display: flex;
	overflow-x: scroll;
	gap: 40px;
	width: 100%;
	scroll-snap-type: x mandatory;
	scroll-padding: 20px;
}

.servicesrow::-webkit-scrollbar {
  height: 10px;
}

.servicesrow::-webkit-scrollbar-track {
  background: #d3cdbc; /* soft beige or neutral track */
  border-radius: 6px;
}

.servicesrow::-webkit-scrollbar-thumb {
  background: #664436; /* deep brown thumb */
  border-radius: 6px;
}

.servicesrow::-webkit-scrollbar-thumb:hover {
  background: #8a5d4c; /* lighter brown on hover */
}

.header-wrapper {
	display: flex;
	gap: 20px;
}

.header-wrapper img {
	opacity: 0.8;
}

.header-wrapper h1 {
	font-family: Playfair Display, serif;
	font-size: 44px;
	font-weight: 600;
	color: #664436;
	text-shadow: 0px 3px 10px rgba(102, 68, 54, 0.5);
}

.service {
	display: flex;
	flex-direction: column;
	height: 500px;
	min-width: 500px;
	background-color: #fceeef;
	position: relative;
	margin: 20px auto 40px;
	scroll-snap-align: start;
	box-shadow: 0px 0px 10px rgba(102, 68, 54, 0.5);
	border-radius: 8px;
	transition: all 0.3s ease-in;
}

.service:hover {
	transform: translateY(-8px);
}

.service img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.servicetext {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: absolute;
	z-index: 2;
	bottom: 0;
	background: rgba(168, 176, 132, 0.7);
	padding: 8px;
	backdrop-filter: blur(3px);
}

.servicetext h1 {
	font-family: Playfair Display, serif;
	font-size: 28px;
	color: #664436;
	font-weight: 600;
}

.servicetext p {
	color: #664436;
	font-size: 20px;
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #a8b084;
	position: relative;
	z-index: 1;
	height: auto;
	position: relative;
	padding-bottom: 200px;
}

.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.wrapper img {
	opacity: 0.8;
}

.contact h1 {
	font-family: Playfair Display, serif;
	font-size: 50px;
	color: #664436;
	text-decoration: underline;
}

.booking-form {
  background-color: #8c9563;
  padding: 30px 50px;
  width: 70%;
  margin: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(102, 68, 54, 0.2);
  font-family: "Open Sans", sans-serif;
  color: #664436;
  flex: 2;
}

.wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #664436;
}

.booking-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fff;
}

.booking-form button {
  margin-top: 50px;
  background-color: #664436;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.booking-form button:hover {
  background-color: #8a5d4c;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(102, 68, 54, 0.8); /* same semi-transparent brown */
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-sizing: border-box;
}

.footer2 {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(102, 68, 54, 0.8); /* same semi-transparent brown */
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-sizing: border-box;
}


.footer img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #b4877b;
	font-size: 20px;
}

.contact-wrapper p{
	text-align: center;
}

.social-links {
	display: flex;
	gap: 20px;
}

.credit {
	font-size: 12px;
	color: #664436;
}

.pricing-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #8C9563;
	z-index: 1;
	height: auto;
	position: relative;
	min-height: 1200px;

}

.pricing-section h1 {
	font-family: Playfair Display, serif;
	font-size: 40px;
	color: #664436;
}

.pricegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 50px;
	padding: 30px;
	background-color: #a8b084;
	border: 2px solid #664436;
}

.servicesection {
	display: flex;
	flex-direction: column;

}

.servicesection h2 {
	font-size: 32px;
	color: #664436;
	text-decoration: underline;
	font-weight: 600;
}

.service-title {
	color: #664436;
	font-size: 28px;
	font-weight: 600;
}

.price {
	color: #664436;
	font-size: 28px;
	margin-left: 10px;
	font-weight: 600;
}

.service-description {
	color: #664436;
	font-size: 20px;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: 200px; /* Same height as footer */
  overflow-x: hidden;
}




/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 36px;
  color: #c59a8c;
  cursor: pointer;
  margin-right: 30px;
}

/* Mobile nav behavior */
@media (max-width: 768px) {

.hamburger {
   display: block;
   margin-left: 30px;
   margin-bottom: 20px;
}

.navlinks {
  position: absolute;
  top: 150px;
  right: 0;
  background-color: rgba(102, 68, 54, 0.95);
  flex-direction: column;
  width: 100%;
  display: none;
  padding: 20px 0;
  z-index: 10;
  }

.navlinks.show {
  display: flex;
}

.navlinks li {
  padding: 10px 20px;
  text-align: center;
}

.navbar {
	position: relative;
}

.herosection {
	display: flex;
	flex-direction: column;
	height: 300px;
	padding: 0;
	margin: 0;
}

.herosection img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	z-index: 0;
}

.herosection h1 {
	font-size: 20px;
	margin-left: 0%;
}

.herotext {
	margin-left: 0;
	paddimg: 10px;
}

.herotext a {
	display: inline-block;
	padding: 5px;
	text-align: center;
	font-size: 16px;
	color: #c59a8c;
	background-color: #664436;
	box-shadow: 0px 0px 15px rgba(102, 68, 54, 0.7);
	border-radius: 8px;
	transition: all 0.3s ease-in;
	margin-top: 15px;
	font-weight: bold;
}
	

.services {
	display: flex;
	flex-direction: column;
	background-color: #8C9563;
	padding: 10px;
	border-bottom: 5px solid #664436;
}

.servicesrow {
	display: flex;
	overflow-x: scroll;
	gap: 30px;
	width: 100%;
	scroll-snap-type: x mandatory;
	scroll-padding: 20px;
}

.servicesrow::-webkit-scrollbar {
  height: 10px;
}

.servicesrow::-webkit-scrollbar-track {
  background: #d3cdbc; /* soft beige or neutral track */
  border-radius: 6px;
}

.servicesrow::-webkit-scrollbar-thumb {
  background: #664436; /* deep brown thumb */
  border-radius: 6px;
}

.servicesrow::-webkit-scrollbar-thumb:hover {
  background: #8a5d4c; /* lighter brown on hover */
}

.header-wrapper {
	display: flex;
	gap: 20px;
}

.header-wrapper img {
	opacity: 0.8;
}

.header-wrapper h1 {
	font-family: Playfair Display, serif;
	font-size: 34px;
	font-weight: 600;
	color: #664436;
	text-shadow: 0px 3px 10px rgba(102, 68, 54, 0.5);
}

.service {
	display: flex;
	flex-direction: column;
	height: 500px;
	min-width: 300px;
	background-color: #fceeef;
	position: relative;
	margin: 20px auto 40px;
	scroll-snap-align: start;
	box-shadow: 0px 0px 10px rgba(102, 68, 54, 0.5);
	border-radius: 8px;
	transition: all 0.3s ease-in;
}

.service:hover {
	transform: translateY(-8px);
}

.service img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.servicetext {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: absolute;
	z-index: 2;
	bottom: 0;
	background: rgba(168, 176, 132, 0.7);
	padding: 5px;
	backdrop-filter: blur(3px);
}

.servicetext h1 {
	font-family: Playfair Display, serif;
	font-size: 20px;
	color: #664436;
	font-weight: 600;
}

.servicetext p {
	color: #664436;
	font-size: 16px;
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #a8b084;
	position: relative;
	z-index: 1;
	height: auto;
	position: relative;
	padding-bottom: 200px;
}

.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.wrapper img {
	opacity: 0.8;
}

.contact h1 {
	font-family: Playfair Display, serif;
	font-size: 30px;
	color: #664436;
	text-decoration: underline;
	text-align: center;
}

.booking-form {
  background-color: #8c9563;
  padding: 30px 50px;
  width: 90%;
  margin: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(102, 68, 54, 0.2);
  font-family: "Open Sans", sans-serif;
  color: #664436;
  flex: 2;
}

.wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #664436;
}

.booking-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fff;
}

.booking-form button {
  margin-top: 50px;
  background-color: #664436;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.footer {
	height: 220px;
}

.contact-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #b4877b;
	font-size: 16px;
}

.pricing-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #8C9563;
	z-index: 1;
	height: auto;
	position: relative;
	min-height: 1200px;

}

.pricing-section h1 {
	font-family: Playfair Display, serif;
	font-size: 40px;
	color: #664436;
}

.pricegrid {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 30px;
	background-color: #a8b084;
	border: 2px solid #664436;
}

.servicesection {
	display: flex;
	flex-direction: column;

}

.servicesection h2 {
	font-size: 32px;
	color: #664436;
	text-decoration: underline;
	font-weight: 600;
}

.service-title {
	color: #664436;
	font-size: 22px;
	font-weight: 600;
}

.price {
	color: #664436;
	font-size: 18px;
	margin-left: 10px;
	font-weight: 600;
}

.service-description {
	color: #664436;
	font-size: 16px;
}

.footer2 {
	height: 270px;
}

.aboutsection {
	flex-direction: column;
	height: auto;
	margin: 0;
}

.aboutsection {
	display: flex;
	box-shadow: 0px 0px 10px rgba(102, 68, 54, 0.8);
	border-bottom: 5px solid #664436;
}

.abouttext {
	display: flex;
	flex-direction: column;
	padding: 10px;
	align-items: center;
	background-color: #a8b084;
	border-left: 5px solid #664446;
}

.abouttext h1 {
	font-family: Playfair Display, serif;
	background: linear-gradient(to bottom, #664436, #432c23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    letter-spacing: 2px;
}

.abouttext p {
	font-size: 22px;
	color: #664436;
	line-height: 1.7;
	z-index: 1;
}

.pullquote {
	font-size: 18px;
	color: #664436;
	line-height: 1.7;
	z-index: 1;
	font-style: italic;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}


.aboutimage {
	display: flex;
	flex: 1;
}

.aboutimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-left: 5px solid #664436;
}


}
