html, body {
    margin: 0 0;
	padding: 0 0;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	height: 100%;
	width: 100%;
}
.container {
    display: flex;
	flex-direction: row;
	width: 100%;
    height: 100%;
	padding: 0;
	margin: 0;
}
.half {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.half::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
  z-index: -1; /* Keeps the background behind content */
}

/* Specify individual background images for each half */
.left-half::before {
  background-image: url("img/RH-Laser-Clinic-bg---Rebecca-with-laser.jpg");
}

.right-half::before {
  background-image: url("img/RH Doula bg - Rebecca with daughter.jpg");
}

/* Hover effect on the background image only */
.half:hover::before {
  transform: scale(1.05); /* Zoom effect */
  filter: brightness(65%); /* Darken effect */
}

.half .button a {
	padding: 10px 40px;
	margin: 10px 10px;
	border-radius: 10px;
	display: inline-block;
	text-decoration: none;
	font-size: 20px;
	font-weight: 900;
	transition: 0.5s;
}
.half .button a:hover {
	transition: 0.5s;
	box-shadow: 0 0 25px rgba(0,0,0,0.8);
	opacity: 0.9;
}
.left-half .button a {
	background-color: #f2d1d9;
	color: #13192f;
}
.right-half .button a {
	background-color: #0d8f97;
	color: #ffffff;
}
.left-half .button a:hover {
	background-color: #13192f;
	color: #f2d1d9;
}
.right-half .button a:hover {
	background-color: #ffffff;
	color: #0d8f97;
}



.half h2, .half p {
	max-width: 650px;
	margin: 10px auto;
	padding: 10px auto;
	text-shadow: 2px 2px 3px rgba(0,0,0,1);
}
.half h2 {
	font-size: 34px;
}
.half p {
	font-size: 20px;
	margin-bottom: 50px
}
.half img {
	margin-bottom: 100px;
}



@media only screen and (max-width : 600px ){
	.container {
		display: flex;
		flex-direction: column;
	}
	.half {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: auto;
		height: 50%;
		text-align: center;
		color: #ffffff;
		background-size: cover;
		background-position: center center;
		padding: 5px 15px;
	}
	.half img {
		margin-bottom: 5px;
		max-width: 80px;
		height: auto;
		display: block;
	}
	.half h2 {
		font-size: 18px;
		}
	.half p {
			font-size: 14px;
			margin-bottom: 10px
		}
	.half h2, .half p {
		max-width: 500px;
		width: auto;
		}
	.half .button a {
		padding: 12px 20px;
		margin: 3px 3px;
		border-radius: 10px;
		display: block;
		text-decoration: none;
		font-size: 16px;
		font-weight: 700;
		transition: 0.5s;
	}
}

/* 
blueish: #0d8f97
dark blue: #13192f
dark pink: #bc9aa2
light pink: #f2d1d9





*/
