@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}

/* Burger Menu */
#menuToggle {
  display: block;
  position: relative;
  top:20px;  /* burger position */
  left:0px;
    z-index: 1;
    -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #fff; /* list colour */
    transition: color 0.3s ease;
}
#menuToggle a:hover {
  color:#F4A261;
}
#menuToggle input {
  display: block;
  width: 50px;
  height: 36px;
  position: absolute;
  top: -10px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
   -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom:7px;
  position: relative;
  background: #fff; /* burger colour */
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-4px, -6px);
  background:#fff; /* X colour */
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(4px, -3px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 600px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  opacity: 1;
  background:rgba(0,0,0,0.7); /* menu bg colour */
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}
 /* Burger Menu */

.call-now-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #F4A261; /* Adjust colour as needed */
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
        cursor: pointer;
        z-index: 1000; /* Ensures it stays on top */
    }

    .call-now-button:hover {
        background-color: #e2c5c4; /* Slightly darker shade on hover */
    }

/*Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    min-width: 330px;
 
    line-height: 20px;
	margin-top:30px;
    z-index: 1;
	overflow-x: hidden;
    overflow-y: auto;
}

.dropdown-content a {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
	text-align:left;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*Dropdown */

/* Orange F4A261  */

/* W1.................................................MOB */	

.w1 {
	width:100%;
	height:auto;
	position:relative;
	background-attachment: fixed;
}
.w1-content {
	margin:0 auto;
		padding-left:20px;
		padding-right:20px;
	font-family: 'Montserrat', sans-serif;
}
.w1-menu-logo {
	width:100%;
	height:auto;
}
.w1-menu-logo-burger {
	float:left;	
}
.w1-menu-logo-logo {
	margin-top:15px;
	float:right;	
	background-image:url(../images/logo-trans.png);
	background-size:cover;	
	width:100px;
	height:100px;
}
.w1-menu-logo-menu {
    display: none;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    margin-right: -40px;
    padding: 20px 20px 20px 0px;
}

.w1-menu-logo-menu a {
    color: #fff;
    letter-spacing: 1px;
    padding: 20px;
    margin-right: -5px;
    border-left: 1px solid #fff;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: bold;
}

.w1-menu-logo-menu a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}
@media only screen and (min-width: 1000px) {
.w1-menu-logo-burger {
	display:none;
}
.w1-menu-logo-logo {
	float:left;	
	width:150px;
	height:150px;
}
.w1-menu-logo-menu {
	display: flex;
    
}
}
@media only screen and (min-width: 1200px) {
.w1-menu-logo-menu {
	padding:30px 30px 30px 0px;
}
.w1-menu-logo-menu a { 
padding:30px;
}
}
.w1-header-container {
	padding-left:20px;
	padding-right:20px;
}
.w1-header {	
    width: 100%;
    height: auto;
    position: absolute; /* Keep absolute positioning for flexibility */
    top: 50%; /* Move down 50% of the container's height */
    left: 50%; /* Move right 50% of the container's width */
    transform: translate(-50%, -50%); /* Offset by 50% of itself to perfectly center */
    text-align: center; /* Center-align the content inside the header */
}

.w1-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 36px;
	line-height:46px;
	letter-spacing:3px;
	font-weight:700;
	max-width:1000px;
	margin:0 auto;
}
.w1-header p {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
	line-height:28px;
	letter-spacing:3px;
	font-weight:700;
	margin-top:30px;
}
.w1-header-button {
	background-color:#000;
	width:180px;
	height:40px;
	color:#fff;
	margin:0 auto;
	text-align:center;
	font-size: 18px;
	line-height:40px;
	letter-spacing:3px;
	margin-top:40px;
	transition:0.5s;
}
.w1-header-button:hover {
	opacity:0.5;
	transition:0.5s;
}
@media only screen and (min-width: 320px) {
.w1-header h1 {
	letter-spacing:5px;
}
}
@media only screen and (min-width: 500px) {
.w1-header h1 {
    font-size: 46px;
	line-height:56px;
	letter-spacing:10px;
}
.w1-header p {
	letter-spacing:5px;
}
}
@media only screen and (min-width: 800px) {
.w1-header h1 {
    font-size: 56px;
	line-height:66px;
}
.w1-header p {
	letter-spacing:8px;
}
}
/* W2.................................................MOB */	

