* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

html {
	scroll: smooth;
}

html {
    -ms-overflow-style: none;  /* IE + Edge */
    scrollbar-width: none;     /* Firefox */
}

html::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
}

/* ID */


#home {
	background-image: url(img/hoan-pic.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;	/* vertical */
	align-items: center;	/* horizontal */
}

#home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

#intro {
	background-color: #8E0000;
	color: white;
	text-align: center;
	padding: 80px 20px;
}

#intro h2 {
	font-size: 30px;
	margin-bottom: 55px;
}

#intro p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
}

#explore {
	background-color: white;
	color: black;
	text-align: center;
	padding: 80px 20px;
}

#explore h3 {
	font-size: 30px;
	margin-bottom: 55px;
}

#fnd {
	background-color: #8E0000;
	color: white;
	text-align: center;
	padding: 80px 20px;
	line-height: 1.5;
}

#fnd p {
	font-size: 18px;
}

#fnd h6 {
	font-size: 25px;
	font-display: bold;
	padding: 20px 20px;
}

#map {
    padding-top: 80px;
    background: white;
}

#contacts {
    background-color: #8E0000;
    color: white;
    text-align: center;
    padding: 40px 20px;
}


/* CLASS */


.home {
	color: white;
	position: relative;
	font-size: 60px;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 10%;
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2;
	padding: 50px 30px;
}

.navbar a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	transition: transform 0.2s, color 0.2s;
}

.navbar a:hover {
    transform: scale(1.1);
    color: #FFD700; 
}

.navbar a.show {
	transform: scale (1.1);
	color: #FFD700;
}

.intro {
	max-width: 800px;
	margin: 0 auto;
}

.explore-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.card {
	position: relative;
	overflow: hidden;
}

.card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	gap: 20px;
	
	display: flex;
	flex-direction: column;
	justify-content: center;				/* vertical */
	align-items: center;					/* horizontal */
	
	opacity: 0;
	transform: translateY(30px);
	transition: 0.5s ease;
}

.card:hover .overlay {
	opacity: 1;
	transform: translateY(0px);
}

.space {
	padding: 30px 30px;
}

.space h4 {
	margin-bottom: 20px;
}

.zoom-img {
  transition: transform 0.3s ease;
}

.zoom-img:hover {
  transform: scale(1.2);
}

.fnd {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.fnd {
    -ms-overflow-style: none;  
    scrollbar-width: none;     
}

.fnd::-webkit-scrollbar {
    display: none;             
}

.fnd-size {
	font-size: 30px;
	margin-bottom: 30px;
	margin-bottom: 40px;
	text-align: center;
}

.store {
	max-width: 400px;
	min-width: 400px;
    flex: 0 0 100%;
	margin: 0 auto;
    scroll-snap-align: start;
    padding: 20px;
    border-radius: 20px;
	text-align: center;
}

.store img {
    width: 100%;
	height: 300px;
	object-fit: cover;
    border-radius: 20px;
}

.stay {
	font-size: 35px;
	padding: 80px;
	text-align: center;
}

.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
	padding: 0 30px;
}

.hotel-row {
    display: flex;
    align-items: center;
    gap: 40px;
	transition: transform 0.3s;
}

.hotel-row:hover {
    transform: scale(1.02);
}

.hotel-row.reverse {
    flex-direction: row-reverse;
}

.hotel-row img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.hotel-text {
    width: 50%;
    text-align: center;
}

.hotel-text h6 {
    font-size: 25px;
    margin-bottom: 10px;
}

.hotel-text p {
    font-size: 18px;
    line-height: 1.6;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    display: block;
	border-radius: 20px;
	filter: grayscale(30%) brightness(90%);
}

.contact-title {
    font-size: 20px;
    margin-bottom: 55px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.socials a {
    color: white;
    font-size: 35px;
    transition: transform 0.2s, color 0.2s;
}

.socials a:hover {
    transform: scale(1.3);
    color: #FFD700; 
}