﻿.content {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.loaded .content {
    opacity: 1;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	animation: fadeIn 1.2s ease-in forwards;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
	scroll-behavior: smooth;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Images/background.png');
  background-size: cover;
  opacity: 0.85; /* try 0.05 to 0.2 for subtlety */
  z-index: -1;
}

.navbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 150px;
	background-color: #EEC0BF;
	box-shadow: 0px 0px 10px rgba(238, 192, 191, 0.8);
}

.logo {
	display: flex;
	height: 150px;
	margin-left: 40px;
}

.logo img {
	object-fit: contain;
	height: 150px;
	width: 100%;
}

.navlinks {
	display: flex;
	height: 150px;
	justify-content: center;
	flex: 1;
	padding-right: 40px;

}

.links {
	display: flex;
	align-items: flex-end;
	gap: 40px;
	list-style: none;
	white-space: nowrap;
	margin-left: auto;
}

.links li a {
	display: inline-block;
	padding: 5px 10px;
	font-family: Playfair Display, serif;
	font-size: 24px;
	text-decoration: none;
	color: #915063;
	font-weight: 600;
	padding: 5px 10px;
	text-shadow: 0px 3px 10px rgba(145, 80, 99, 0.5);
	transition: transform 0.3s ease-in, color 0.3s ease-in;
}

.links li a:hover {
	transform: translateY(-8px);
	color: #f8d8d9;
}

.hero-section {
	display: flex;
	height: 800px;
	background-color: #FCEEF2;
}

.herotext {
	display: flex;
	flex: 1;
}

.heroimage {
	display: flex;
	flex: 2;
}

.heroimage img {
	width: 100%;
}

.herotext {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
	margin-left: 10%;
	margin-top: 8%;
}

.herotext h1 {
	font-family: 'Playfair Display', serif;
	font-size: 72px;
	color: #915063;
	letter-spacing: 1.7px;
	font-style: italic;
	font-weight: 600; 
}

.herotext a {
	display: inline-block;
	padding: 5px 10px;
	width: 100%;
	background-color: #eec0bf;
	border: 2px solid #915063;
	text-decoration: none;
	font-family: Open Sans, sans-serif;
	font-size: 28px;
	color: #915063;
	font-weight: 600;
	text-align: center;
	margin-top: 24px;
	transition: all 0.3s ease;
	box-shadow: 0px 0px 10px rgba(238, 192, 191, 0.6);
}

.herotext a:hover {
	background-color: #db9597;
	transform: scale(1.05);
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	background-color: #eec0bf;
	height: auto;
	width: 100%;
}

.services-header {
	display: flex;
	font-family: Playfair Display, serif;
	font-size: 30px;
	color: #915063;
	margin-left: 5%;
}

.services {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 40px;
	width: 90%;
	margin: auto;
}

.service {
	display: flex;
	flex-direction: column;
	height: 500px;	
	margin-bottom: 40px;
	position: relative;
	transition: transform 0.3s ease-in;
}

.service:hover {
	transform: translateY(-8px);
}

.service img {
	width: 100%;
	height: 500px;
	z-index: 1;
}

.servicetext {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 100%;
	z-index: 2;
	margin-top: auto;
	bottom: 0;
	padding: 10px;
	background: rgba(248, 216, 217, 0.8);
	color: #915063;
}

.servicetext h1 {
	font-family: Playfair Display, serif;
	font-size: 28px;
	text-decoration: underline;
	text-shadow: 0px 3px 10px rgba(145, 80, 99, 0.5);
}

.servicetext p {
	font-family: Open Sans, sans-serif;
	font-size: 18px;
}

.about-section {
	display: flex;
	background-color: #FCEEF2;
	height: 600px;
}

.abouttext {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex: 1;
	color: #915063;
	padding: 20px;
	z-index: 2;
	position: relative;
	padding: 40px;
}

.abouttext::before {
  content: ""; /* ✅ REQUIRED */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  
  height: 100%; 
  background-image: url('Images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;   
  z-index: 0; 
}

.abouttext h1 {
	font-family: Playfair Display, serif;
	font-size: 36px;
	text-decoration: underline;
}

.abouttext p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
}

.aboutimage {
	display: flex;
	flex: 1;
}

