/* 페이지 기본 설정 */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
}

/* 컨테이너 */
.container {
  display: flex;
    flex: 1;
    height: 100vh;/* introduce 페이지와 동일 높이 */
  padding-left: 7%;
  padding-right: 7%;
  gap: 20px; /* 사이드바와 콘텐츠 사이 간격 */
}

/* 사이드바 */
.sidebar {
  width: 180px;
  background-color: #D6CCC2;
  border-right: 1px solid #D5BDAF;
  border-left: 1px solid #D5BDAF;
  display: flex;
  flex-direction: column;
}
 .sidebar-title {
    	padding: 12px;
    	text-align: center;
    	background-color: #F5EBE0;
    	color: black;
    	font-size: 18px;
    	font-weight: bold;
    	cursor: default;

    	/* 아래 두 줄 추가 또는 수정 */
    	border: none;
    	/* 모든 테두리 제거 */
    	margin-bottom: 5px;
    	/* 필요할 경우 아래만 살짝 */
    }
/* 각 층(section) 내부를 세로 정렬 */
.floor-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

/* 층 레이블 */
.floor-label {
  padding: 12px;
  text-align: center;
  background-color: #F5EBE0;
  border-bottom: 1px solid #D5BDAF;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s;
}

.floor-label.active {
  background-color: #D5BDAF;
  color: white;
  font-weight: bold;
}

/* 메뉴 버튼 */
.menu-button {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background-color: #F5EBE0;
  border: none;
  border-bottom: 1px solid #D5BDAF;
  font-size: 16px;
  cursor: pointer;
  color: #333;
   word-break: keep-all;

  transition: background-color 0.3s;
}

.menu-button:hover {
  background-color: #E3D5CA;
}

/* 기존 active 클래스 (필요시 사용) */
.menu-button.active {
  background-color: #D5BDAF;
  color: white;
  font-weight: bold;
}

/* 현재 선택된 메뉴 버튼: 기존 active보다 조금 더 연한 색상으로 */
.menu-button.current {
  background-color: #F1E6E1;
  color: #333;
  font-weight: bold;
}

/* 메인 콘텐츠 영역 */
.content {
  flex: 1;
  padding: 5%;
  background-color: #FFFFFF;
}

/* 콘텐츠 내부 제목 */
#floor-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

#room-title {
  font-size: 22px;
  margin-bottom: 15px;
}

#room-content {
  display: flex;
  align-items: flex-start; /* 이미지와 설명을 상단 정렬 */
  gap: 30px; /* 이미지와 텍스트 사이 간격 */
  flex-wrap: wrap; /* 화면이 작아지면 아래로 줄바꿈 */
}

.room-desc {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: 5%;
}

/* 방 이미지 */
.room-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
