* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    width: 100%;
    background-color: white;
    margin: 0;
}

main {
    max-width: 992px;
    margin: 0 auto; 
    padding: 0; 
}

header {
    background-color: #BEBEBE;
    color: white;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between; /* keep content balanced each other */
    align-items: center; 
}

.header-section {
    display: flex;
    align-items: center; 
}

header h2 {
    margin: 0; 
}

nav ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
    color: white;
    text-align: left;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #F33A6A;
}

nav ul li.active {
    background-color: #FFB6C1;
    padding: 9px;
}

nav ul li.active a {
    color: white; /* txt color on active */
}

/*---------------------------------------------------------*/


/* Page1 */

.welcome-section {
    background-color: #FFB6C1;
    color: white;
    text-align: center;
    width: 50%;
    height: auto;
    float: left; /* keep left */
	padding-top: 177px;
	padding-bottom: 178px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    float: right; /* keep right */
}

.image-box {
    width: calc(50%); /* calculate box width */
    height: 200px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
	font-size: 30px;
	/*padding: 5px 10px;
    border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.7); 
	text box detail for future use*/
}

/* Page2 */

.container1, .container2, .container3{
	float: left;
	color: black;
	}
	 
	.width25{
	width: 25%;
	}
	 
	.width50{
	width: 50%;
	}
	 
	.width20{
	width: 20%;
	}
	
	.width40{
	width: 40%;
	}
	
	.width100{
	width: 100%;
	}
	 
	.container1{

	}
	 
	.container2{

	}
	 
	.container3{

	}
	 
	.clear{
	clear: both;
	}
	 
	.contentdiv{
	height: 200px;
	text-align: center;
	}
	 
	.coffee{
	width: 100%;
	height: 200px;
	object-fit: cover;
	}

/* Page3 */

.welcome-page3 {
    background-color: #FFB6C1;
    color: white;
    text-align: center;
    width: 40%;
    height: auto;
    float: left; /* keep left */
	padding-top: 177px;
	padding-bottom: 179px;
}

.welcome-page3 h2{
	margin-bottom: 5px;
}

.btn{
	border-radius: 5px; 
	background-color: #BEBEBE;
	padding: 10px;
	line-height: 40px; 
	text-align: center;
	text-decoration-line: none;
	color: white;
}

.btn :hover{
	color: #F33A6A;
}

.container-page3{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
	height: auto;
    background-color: #D8BFD8;
    padding: 50px 10px 174px 120px;
	position: relative; 
}

.cont-page3 {
    display: flex;
    justify-content: left;
    align-items: center;
    max-width: 600px; 
    width: 100%;
    position: relative; 
}


.image-box-page3 img{
	width: 200px;
    height: 200px;
    object-fit: cover;
	border-radius: 10px;
}

.overlap {
    position: absolute;
    top: 65%;
    left: 35%;
    z-index: 1;
}







