body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'BookkGothic-Bd';
    overflow: hidden; /* 스크롤바 완전 제거 */
}

body {
    background-color: white;
    color: black;
    transition: background-color 0.5s, color 0.5s;
}
@font-face {
    font-family: 'BookkGothic-Bd';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkGothic-Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}


a {
    color: black;
    font-family: 'BookkGothic-Bd';
    text-decoration: none;
    list-style: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url('./img/b3.jpg'); /* 다크 모드 배경 이미지 */
    background-size: cover;
}

.container img {
    transition: opacity 0.5s;
}

.ment {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 5%;
    font-size: 1.5rem;
    line-height: 1.3;
}

.ment1 {
    align-self: flex-end;
    /* 오른쪽 정렬 */
    text-align: right;
    width: 100%;
    white-space: nowrap;
}

.ment2 {
    align-self: flex-start;
    /* 왼쪽 정렬 */
    text-align: left;
    width: 100%;
    white-space: nowrap;
    color: #efefef;
    font-weight: 100;
}

.or {
    position: absolute;
    bottom: 31%;
}

.coffee1 img {
    width: 8vh;
}

.tea1 img {
    width: 8vh;
}

.do1 img {
    width: 6vh;
    position: absolute;
    bottom: 40%;
    left: 40%;

}

.do2 img {
    width: 5vh;
    top: 20%;
    left: 40%;
    position: absolute;
}

.room1{
    position: absolute;
    top: 1%;
    left: 5%;
    z-index: 1;
}
.room1 h2{
    color: white;
    font-family: 'BookkGothic-Bd';

}
.room1 p{
    color: white;
    line-height: 1.4;
    font-weight: 100;
    font-family: 'BookkGothic-Bd';
    font-size: 0.8rem;
}

.room1 h2{
    z-index: 1; /* 텍스트가 입자 위에 나오도록 */
}

/* 메뉴 */
.menulogo img {
    width: 10vh;
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 100;
}

.menuin {
    position: absolute;
    top: 23%;
    right: 10%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    font-family: 'BookkGothic-Bd';
    z-index: 100;

}

.menuin a {
    font-family: 'BookkGothic-Bd';
}

.menuin h3 {
    color: #ffffff;
    background-color: #000000;
    font-family: 'BookkGothic-Bd';
    padding: 10px 20px;
    border-radius: 80px;
    font-size: 1.5rem;
    /* 필요하면 크기도 조정 */
    line-height: 1;
    /* 줄간격도 조정하면 밀집된 느낌 가능 */
    margin: 10px 0;
    /* 위아래 여백을 줄임 (기본은 약 1em 정도) */
    text-align: center;
}

.menuin.show {
    max-height: 300px;
    /* 필요한 높이만큼 조절 */
    opacity: 1;
}

.footer {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 100;
    font-family: 'BookkGothic-Bd';
    white-space: nowrap; /* 줄 바꿈 방지 */
    position: fixed; /* 아래 고정 */
    box-sizing: border-box;
}
.footer p{
    font-family: 'BookkGothic-Bd';
    color: white;
}

@media (max-width: 767px) {
    .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('./img/bg4.jpg'); /* 다크 모드 배경 이미지 */
    background-size: cover;
}
.do1 img {
    width: 6vh;
    position: absolute;
    bottom: 30%;
    left: 55%;

}

.do2 img {
    width: 5vh;
    top: 40%;
    left: 50%;
    position: absolute;
}

}