@charset "utf-8";
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/*Cover*/
.cover {
	margin-top: 100px;
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.cover img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cover .title{
	position: absolute;
	left: 28px;
	bottom: 22px;
	color: #FFFFFF;
	margin: 0 120px;
}

.cover .title h1{
	margin:0;
	font-family: "Poppins", sans-serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 67px;
}

.cover .title p{
	margin:0 0 15px;
	font-family: "Open Sans", sans-serif;
	font-size: 40px;
	font-weight: 400;
}

/*Information*/
.teap {
	width: 100%;
	max-width: 1250px;
	margin: 0 120px;
	padding: 40px 0;
}

.info h1{
	margin: 0 0 14px;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #274001;
}

.info p{
	margin: 0 0 14px;
	font-family: "Noto Sans", sans-serif;
	font-size: 20px;
	font-weight: 200;
	color: #000000;
	text-align: justify;
}

.details {
	margin-top: 24px;
	display: grid;
	grid-template-columns: 400px auto;
	column-gap: 42px;
	align-items: start;
}

.details img{
	margin-top: 20px;
	grid-column: 1;
	width: 400px;
	height: 700px;
	object-fit: cover;
	border-radius: 32px;
	display: block;
}

.detailstext {
	grid-column: 2;
	margin: 0 0 14px;
	font-family: "Noto Sans", sans-serif;
	font-size: 20px;
	font-weight: 200;
	color: #000000;
	text-align: justify; 
}

/*Top4 Tea Plantation*/
.top-tea {
	margin: 30px 120px 150px;
}

.top-tea h2{
	margin: 0;
	text-align: center;
	font-family: "Noto Sans", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #274001;
}

.top-tea h2::after{
	content: "";
	display: block;
	width: 60%;
	max-width: 1050px;
	height: 2px;
	background-color: #274001;
	margin: 10px auto 30px;
}

.cardrow {
	display: none;
}

.cardrow.show{
	display: flex;
	flex-wrap: wrap;
	column-gap: 22px;
}

.des-card {
	display: block;
	text-decoration: none;
	width: calc((100% - 66px) / 4);
	min-width: 180px;
	transition: transform 0.2s ease;
}

.imgWrap {
	border-radius: 22px;
	height: 310px;
	width: 310px;
	object-fit: cover;
	display: block;
	box-sizing: border-box;
	border: 0 solid transparent;
	transition: transform 0.25s ease, border-color 0.25s ease, border-width 0.25s ease;
}

.cardname {
	text-align: center;
	margin-top: 10px;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #375A10;
}

.des-card:hover {
	transform: translateY(-4px);
}

.des-card:hover .imgWrap {
	transform: scale(1.03);
	border-width: 16px;
	border-color: #AFBF36;
}

.des-card:hover .cardname {
	color: #AFBF36;
}

/*Gallery*/
.gallery {
	margin: 100px auto;
	padding: 80px 120px 40px;
	width: 100%;
	background-color: #F0F2BB;
	position: relative;
	display: grid;
	grid-template-columns: 620px 180px;
	column-gap: 52px;
	justify-content: center;
	align-items: center;
}

.gallery h2{
	position: absolute;
	top: 20px;
	left: 20px;
	transform: translateY(-50%);
	margin: 0;
	background: #274001;
	color: #FFFFFF;
	padding: 10px 22px;
	border-radius: 0;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 700;
}

.photo-m{
	margin: 0;
}

.photo-m img{
	width: 620px;
	height: 320px;
	object-fit: cover;
	display: block;
	border-radius: 38px;
}

.galleryTh {
	display: flex;
	flex-direction: column;
	row-gap: 14px;
	align-items: center;
}

.thumbBtn {
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.thumbBtn img{
	width: 140px;
	height: 70px;
	object-fit: cover;
	display: block;
	border-radius: 32px;
}

@media (max-width: 1200px){
	.cover .title{ margin: 0 48px; }
	
	.teap{
		margin: 0 auto; 
		padding: 32px 48px; 
		width: 100%; 
	}
	
	.top-tea{ margin: 30px 48px 120px; }
	
	.gallery{ padding: 80px 48px 40px; }
}

@media (max-width: 900px){
	.details{
		grid-template-columns: 100%;
		column-gap: 0;
		row-gap: 18px;
	}

	.details img{
		grid-column: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 4; 
		margin-top: 0;
	}

	.detailstext{
		grid-column: auto;
		font-size: 18px;
	}
}

@media (max-width: 768px){
	.cover{ height: 420px; }
	.cover .title{ margin: 0 20px; left: 16px; bottom: 16px; }
	.cover .title h1{ font-size: 40px; line-height: 44px; }
	.cover .title p{ font-size: 22px; margin: 0 0 10px; }

	.teap{ padding: 26px 20px; }
	.info h1{ font-size: 34px; }
	.info p{ font-size: 16px; }

	.top-tea{ margin: 26px 20px 90px; }
	.top-tea h2{ font-size: 24px; }

	.cardrow.show{ column-gap: 22px; row-gap: 22px; }
	.des-card{ width: calc((100% - 22px) / 2); min-width: 0; }

	.imgWrap{
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}


	.gallery{
		margin: 60px auto;
		padding: 70px 20px 30px;
		grid-template-columns: 100%;
		row-gap: 16px;
	}

	.gallery h2{ font-size: 28px; top: 18px; left: 18px; }

	.photo-m img{
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		border-radius: 26px;
	}

	.galleryTh{
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	.thumbBtn img{
		width: 44vw;
		max-width: 200px;
		height: auto;
		aspect-ratio: 2 / 1;
		border-radius: 18px;
	}
}

@media (max-width: 480px){
	.cover{ height: 360px; }
	.cover .title h1{ font-size: 34px; line-height: 38px; }

	.des-card{ width: 100%; }

	.thumbBtn img{
		width: 90vw;
		max-width: 320px;
	}
}