html, body{
  margin: 0;
  padding: 0;
}

body.landing-body{
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

/* 상단 로고 헤더 */
.logo-header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 16px 0;
}
.logo-header .logo {
    height: 80px;       /* 필요에 맞춰 조절 */
    vertical-align: middle;
}

/* landing-page 를 header 높이만큼 아래로 내리고 높이를 줄입니다 */
body.landing-body .landing-page {
                     /* header 패딩(16*2) + logo 높이(40) = 72px */
    height: calc(100vh);
}

.landing-page {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.view {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}
/* 
.view .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

.view.screen::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease; /* 부드럽게 변화 */
  z-index: 1;
}

.view.screen:hover::before{
  background-color: rgba(0, 0, 0, 0.0);
}

.view.park::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease; /* 부드럽게 변화 */
  z-index: 1;
}

.view.park:hover::before{
  background-color: rgba(0, 0, 0, 0.0);
}

.view.screen {
    background-image: url('../img/screen_landing_img.png'); /* 좌측 이미지 경로 */
    background-size: cover;
    background-position: center;
}

.view.park {
    background-image: url('../img/park_landing_img.png');; /* 우측 이미지 경로 */
    background-size: cover;
    background-position: center;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    text-align: left;
}

.content h1 {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1em;
    text-align: left;
}

.content p {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 0.95em;
    margin-bottom: 1.5em;
}

.button {
    display: inline-block;
    padding: 10px 40px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    text-decoration: none;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    border-radius: 0;
}

.button:hover {
    background-color: rgba(255,255,255,0.4);
}


/* 모바일에서만 스크롤 허용 & 세로 스택 */
@media (max-width: 768px) {
    body.landing-body {
        overflow-y: auto; /* 모바일에서만 스크롤 허용 */
        height: auto;
    }
    .landing-page {
        flex-direction: column;
    }
    .view {
        width: 100%;
        height: 100vh;
    }
}