.w2 {
	width:100%;
	height:auto;
	padding-bottom:60px;
	background: linear-gradient(to bottom, #FFF7E9, #FFFFFF);
	background-image:url(../images/relaxing-background.webp);
	background-size:cover;
}
.w2-content {
	max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
	padding-bottom:60px;
	padding-top:60px;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); 
}
.w2 h2 {
	font-family: 'Montserrat', sans-serif;
    color: #F4A261;
    text-transform: uppercase;
    font-size: 36px;
	line-height:46px;
	letter-spacing:3px;
	font-weight:700;
	
}
.w2 h3 {
	font-family: 'Montserrat', sans-serif;
    color: #F4A261;
    text-transform: uppercase;
    font-size: 26px;
	line-height:36px;
	letter-spacing:3px;
	font-weight:700;
}
.w2 h4 {
	font-family: 'Montserrat', sans-serif;
    color: #666;
    text-transform: uppercase;
    font-size: 22px;
	letter-spacing:2px;
	font-weight:700;
	margin-bottom:0px;
}
.w2 p,li {
	font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 17px;
	line-height:27px;
	letter-spacing:1px;
	transition:0.5s;
}
.w2 a:hover {
    color: #F4A261;
	transition:0.5s;
}
.w2-contact-button {
	background-color:#F4A261;
	width:280px;
	height:40px;
	color:#fff;
	text-align:center;
	font-size: 17px;
	line-height:40px;
	letter-spacing:2px;
	margin-top:40px;
	transition:0.5s;
}
.w2-contact-button:hover {
	opacity:0.5;
	transition:0.5s;
}
@media only screen and (min-width: 500px) {
.w2-content {
		padding-left:30px;
		padding-right:30px;
}
}
.massage-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.massage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
	transition:0.5s;
}
.massage-item:hover {
	opacity:0.5;
	transition:0.5s;
}
.massage-item img {
    max-width: 100%;
    height: auto;
    border-radius:50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.massage-text {
    max-width: 500px;
}

/* Larger screens */
@media screen and (min-width: 768px) {
    .massage-item {
        flex-direction: row;
        text-align: left;
		margin-bottom:20px;
    }

    .massage-item img {
        max-width: 200px;
    }

    .massage-text {
        padding-left: 20px;
    }
}
    .pricing-section {
        max-width: 800px;

    }

.pricing-section h3 {
        color: #F4A261;
        font-size: 20px;
        margin-top: 20px;
        text-align: left;
		font-family: 'Montserrat', sans-serif;
		
    }

    /* Table Styling */
    .pricing-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
		font-family: 'Montserrat', sans-serif;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px;
        text-align: center;
        border: 1px solid #ddd;
        font-size: 16px;
    }

    .pricing-table th {
        background-color: #F4A261;
        color: #fff;
        font-weight: bold;
    }

    .pricing-table td:nth-child(1) {
        font-weight: bold;
    }

    .alternate-row {
        background-color: #f9f9f9;
    }
	
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.testimonial-section h2 {
    color: #F4A261;
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonial {
    background: linear-gradient(to bottom, #FFF7E9, #FFFFFF);
    border: 2px solid #F4A261;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial span {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
}
/* W3.................................................MOB */	

.w3 {
	width:100%;
	height:auto;
}
.w3-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: 'Montserrat', sans-serif;
}


/* W4.................................................MOB */	

.w4 {
	width:100%;
	height:auto;
	padding-top:80px;
	padding-bottom:80px;
	background-image:url(../images/chichesterasianmassage-services.webp);
	background-size:cover;
	background-position:center;
}
.w4-content {
	max-width:1400px;
	margin:0 auto;
	overflow:hidden;
		padding-left:30px;
		padding-right:30px;
	font-family: 'Montserrat', sans-serif;
}
.w4-services {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding-top:40px;
	
}
.w4-service-box {
	margin:25px;
	min-width:230px;
	border-radius:20px;
	transition:0.3s;
	color:#fff;
	box-shadow: 10px 10px 10px rgba(233,233,233,1);
	border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.w4-service-box-image {
	text-align:center;
	padding-bottom:15px;
	background-color:rgba(255,158,0,0.4);
	padding:20px;
	border-top-left-radius:20px;
	border-top-right-radius:20px;
}
.w4-service-box-text {
	padding:20px;
	text-align:center;
	
	font-size:18px;
		text-transform:uppercase;
		font-weight:bold;
		letter-spacing:1px;
			background-color:rgba(255,158,0,0.7);
			border-bottom-left-radius:20px;
			border-bottom-right-radius:20px;
}
.w4-service-box:hover {
	transition:0.3s;
	color:#fff;
	background-color:#F4A261;
	
}
@media only screen and (min-width: 1000px) {
.w4 {
	background-image:none;
	background: linear-gradient(to bottom, #FFF7E9, #FFFFFF);
}
}

/* W5.................................................MOB */	
.gradient-container {
	background: linear-gradient(to bottom, #FFFFFF, #FFF7E9);
}

.w5 {
	width: 100%;
	height: auto;
	padding-top: 100px;
	padding-bottom:80px;
}

.w5-content {
	max-width: 1200px;
	margin: 0 auto;
	margin-left: 20px;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	overflow:visible;
	font-family: 'Montserrat', sans-serif;
}
.w5 h4 {
	
font-weight:400;
	color:#fff;
	font-size:22px;
	line-height:30px;
	margin-top:10px;
	position:relative;
}
.w5 h4::after {
    content: '';
    display: block;
    width: 60px; /* Adjust the width to control the underline length */
    height: 1px; /* Adjust the height to control the thickness */
    background-color: #fff; /* The color of the underline */
    position: absolute;
    bottom: -15px; /* Adjust the distance below the text */
    left: 0; /* Align the underline with the start of the text */
}
.w5-text {
	box-sizing: border-box;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #fff;
	padding: 20px;
	position: relative;
	z-index: 2;
	background-color:#F4A261;
	width: 100%;	
}

.w5-img {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	width: 100%;
	margin-bottom:-8px;
}

.w5-img img {
	width: 100%;
}

@media only screen and (min-width: 700px) {
	.w5-content {
		display: flex;
		flex-direction: row; /* Ensure text is on the left and image on the right */
		margin-left:auto;
		margin-right:auto;
	}
	.w5-text {
		width: 60%;
		height:auto;
		overflow:hidden;
		margin-left:20px;
		margin-right:-30px;
		margin-top:20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
	
	}
	.w5-img {
	width: 40%;
	margin-top:-20px;
}
}
@media only screen and (min-width: 1000px) {
.w5-text {
	padding: 30px;	
}
}
/* W6.................................................MOB */	

.w6 {
	width: 100%;
	height: auto;
	margin-top:140px;
}

.w6-content {
	max-width: 1200px;
	margin: 0 auto;
	overflow:visible;
	margin-left: 20px;
	margin-right: 20px;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}
.w6 h4 {
	
font-weight:400;
	color:#fff;
	font-size:22px;
	line-height:30px;
	margin-top:10px;
	position:relative;
}
.w6 h4::after {
    content: '';
    display: block;
    width: 60px; /* Adjust the width to control the underline length */
    height: 1px; /* Adjust the height to control the thickness */
    background-color: #fff; /* The color of the underline */
    position: absolute;
    bottom: -15px; /* Adjust the distance below the text */
    left: 0; /* Align the underline with the start of the text */
}
.w6-text {
	box-sizing: border-box;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #fff;
	padding: 20px;
	position: relative;
	z-index: 2;
	background-color:#F4A261;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
}

.w6-img {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	width: 100%;
	margin-bottom:-8px;
}

.w6-img img {
	width: 100%;

}

@media only screen and (min-width: 700px) {
	.w6-content {
		display: flex;
		flex-direction: row-reverse; /* Ensure text is on the left and image on the right */
		margin-left:auto;
		margin-right:auto;
	}
	.w6-text {
		width: 60%;
		margin-right:20px;
		margin-left:-30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
	transform: translateY(10%); /* Slightly move text down */
	}
	.w6-img {
	width: 40%;
}
}
@media only screen and (min-width: 1000px) {
.w6-text {
	padding: 30px;	
}
}

/* W7.................................................MOB */	

.w7 {
	width:100%;
	height:auto;
	padding-top:60px;
}
.w7-content {
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: 'Montserrat', sans-serif;
}
.w7 h5 {
    color: #F4A261;
    text-transform: uppercase;
    font-size: 36px;
	line-height:46px;
	letter-spacing:3px;
	font-weight:700;
	text-align:center;	
}
.w7 p {
    color: #666;
    font-size: 17px;
	line-height:27px;
	letter-spacing:1px;
	max-width:1000px;
	margin:0 auto;
	padding-bottom:30px;
}
/* W8.................................................MOB */	

.w8 {
	width:100%;
	height:auto;
	background-color: #F4A261;
	padding-top:30px;
	padding-bottom:30px;
}
.w8-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
display:flex;
	flex-direction:column;
}
.w8-contacts {
	width:100%; 
}
.w8 h6 {
    text-align: left;
    font-size: 24px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
}

.w8 h6::after {
    content: '';
    display: block;
    width: 60px; /* Adjust the width to control the underline length */
    height: 1px; /* Adjust the height to control the thickness */
    background-color: #fff; /* The color of the underline */
    position: absolute;
    bottom: -15px; /* Adjust the distance below the text */
    left: 0; /* Align the underline with the start of the text */
}
.w8 p {
	font-family: "Poppins", sans-serif;
	color:#fff;
	font-size:16px;
	line-height:28px;
	letter-spacing:1px;
	transition:0.5s;
}
.w8 a:hover {
	transition:0.5s;
	color:#e2c5c4;
}
@media only screen and (min-width: 1000px) {
	.w8-content {
	flex-direction:row;
}
.w8-contacts {
        width: calc(33.33%);
		padding-left:20px;
		padding-right:20px;
    }
}

/* W9.................................................MOB */	

.w9 {
	width:100%;
	height:auto;
}
.w9-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: 'Montserrat', sans-serif;
}
@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 700px) {
}

@media only screen and (min-width: 800px) {
}

@media only screen and (min-width: 900px) {
}

@media only screen and (min-width: 1000px) {
}

@media only screen and (min-width: 1100px) {
}

@media only screen and (min-width: 1200px) {
}