.aboutimage img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.contact-section {
	background-color: #f8d8d9;
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 475px;
	width: 80%;
	margin: 30px auto;
	border: 1px solid #915063;
	position: relative;
	z-index: -1;
	box-shadow: 0px 0px 10px rgba(248, 216, 217, 0.8); 
}

.contact-section::before {
  content: ""; /* ✅ REQUIRED */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  
  height: 100%; 
  background-image: url('Images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;   
  z-index: 0; 
}


.contact-header h1 {
	font-family: Playfair Display, serif;
	font-size: 60px;
	color: #915063;
	text-decoration: underline;
	text-align: center;
}

.contact-info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.social-links {
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: center;
	font-size: 30px;
}

.fab {
	color: #915063;
}

.divider {
  width: 60%;
  border: none;
  border-top: 1px solid #db9597;
  margin: 20px auto;
}

.contact {
	display: flex;
	flex-direction: column;
	font-family: Playfair Display, serif;
	font-size: 20px;
	background-color: #f8d8d9;
	width: 100%;
	margin: 15px auto;
	color: #915063;
	white-space: nowrap;
	padding: 20px;
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 150px;
	background-color: #EEC0BF;
	box-shadow: 0px 0px 10px rgba(238, 192, 191, 0.8);
}

.footer p {
	color: #9150063;
	font-size: 12px;
	font-family: Open Sans, sans-serif;
}

.pricing-section {
  background-color: #fceeef;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
  color: #915063;
  text-align: center;
}

.pricing-section h1 {
  font-size: 42px;
  margin-bottom: 40px;
  border-bottom: 2px solid #915063;
  display: inline-block;
  padding-bottom: 10px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-category h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #db9597;
}

.price-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-category li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(145, 80, 99, 0.2);
  font-size: 18px;
}



.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  color: #e7ebeb;
}


/* Mobile Styles */
@media (max-width: 768px) {

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  flex: 1 0 auto;
}

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-right: 10px;
    z-index: 1001;
    font-size: 28px;
    cursor: pointer;
  }
  
    .navlinks {
    display: none;
    position: absolute;
    top: 150px;
    right: 0;
    width: 100%;
    background-color: #fceeef;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    height: auto;
  }

  .navlinks.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }

  .links {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .links li a {
    font-size: 20px;
  }
  
.hero-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	background-color: #FCEEF2;
	margin: 0 auto;
}

.hero-section {
	display: flex;
	height: 800px;
	background-color: #FCEEF2;
}

.heroimage {
	display: flex;
}

.heroimage img {
	width: 100%;
}

.herotext {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	margin-left: 10%;
	margin-top: 8%;
}

.herotext h1 {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	color: #915063;
	letter-spacing: 1.7px;
	font-style: italic;
	font-weight: 600; 
}

.herotext a {
	display: inline-block;
	width: 90%;
	padding: 5px 10px;
	background-color: #eec0bf;
	border: 2px solid #915063;
	text-decoration: none;
	font-family: Open Sans, sans-serif;
	font-size: 20px;
	color: #915063;
	font-weight: 600;
	text-align: center;
	margin: 24px auto;
	box-shadow: 0px 0px 10px rgba(238, 192, 191, 0.6);
}

.services {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 90%;
	margin: auto;
}

.about-section {
	display: flex;
	flex-direction: column;
	background-color: #FCEEF2;
	height: auto;
}

.contact-section {
	background-color: #f8d8d9;
	display: flex;
	align-items: center;
	flex-direction: column;
	height: auto;
	width: 95%;
	margin: 30px auto;
	border: 1px solid #915063;
	position: relative;
	z-index: -1;
	box-shadow: 0px 0px 10px rgba(248, 216, 217, 0.8); 
}

.contact-header h1 {
	font-family: Playfair Display, serif;
	font-size: 30px;
	color: #915063;
	text-decoration: underline;
	text-align: center;
}

.contact-info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	font-size: 30px;
}

.fab {
	color: #915063;
}

.divider {
  width: 95%;
  border: none;
  border-top: 1px solid #db9597;
  margin: 20px auto;
}

.contact {
	display: flex;
	flex-direction: column;
	font-family: Playfair Display, serif;
	background-color: #f8d8d9;
	width: 100%;
	margin: 15px auto;
	color: #915063;
	padding: 10px;
}

.contact h2 {
	font-size: 14px;
}

}