body {
	background-color: #F9F1E4;
	margin: 0;
	font-family: Georgia, serif;
	overflow-x:hidden;
}

/* Secondary colour = #4F704E */
/*
-------------------
UTILITY - Buttons
-------------------
*/

:root {
  /* Colors */
  --primary-green: #4CAF50;
  --dark-green: #2E7D32;
  --background-cream: #F9F1E4;
  --text-primary: #333;
  --text-secondary: #666;
  --text-light: #888;
  --white: white;
  
  /* Background colors for sections */
  --about-bg: #F5EDD6;
  --service-bg: #F1E8C8;
  --contact-bg: #EDE3BA;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #A3B18A, #A3B18A);
  
  /* Common spacing values */
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-circle: 50%;
  
  /* Shadows */
  --shadow-button: 0 4px 15px rgba(46, 125, 50, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/*
----------
NAVBAR
----------
*/

.navbar {
	width:100%;
	height:120px;
	background-color:#F9F1E4;
	display:flex;
	align-items:center;
	padding: 0 50px;
	box-sizing:border-box;
	position:fixed;
	top:0;
	z-index:2500;
	border-bottom: 2px solid grey;
	justify-content:center;
}

.nav-left {
    position: absolute;
    left: 40px;
    display: flex;
    max-width: 200px;
    cursor: pointer;
}

.nav-left img {
    height: auto;
    width: 45%;
    transition: transform 0.2s ease, opacity 0.2s ease;  /* Move transition here */
    transform-origin: center;  /* Add this */
}

.nav-left:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.nav-center {
	flex: 0 0 auto;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:50px;
}

.nav-right {
	position:absolute;
	right:40px;
	display:flex;
}


/* Hamburger menu button */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
	z-index: 2600;
	position: absolute;
	right: 20px;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background-color: #666;
	margin: 4px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links .brand-link {
	color: #666;
	font-size:28px;
	font-weight:bold;
	text-decoration:none;
	position:relative;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding: 24px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    text-align: center;
}

.brand-link:hover {
	color:#4F704E;
	border: none;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(0.5px);
}

.brand-link:active {
	color:#A3B18A;
	border:none;
	background:transparent;
	box-shadow: inset 0 12px 12px -8px rgba(0, 0, 0, 0.25); /* More visible shadow - darker and larger */
    transform: translateY(0.5px);
}

.nav-links {
	display:flex;
	gap:50px;
	position:relative;
	align-items:center;
	font-weight:bold;
}

.nav-links a {
	color:#888;
	text-decoration:none;
	font-size:16px;
	padding:15px;
	position:relative;
	border-radius:50%;
	border: none;
	background: transparent;
	box-shadow: none;
	transition: box-shadow 0.2s ease-out, color 0.2s ease, transform 0.2s ease;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:50px;
	height:50px;
	text-align:center;
}

.nav-links a:hover {
	color:#4F704E;
	border: none;
	background: rgba(255, 255, 255, 0.05);
	/*transform:translateY(-0.5px);*/
}

.nav-links a.active {
	color: #4F704E;
	/*font-weight:bold;
    border: none;
    background: transparent;
    transform: translateY(0.5px);*/
}

.nav-book {
	color:#4F704E;
	text-decoration:none;
	font-size:16px;
	padding:14px 28px;
	/*background-color:#2E6F40*/
	/*background:#A3B18A; */
	background-color:transparent;
	border-radius:25px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    font-weight: 500;
	border: 2px solid #A3B18A;
}

.nav-book:hover {
	background-color: #A3B18A;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
}

.nav-underline {
	position:absolute;
	bottom: 30px;
	left: 110px;
	height:3px;
	background:#4F704E;
	border-radius:2px;
	transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity:0;
	width:0;
}

.nav-underline.active {
	opacity:1;
	width:50px;
}

.nav-links a.clicked {
  box-shadow: inset 0 6px 6px -4px rgba(0, 0, 0, 0.25);
  transform: translateY(0.5px);
  color:#4F704E;
}

/*
----------------
HERO PAGE
----------------
*/

.hero-section {
	position:relative;
	/*min-height:100vh;*/
	height:60vh;
	margin-top:175px;
	padding:0;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
}

.hero-background {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
}

.hero-background img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center; /* <-----? */
}
.hero-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(249, 241, 228, 0.3);
	z-index:2;
}

