@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: "UTM_AVO";
	src: url(../fonts/UTM_Avo.ttf);
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

body {
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
	background: url(../img/bg_intro.jpg) #010101;
	background-size: cover;
}

/*Begin intro page*/
#wrap_block_intro {}

.grid_intro {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	align-content: center;
}

.wrap_logo_intro {
	display: flex;
	align-items: center;
	justify-content: center;
}

.block_logo_intro {
	text-align: center;
}

.block_logo_intro img {
	width: 100%;
}

.wrap_website {
	display: flex;
	align-items: center;
	justify-content: center;
}

.block_website {}

.block_website h2 {
	margin: 0;
}

.block_website h2 a {
	text-decoration: none;
	text-align: center;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 4px;
	line-height: 1.1;

	/* Tạo màu gradient chuyển động */
	background: linear-gradient(120deg, #da8326, #b0571c, #da8326, #79340c, #da8326);
	background-size: 200% auto;

	/* Cắt nền theo hình dạng của chữ */
	-webkit-background-clip: text;
	background-clip: text;

	/* Làm màu chữ gốc trở nên trong suốt để lộ nền gradient phía sau */
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;

	/* Thêm thuộc tính này để đảm bảo gradient hiển thị tốt */
	display: inline-block;
	text-decoration: none;

	/* Hiệu ứng chuyển động gradient vô hạn */
	animation: gradient-move 3s linear infinite;

	/* Hiệu ứng hover thu hút hơn */
	transition: font-size 0.5s ease, filter 1s ease;
}

.block_website h2 a:hover {
	font-size: 36px;
	filter: drop-shadow(0 0 8px rgba(218, 131, 38, 0.5));
}

@keyframes gradient-move {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/*End intro page*/

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

@media (max-width: 844px) {
	.block_website h2 a {
		font-size: 24px;
	}

	.block_website h2 a:hover {
		font-size: 26px;
	}
}

@media (max-width: 430px) {

	.wrap_logo_intro {
		order: -1;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.wrap_website {
		width: 50%;
		max-width: 50%;
	}

	.block_logo_intro {
		margin-bottom: 50px;
	}

	.block_logo_intro img {
		width: 70%;
	}

	.block_website h2 a {
		font-size: 15px;
	}

	.block_website h2 a:hover {
		font-size: 16px;
	}
}