/*
New colors
Color			Hex			HSL				RGB
Light beige		#fff6ed		30,100%,96%		255,246,237
Beige			#fee6cc		31,96%,90%		254,230,205
Brown 			#725657		358,14%,39%		114,86,87
*/

/* HP Section */
.hp-section {
	position: relative;
	padding: 50px 0;
	min-height: 200px;
}
.hp-section h2 {
	font-size: 36px;
}
.hp-section > .body-width-limiter > h2 {
	text-align: center;
}
.hp-section:nth-child(1) {
	background: rgba(255,246,237,1);
	border-bottom: 5px solid #725657;
}
.hp-section:nth-child(1):after {
	content: '';
	border-bottom: 5px solid #fee6cc;
	width: 100%;
	position: absolute;
	bottom: 7px;
	left: 0;
}
.hp-section:nth-child(2) {
	border-bottom: 5px solid #fee6cc;
}
.hp-section:nth-child(2):after {
	content: '';
	border-bottom: 5px solid #725657;
	width: 100%;
	position: absolute;
	bottom: 7px;
	left: 0;
}
.hp-section:nth-child(3) {
	background: rgba(114,86,87,1);
	color: rgba(255,246,237,1);
}
.hp-section:nth-child(3) a {
	color: rgba(254,230,205,1);
}
.hp-section:nth-child(3) a:hover,
.hp-section:nth-child(3) a:active,
.hp-section:nth-child(3) a:focus {
	color: rgba(254,230,205,0.8);
}
.hp-section:nth-child(4) {
	border-bottom: 5px solid #725657;
	background: rgba(255,246,237,1);
}
.hp-section:nth-child(4):after {
	content: '';
	border-bottom: 5px solid #fee6cc;
	width: 100%;
	position: absolute;
	bottom: 7px;
	left: 0;
}
.hp-section:nth-child(5) .hp-section-button {
	margin: 25px auto;
}
.hp-section:nth-child(5) {
	border-bottom: 5px solid #fee6cc;
}
.hp-section:nth-child(5):after {
	content: '';
	border-bottom: 5px solid #725657;
	width: 100%;
	position: absolute;
	bottom: 7px;
	left: 0;
}
.hp-section-posts-container {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: start;
	gap: 50px;
	padding: 0 15px;
}

/* About us */
.hp-section-about-us {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	padding: 25px;
	overflow: hidden;
}
.hp-section-about-us img {
	display: block;
	width: 100%;
	height: auto;
}
.hp-section-about-us-image {
	border: 2px solid #725657;
	width: 35%;
}
.hp-section-about-us-text {
	width: 55%;
}

/* Renovation */
.hp-section-renovation {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 25px;
	text-align: center;
}
.hp-section-renovation:after {
	content: '';
	border-bottom: 2px solid rgba(114,86,87,0.5);
	width: 100%;
	margin: 25px 0 50px 0;
}
.hp-section-renovation-files {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 25px;
	width: 100%;
	margin: 25px auto;
}
.hp-section-renovation-text h2 {
	margin-bottom: 25px;
}

/* Program */
.hp-section-program {
	flex-basis: 100%;
}

/* Button */
.hp-section-button {
	display: block;
	width: fit-content;
	margin: 25px 0;
	padding: 0 20px;
	line-height: 40px;
	background: rgba(114,86,87,1);
	color: #fff6ed;
	font-size: 17px;
	transition: all ease 0.25s;
	white-space: nowrap;	
}
.hp-section-button:hover, .hp-section-button:active, .hp-section-button:focus {
	letter-spacing: 0.3px;
	text-decoration: none;
	background: rgba(254,230,205,1);
	color: rgba(114,86,87,0.8);
}

/* Announcements and press cuts */
.hp-section-announcements, 
.hp-section-press-cuts {
	flex-basis: 100%;
}
.announcement-section-item-title {
	font-family: CormorantSC;
	font-size: 24px;
}

/* Gallery */
.hp-section .lithea-gallery {
	padding: 0 10px;
}

@media(max-width: 650px) {
	.hp-section-about-us {
		gap: 10px;
		justify-content: center;
	}
	.hp-section-about-us-image {
		width: 90%;
	}
	.hp-section-about-us-text {
		text-align: center;
		width: 90%;
	}
	.hp-section-about-us-text > .hp-section-button {
		margin: 25px auto;
	}
	.hp-section-posts-container {
		flex-direction: column;
	}
	.hp-section-announcements, 
	.hp-section-press-cuts {
		width: 100%;
	}
	.hp-section-program-container {
		flex-direction: column;
	}
	.hp-section-program {
		width: 90%;
	}
}