:root {
	--main-bg-color: rgb(32, 177, 177)
}

html {
	font-size: 16px;
}

body {
	box-sizing: border-box;
	color: #efefef;
	background-color: #FCEADE;
	margin: 0;
	font-family: trebuchet ms,Verdana,verdana ref,segoe ui,Candara,lucida grande,lucida sans unicode,lucida sans,Tahoma,sans-serif
}

.cover p {
	margin-left: 5%;
	margin-right: 5%;
}

.house {
	background-image: url("houseImage.webp");
	text-shadow: 1px 1px 5px var(--main-bg-color);
}

.bathtub {
	background-image: url("bathtub.jpg");
	text-shadow: 2px 2px #63535B;
}

.mainroom {
	background-image: url("mainroom.webp");
	display: block !important;
}

.mainroom h2 {
	display: none;
	padding-top: 20px;
}

.mumDesc {
	background-color: rgba(99, 83, 91, 0.7);
	border-radius: 20px;
	padding: 20px;
	font-size: 0.65rem;
}

.cover {
	display: flex;
	justify-content: center;
	align-items: center;

	/* Full height */
	height: 100%;

	/* Center and scale the image nicely */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}

.house div {
	width: 80%;
}

h1, h2 {
	margin: 0;
}

.title {
	font-size: 4rem;
}

.tagline {
	font-size: 2rem;
}

section {
	text-align: center;
	font-size: 1.25rem;
	padding-left: 5%;
	padding-right: 5%;
	background-color: #FCEADE;
	color: #566E3D;
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

section h1 {
	padding-top: 10px;
}

h2 {
	font-size: 4rem;
}

.cover p {
	font-size: 1.5em;
}

.ratings {
	display: flex;
	flex-wrap: wrap;
}

.rating {
	text-align: center;
	flex: 1 50%;
}


.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide p {
  font-size: 1.3rem;
  text-align: center;
  margin: 0;
}

#prevBtn, #nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  padding: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#prevBtn:hover, #nextBtn:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

#prevBtn {
  left: -12%;
}

#nextBtn {
  right: -12%;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.dot.active {
  background-color: #555;
}


.mum {
	border-radius: 100%;
	width: 100px;
	height: 100px;
	margin: auto;
	border: 4px solid var(--main-bg-color);
	box-shadow: 4px 2px 4px #63535B;
}

.mumContainer {
	display: flex;
	text-align: left;
	align-items: center;
	flex-wrap: wrap;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 1rem;
	height: 90%;
}


/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 900px) {
	.house div {
		width: 60%;
	}
	section {
		width: 60%;
	}
	html {
		font-size: 16px;
	}
	.carousel-container {
		height: 300px;
	}
	#prevBtn {
		left: -7%;
	}
	#nextBtn {
		right: -7%;
	}
	.mumDesc {
		font-size: 1rem;
	}
	.mum {
		margin-right: 30px;
		width: 200px;
		height: 200px;
	}
	.mumContainer {
		flex-wrap: nowrap;
	}
	.mainroom h2 {
		display: block;
	}
}

.cta h2 {
	font-size: 2rem;
	margin-bottom: 30px;
}

.cta a {
	background-color: var(--main-bg-color);
	padding: 20px;
	border-radius: 20px;
	color: white;
	text-decoration: none;
	box-shadow: 2px 2px 4px black;
	font-size: 1rem;
}


/*
button {
	all: unset;
	cursor: pointer;
	border-radius: 100%;
	background-color: white;
	height: 30px;
	width: 30px;
	flex-shrink: 0;
	margin-left: 20px;
	margin-right: 20px;
}*/