.hero-content {
	position:relative;
	z-index:3;
	/*padding: 20px 40px 90px 40px;*/
	padding: 1rem 2rem;
    max-width: 40%; /* Try percentage instead */
    width: fit-content;
	margin: 0 auto;
	text-align:center;
	gap:30px;
}

.hero-icon-text {
	background:rgba(249, 241, 228, 0.95);
	border-radius:20px;
	padding-bottom:20px;
	padding-top:10px;
	padding-left: 60px;
	padding-right: 60px;
	color:grey;
	opacity:1;
}

.hero-icon-text h1 {
	font-size:50px;
}

.brand-name {
  position: relative;
  display: inline-block;
  font-weight:600;
}

.brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;       /* space between text and line */
  width: 100%;
  height: 3px;        /* thin underline */
  background: linear-gradient(90deg, #8e44ad, #3498db); /* gradient for modern look */
  border-radius: 2px; /* slightly rounded edges */
}

.hero-text-box {
	background: rgba(249, 241, 228, 0.95);
	padding: 2rem 3rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 500px;
}

.hero-text-box h1 {
	font-size:2rem;
	color:#666666;
	margin-bottom:20px;
	font-weight:normal;
}

.hero-text-box p {
	font-size:1.3rem;
	color:#555;
	line-height:1.6;
	margin: 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
	background:#A3B18A;
    /* background:#2E6F40; RHIANNAS COLOUR */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    cursor: pointer;
    margin-top: 20px;
	border: 1px solid grey;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.section {
    min-height: 100vh;
    padding: 120px 20px 40px;
    display: block;
    text-align: center;
}

.section-content {
    max-width: 1200px;
	margin: 0 auto;
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items:center;
	text-align:left;
}

.section-content .text {
	font-size: 1.2rem;
	color:#555;
	line-height:1.6;
}

.section-content .image {
	display:flex;
	justify-content:center;
	align-items:center;
}
.section-content .image img {
	max-width:100%;
	height:auto;
	border-radius:12px;
	display:block;
}

.section:nth-child(even) .section-content {
  grid-template-columns: 1fr 1fr;
}

.section:nth-child(even) .section-content .text {
  order: 2;
}

.section:nth-child(even) .section-content .image {
  order: 1;
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
        padding: 0 20px;
    }
    
    .nav-left {
        left: 20px;
        max-width: 150px;
    }
    
    .nav-left img {
        width: 60%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-center {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #F9F1E4;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid grey;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-center.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    
    .nav-links .brand-link {
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 0;
        font-size: 24px;
        text-align: center;
    }
    
    .nav-links a {
        width: 100%;
        height: auto;
        padding: 18px 20px;
        border-radius: 0;
        text-align: center;
        font-size: 18px;
    }
    
    .nav-links a:hover {
        background: rgba(163, 177, 138, 0.1);
    }
    
    /* Hide separators */
    .nav-links::before,
    .nav-links::after {
        content: '';
        display: none;
    }
    
    /* Hide the underline animation on mobile */
    .nav-underline {
        display: none;
    }
    
    /*Hide the desktop Book button on mobile */
    .nav-right {
        display: none;
    }
    
    /* Adjust hero section for mobile navbar */
    .hero-section {
        margin-top: 100px;
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 1rem;
    }
    
    .hero-icon-text {
        padding: 15px 30px;
    }
    
    .hero-icon-text h1 {
        font-size: 32px;
    }
    
    .hero-icon-text p {
        font-size: 14px;
    }
}

/* Hide mobile book link on desktop */
.mobile-book {
    display: none !important;
}

@media (max-width: 768px) {
    /* Show mobile book link in hamburger menu */
    .mobile-book {
        display: block;
        width: 100%;
        height: auto;
        padding: 18px 20px;
        border-radius: 0;
        text-align: center;
        font-size: 18px;
        background: #A3B18A;
        color: white;
        font-weight: bold;
        margin-top: 10px;
        border-top: 1px solid rgba(163, 177, 138, 0.3);
    }
    
    .mobile-book:hover {
        background: #8fa076;
    }
}


/* For section where I want a bigger screen: */

.section.large {
	min-height:100vh;
	padding:40px 20px;
	padding-top:120px;
}


/* scroll down icon */

.hero-extended-arrow {
	font-size: 2.5rem;
	color: #666;
	animation: bounce 2s infinite;
	cursor: pointer;
}

@keyframes bounce {
	0%, 100% { 
		transform: translateY(0); 
	}
	50% { 
		transform: translateY(10px); 
	}
}



/* --- HERO EXTENDED --- */

.hero-extended {
	position: relative;
	padding: 80px 20px 50px 20px;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
}

.hero-extended-arrow {
	position: absolute;
	top: 10px;
	right: 50px;
	z-index: 10;
}

.hero-extended-arrow img {
	width: 80px;
	height: auto;
	opacity: 0.8;
	cursor: pointer;
	transition: opacity 0.3s;
}

.hero-extended-arrow img:hover {
	opacity: 1;
}

.hero-text {
	text-align: right;
	padding-left: 20px;
	font-size: 24px;
}

.hero-text-2 {
	text-align: left;
	padding-right: 20px;
	color: grey;
	font-size: 24px;
}

.hero-text p {
	color: grey;
}

.hero-extended-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-extended-image img {
	width: 50%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
}

.about-more-button {
	text-align: center;
	grid-column: 1 / -1;
	margin-top: 20px;
}

.about-more-button button {
	text-align: center;
	background-color: #A3B18A;
	color: white;
	padding: 20px 35px;
	border-radius: 15px;
	border: 1px solid grey;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.about-more-button button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
}

/* ===================================================
   MOBILE RESPONSIVE - Makes it readable on phones
   =================================================== */

@media (max-width: 768px) {
	.hero-extended {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 40px 20px 30px 20px;
		gap: 30px;
	}
	
	/* Hide down arrow on mobile */
	.hero-extended-arrow {
		display: none;
	}
	
	/* First text block */
	.hero-text {
		order: 1;
		text-align: center;
		padding: 0 15px;
		font-size: 18px;
		line-height: 1.6;
	}
	
	/* Image in the middle */
	.hero-extended-image {
		order: 2;
		margin: 20px 0;
	}
	
	.hero-extended-image img {
		width: 60%;
		max-width: 200px;
	}
	
	/* Second text block */
	.hero-text-2 {
		order: 3;
		text-align: center;
		padding: 0 15px;
		font-size: 18px;
		line-height: 1.6;
	}
	
	/* Button at the bottom */
	.about-more-button {
		order: 4;
		margin-top: 10px;
	}
	
	.about-more-button button {
		padding: 15px 30px;
		font-size: 15px;
		width: auto;
	}
}

/* ===================================================
   TABLET RESPONSIVE (between phone and desktop)
   =================================================== */

@media (max-width: 1024px) and (min-width: 769px) {
	.hero-extended {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 60px 30px 40px 30px;
		gap: 25px;
	}
	
	.hero-text,
	.hero-text-2 {
		text-align: center;
		padding: 0 30px;
		font-size: 20px;
		line-height: 1.6;
	}
	
	.hero-extended-image {
		order: 2;
		margin: 15px 0;
	}
	
	.hero-text {
		order: 1;
	}
	
	.hero-text-2 {
		order: 3;
	}
	
	.about-more-button {
		order: 4;
		margin-top: 15px;
	}
	
	.hero-extended-image img {
		width: 40%;
		max-width: 300px;
	}
}


/* 
---------------------
About Page
---------------------
*/

.section-heading {
	text-align:center;
	margin-bottom:25px;
}

.section-heading h2 {
	margin:0;
	font-size:32px;
	color:grey;
	font-weight:normal;
}

.section-heading h3 {
	margin:10px 0;
	font-size:18px;
	color: #888;
    font-weight: normal;
    font-style: italic;
	
}


.about-header {
	text-align:center;
	margin-bottom:40px;

}

.about-header img {
	border-radius:20px;
	height:150px;
	width:auto;
	display:block;
	margin: 0 auto;
	box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);

}

.about-header-text {
	margin-top:50px;
	width:50vw;
	margin-left:auto;
	margin-right:auto;
	
}


.about-header-text p {
    margin: 15px 0 0 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.consultation-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.consultation-text h3 {
    font-family: Georgia, serif; /* Match your body font */
    font-size: 1.4rem;
    color: #333;
    font-style: italic;
    font-weight: normal; /* Remove bold */
    margin-bottom: 5px;
}

.consultation-text h4 {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #888;
    font-style: italic;
    font-weight: normal; /* Remove bold */
    margin-bottom: 20px;
}

.consultation-text p {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    line-height: 1.6;
}

.treatment-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.treatment-text {
    font-family: Georgia, serif;
}

.treatment-text h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #333;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 20px;
}

.treatment-text p {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 15px;
}

.consultation-image img,
.treatment-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Healing section */

.healing-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.healing-text h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: #333;
    font-weight: normal;
    margin-bottom: 30px;
    text-align: center;
}

