body {
	background-color: #EAF4F4;
}

section {
	position: relative;
	padding: 20px 0;
}

#hero {
	height: 100vh;
	background-color: aqua;
	background-image: url('../image/banner_img.png');
	background-position: center;
	background-repeat: no-repeat;
	animation: ani-slg1 1s ease alternate;
}

@keyframes ani-slg1 {
    0% {
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    /* 0% { */
        /* transform: rotate(0deg); */
        /* opacity: 0; */
    /* } */
    /* 100% { */
        /* transform: rotate(360deg); */
        /* opacity: 1; */
    /* } */
}

#world_vibe {
	width: 100%;
	/* min-height: 1400px; */
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.section_title {
	text-align: center;
	font-size: 48px;
	color: #3E8E7E;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.slider {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 60px auto;
	position: relative;
	height: 450px;
	overflow: hidden;
}
.slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	clip-path: circle(0% at 50% 50%);
	transition: clip-path 1.5s ease;
}

.cards {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}
.card {
	width: 280px;
	height: 220px;
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(8px);
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card_title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1E1E1E;
}
.card_text {
	font-size: 16px;
	color: #5B5B5B;
}

.section_footer {
	text-align: center;
	font-size: 24px;
	color: #5B5B5B;
	margin-top: 80px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

#character {
	position:relative;
}

.character_section_elem {
	position:relative;
	padding-bottom:50px;
}

.character_text {
	position:relative;
	color: #3E8E7E;
}

.character_table {
	position: relative;
	width: 1400px;
	margin: 0px auto;
	/* height: 735px; */
	background-color: aqua;
	top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
}

.character_element {
	box-sizing:border-box;
	display:inline-block;
	width:350px;
	height:245px;
	background-color:#e3e3e3;
	border:1px solid #5f5f5f;
	font-size: 26px;
	text-align:center;
	transition:all .2s;
}

.character_element a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.character_element figcaption {
	padding-top:5px;
}

.character_element:hover {
	background-color:navy;
	color:aqua;
}

#world_environment {
	width: 100%;
	min-height: 420px;
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	font-family: 'Noto Sans KR', sans-serif;
}

.env_title {
    text-align: center;
    font-size: 48px;
    color: #3E8E7E;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.parallax_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-out;
}

.layer_back {
    z-index: 1;
}

.layer_mid {
    z-index: 2;
}

.layer_front {
    z-index: 3;
}

.env_text {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
    color: #1E1E1E;
    font-size: 28px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

#interactive_explore {
    width: 100%;
    min-height: 1000px;
    background-color: #E0E8E2;
    padding: 100px 0;
    position: relative;
}

.explore_title {
    text-align: center;
    font-size: 48px;
    color: #3E8E7E;
    margin-bottom: 60px;
}

.mini_map {
    width: 90%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    background-color: #CBE2E8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map_background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('map_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.character {
    width: 100px;
    height: 100px;
    background-image: url('character.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

.interactive_point {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive_point:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.explore_message {
    text-align: center;
    font-size: 22px;
    color: #1E1E1E;
    margin-top: 40px;
}

#ending_branding {
    width: 100%;
    min-height: 800px;
    position: relative;
    background-color: #CDE0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
}

.ending_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('ending_bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.ending_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.ending_title {
    font-size: 48px;
    color: #3E8E7E;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.ending_text {
    font-size: 22px;
    color: #1E1E1E;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.branding img {
    width: 150px;
    margin-bottom: 15px;
}

.branding-slogan {
    font-size: 18px;
    color: #5B5B5B;
    font-style: italic;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}