.healing-text p {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.healing-image {
	display:flex;
	justify-content:center;
	align-items:center;
}

.healing-image img {
	width:100%;
	height:auto;
	border-radius:12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* ILLUSTRATION HERE COULD BE COOL
.healing-illustration {
    /* You can add CSS art here or use an actual image */ /*
    height: 400px;
    background: linear-gradient(45deg, #e8f5e8, #f1f8e9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

*/


/*Lisa Section */

.about-lisa-section {
    max-width: 1000px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.lisa-header {
    text-align: center;
    margin-bottom: 50px;
}

.lisa-header h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: #4F704E;
    font-weight: normal;
    margin-bottom: 20px;
}

.lisa-header p {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
	/* MAKE ITALICISED */
}

.lisa-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.lisa-image img {
    width: 100%;
    max-width: 250px;
    height: 300px;
    border-radius: 200px 200px 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	object-fit:cover;
}

.lisa-qualifications h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #666;
    font-weight: normal;
    margin-bottom: 20px;
}

.lisa-qualifications ul {
    list-style: none;
    padding: 0;
}

.lisa-qualifications li {
    font-family: Georgia, serif;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.lisa-qualifications li::before {
    content: '';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.lisa-philosophy {
    text-align: center;
    margin-bottom: 40px;
}

.lisa-philosophy p {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.consultation-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 15px;
}

.consultation-cta p {
    font-family: Georgia, serif;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.book-chat-btn {
    display: inline-block;
    padding: 12px 30px;
    background:#A3B18A;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: Georgia, serif;
    margin: 20px 0;
    transition: all 0.3s ease;
	border:2px solid grey;
}

.book-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lisa-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lisa-header h2 {
        font-size: 2rem;
    }
}



/* Mobile responsive */
@media (max-width: 768px) {
    .healing-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .healing-text h2 {
        font-size: 2rem;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .consultation-section,
    .treatment-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-image {
        order: 2;
    }
    
    .treatment-text {
        order: 1;
    }
}

/*
------------------
Servives Page:
------------------
*/

.services-hero {
	position:relative;
	height:250px;
	background-image:url('sunset-crop.png');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	display:flex;
	align-items:center;
	margin-bottom:80px;
	border-radius: 10px;
	justify-content:center;
	color:grey;
}


.services-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 55%;
  padding-bottom:20px;
  background: rgba(249, 241, 228, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 1; /* sits behind text */
}

.services-hero h1,
.services-hero p {
  position: relative;
  z-index: 2; /* ensure text sits above the box */
}

.services-header-content {
	background:rgba(249, 241, 228, 0.95);
	padding: 35px 55px;
	border-radius: 25px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
 
.services-header-content h1 {
	font-size: 3rem;
	color: #666;
	margin: 0 0 15px 0;
	font-weight: normal;
}

.services-header-content p {
    font-size: 1.3rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

.services-container {
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


/* Organic Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  margin: 60px 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 320px;
  align-items: stretch;
}

/* Service Images */
.service-image {
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius:0;
}

.service-image img {
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:0;
	display:block;
}

/* Alternating Layout */
.service-card:nth-child(even) .service-card-content {
  grid-template-columns: 1fr 2fr;
}

.service-card:nth-child(even) .service-text {
  order: 2;
  padding-right: 50px;
  padding-left: 40px;
}

.service-card:nth-child(even) .service-image {
  order: 1;
}

/* Service Text Styling */
.service-text {
  padding: 25px 30px 30px 45px;
  height: 320px;  /* Fixed height instead of letting content expand */
  overflow: hidden;  /* Hide any overflow */
}

.service-title {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: normal;
}

.service-subtitle {
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-techniques {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.service-techniques li {
  position: relative;
  padding: 5px 0 5px 25px;
  color: #666;
  font-size: 0.85rem;
  line-height:1.5;
}

.service-techniques li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #4F704E;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0px;
  justify-content: space-between;
}


.service-cost {
  color: #333;
  font-size: 1.05rem;
  font-weight: bold;
}

/* Service 1 - Therapeutic Bodywork */
.service-1 .service-image {
  background: linear-gradient(135deg, #DDBEA9 0%, #CB997E 50%, #A5A58D 100%);
  position: relative;
}

.service-1 .service-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

/* Service 2 - Integrated Healing */
.service-2 .service-image {
  background: linear-gradient(135deg, #E9EDC9 0%, #CCD5AE 50%, #FEFAE0 100%);
  position: relative;
}

.service-2 .service-image::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 15px;
}

/* Service 3 - Deep Pattern Release */
.service-3 .service-image {
  background: linear-gradient(135deg, #D4A574 0%, #BC9A6A 50%, #A67C52 100%);
  position: relative;
}

.service-3 .service-image::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 12px;
  height: 40px;
}

/* Book Now Section */
.book-now-section {
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 60px;
  border-radius: 25px;
}

.book-now-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  cursor: pointer;
	border: 2px solid grey;
  font-family: Georgia, serif;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-hero {
	height: 200px;
	margin-bottom: 40px;
  }
  
  .services-header-content {
	padding: 25px 30px;
  }
  
  .services-header-content h1 {
	font-size: 2.5rem;
  }
  
  .service-card-content,
  .service-card:nth-child(even) .service-card-content {
	grid-template-columns: 1fr;
  }
  
  .service-text,
  .service-card:nth-child(even) .service-text {
	order: 1;
	padding: 30px 25px 15px 25px;
  }
  
  .service-image,
  .service-card:nth-child(even) .service-image {
	order: 2;
	height: 180px;
  }
  
  .service-meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
  }
}


/*
-------------------------------
		CONTACT PAGE
-------------------------------
*/

#contact {
	padding-top:20px;
}

#contact .contact-header {
	padding-bottom:20px;
}

#contact .section-content {
	display:block;
	max-width:1200px;
	margin: 0 auto;
}

.contact-two-column {
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap:40px;
	max-width:1200px;
	margin: 0 auto 20px auto;
	padding: 0 20px;
}

#contact .contact-hero-image {
	width:100%;
	margin: 40px 0 60px 0;
	text-align:center;
}

#contact .contact-hero-image img {
	width: 90%;
	max-width:1200px;
	height:200px;
	object-fit:cover;
	object-position: center; /* < doesnt work? */
	border-radius:20px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	display:block;
	margin: 0 auto;
}

.contact-info-card {
	background:white;
	padding:35px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border-radius:20px;
	text-align:left;

}

.contact-info-card h2 {
	text-align:center;
}

.contact-form-card {
	background:white;
	padding:35px;
	border-radius:20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 10px;
	text-align: center;
	font-weight: normal;
}

.contact-form-card .form-subtitle {
	color: #888;
	font-style: italic;
	margin-bottom: 25px;
	text-align: center;
	font-size: 0.95rem;
}

.contact-subtitle {
	color: #888;
	font-style: italic;
	margin-top: 10px;
}

.contact-info-title {
	color: #666;
	font-size: 1.5rem;
	margin-bottom: 30px;
	font-weight: normal;
}

.contact-methods {
	margin: 40px 0;
	display: block;
	text-align: left;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0;
	padding: 10px 0;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(5px);
}

.contact-icon {
	font-size: 1.1rem;
	color: #888;
	width: 20px;
	text-align: center;
}

.contact-label {
	color: #888;
	font-weight: bold;
	min-width: 50px;
}

.contact-value {
	color: #4CAF50;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-value:hover {
	text-decoration: underline;
	color: #2E7D32;
}

/* Free consultation note */
.free-consultation {
	margin: 30px 0;
	padding: 20px;
	background: rgba(76, 175, 80, 0.08);
	border-radius: 12px;
	color: #666;
	font-style: italic;
	text-align: center;
	border: 1px solid rgba(76, 175, 80, 0.15);
}

/* Hours display */
.hours-display {
	margin: 40px auto;
	padding: 25px 40px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 15px;
	text-align: center;
	box-shadow: none;
	max-width: 400px;
}

.hours-display h3 {
	color: #666;
	margin: 0 0 15px 0;
	font-size: 1rem;
	font-weight: normal;
}

.hours-content {
	margin: 0;
}

.hours-content div {
	margin: 8px 0;
	color: #888;
	font-size: 0.95rem;
}

/* Form styling for side-by-side layout */
.contact-form-card .simple-form-row {
	margin-bottom: 15px;
	display: block;
}

.contact-form-card .simple-form-row input,
.contact-form-card .simple-form-row textarea,
.contact-form-card .service-select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: Georgia, serif;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.contact-form-card .simple-form-row textarea {
	resize: vertical;
	min-height: 100px;
}

.contact-form-card .simple-form-row input:focus,
.contact-form-card .simple-form-row textarea:focus,
.contact-form-card .service-select:focus {
	outline: none;
	border-color: #4CAF50;
	background: white;
	box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.contact-form-card select {
	color:grey;
}

.contact-form-card select:valid {
	color:grey;
}

.contact-form-card select option {
	color:#333;
}

.contact-form-card select option[value=""] {
	color:#999;
}

.contact-form-card .simple-submit-btn {
	background:#A3B18A;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 12px;
	font-family: Georgia, serif;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
	width: 100%;
	border:2px solid grey;
}

.contact-form-card .simple-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
}

.contact-header h1 {
	color: #4F704E;
}

/* Mobile responsive - stack on smaller screens */
@media (max-width: 768px) {
	.contact-two-column {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-item {
		padding: 8px 0;
	}
	
	.hours-display {
		padding: 15px;
	}
}

/*
-----------------
BOOKING PAGE:
-----------------
*/

.booking-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2200;
	pointer-events:none;
	opacity: 0;
	visibility:hidden;
	transition: all 0.3s ease;
}

.booking-overlay.active {
	opacity: 1;
	visibility:visible;
	pointer-events:auto;
}

.booking-panel {
	position:fixed;
	top:0;
	right:0;
	width:70%;
	max-width:1000px;
	height:100vh;
	background: #F9F1E4;
	z-index: 2300;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	display:flex;
	flex-direction: column;
}

.booking-sidebar {
	display:none;
}

.booking-sidebar img {
    width: 100%;
	max-width:280px;
    height: auto;
    display: block;
	object-fit:contain;
	border-radius:30px;
}

.booking-panel.active {
  transform: translateX(0);
}

.booking-header {
  padding: 20px 30px;
  border-bottom: 2px solid rgba(163, 177, 138, 0.3);
  background: linear-gradient(135deg, #F5EDD6, #F1E8C8);
  position: sticky;
  top: 0;
  z-index: 10;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-header-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	border: 3px solid #A3B18A;
}

.booking-header h2 {
  margin: 0;
  color: #4F704E;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.close-booking {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ddd;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.close-booking:hover {
  background: #fff;
  border-color: #A3B18A;
  color: #4F704E;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.booking-content {
  padding: 25px 40px 40px 40px;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  flex: 1;
  background: linear-gradient(to bottom, #F9F1E4 0%, #F5EDD6 100%);
}

.booking-intro {
	font-size:0.95rem;
	color:#666;
	margin-bottom:25px;
	text-align:center;
	max-width:600px;
	margin-left:auto;
	margin-right:auto;
	line-height: 1.5;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	border-left: 4px solid #A3B18A;
}

.booking-form {
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
	max-width:900px;
	width:100%;
	margin: 0 auto;
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
	display:flex;
	flex-direction:column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}
.form-group label {
	display:block;
	margin-bottom:6px;
	color:#4F704E;
	font-weight:600;
	font-size:0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #d0d0d0;
  background: #fff;
}

.form-group textarea {
	resize:vertical;
	min-height:70px;
	max-height:100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A3B18A;
  background: white;
  box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.15);
}

.checkbox-group {
	display:flex;
	align-items:center;
	flex-direction:row;
	padding: 8px 0;
}


.checkbox-group label {
	display: flex;
	align-items: center;
	font-weight: normal;
	font-size: 0.95rem;
	color: #666;
	cursor: pointer;
}

.checkbox-group input {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.booking-submit-btn {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, #A3B18A 0%, #8fa076 100%);
	color: white;
	border: none;
	padding: 14px 30px;
	border-radius: 10px;
	font-family: Georgia, serif;
	font-size: 1.05rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(163, 177, 138, 0.4);
	margin-top: 10px;
	letter-spacing: 0.5px;
}

.booking-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(163, 177, 138, 0.5);
	background: linear-gradient(135deg, #8fa076 0%, #A3B18A 100%);
}

.booking-submit-btn:active {
	transform: translateY(0px);
}

.booking-note {
	grid-column: 1 / -1;
	font-size: 0.8rem;
	color: #888;
	text-align: center;
	margin: 10px 0 0 0;
	font-style: italic;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.booking-panel {
		width: 100%;
	}
	
	.booking-form {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	
	.booking-content {
		padding: 20px 20px 40px 20px;
	}
	
	.booking-header {
		padding: 15px 20px;
	}
	
	.booking-header h2 {
		font-size: 1.3rem;
	}
	
	.booking-header-image {
		width: 50px;
		height: 50px;
	}
	
	.close-booking {
		width: 32px;
		height: 32px;
		font-size: 20px;
		top: 15px;
		right: 15px;
	}
	
	.booking-intro {
		font-size: 0.9rem;
		padding: 12px 15px;
		margin-bottom: 20px;
	}
}
	
	@media (max-width: 900px) {
	.booking-form {
		gap: 15px 20px;
	}
	}



	
#home {}
#about { background: var(--about-bg); }
#service { background: var(--service-bg); }
#contact { background: var(--contact-bg); }


/*
--------------
FOOTER
--------------
*/


.footer {
    background-color: var(--background-cream);
    padding: 60px 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #ddd;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-brand {
    font-size: 2.2rem;
    font-weight: bold;
    color: #4F704E;
    margin-bottom: 12px;
    font-family: Georgia, serif;
	letter-spacing:0.5px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
	font-style:italic;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
	align-items:center;
}

.footer-link {
    padding: 14px 28px;
    border: 2px solid #A3B18A;
    border-radius: 25px;
    color: #4F704E;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: transparent;
	font-weight:500;
	display:inline-block;
}

.footer-link:hover {
    border-color: #4F704E;
    background-color: #A3B18A;
	color: white;
    transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
}

.footer-link:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-right {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .footer-link {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer {
        padding: 50px 30px 35px;
    }
    
    .footer-right {
        gap: 15px;
    }
    
    .footer-link {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
	
	/* Hero extended section tablet fix */
	.hero-extended {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 60px 20px 40px 20px;
	}
	
	.hero-text,
	.hero-text-2 {
		text-align: center;
		padding: 0;
		font-size: 20px;
	}
	
	.hero-extended-image {
		order: 2;
	}
	
	.hero-text {
		order: 1;
	}
	
	.hero-text-2 {
		order: 3;
	}
	
	.about-more-button {
		order: 4;
		margin-top: 20px;
	}
	
	.hero-extended-image img {
		width: 40%;
		max-width: 300px;
	}
	
	/* Hero content tablet fix */
	.hero-content {
		max-width: 60%;
	}
	
	.hero-icon-text {
		padding: 20px 40px;
	}
	
	.hero-icon-text h1 {
		font-size: 40px;
	}
}


.booking-date-note {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 4px;
}

input[type="date"]:invalid {
    border-color: #f44336; /* red border for invalid dates */
}


/* About section mobile fix */
@media (max-width: 768px) {
  .about-header {
    display: flex;
    flex-direction: column; /* stack text under image */
    align-items: center;
    gap: 1rem;
    padding: 0 1rem; /* prevent horizontal overflow */
  }

  .about-header img {
    width: 100%;
    max-width: 300px; /* prevent image from being too large */
    height: auto;
  }

  .about-header-text {
    width: 100%;
    text-align: center;
  }
}
