/* 기본 스타일 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* 헤더 스타일 */
header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10; /* 메뉴가 다른 요소들 위에 위치하게 함 */
}

/* 홈 아이콘 스타일 */
.home-icon {
    display: inline-block;
    margin-right: 20px; /* 메뉴와의 간격 조절 */
    vertical-align: middle;
}

.home-icon-img {
    width: 40px; /* 아이콘 크기 조절 */
    height: auto;
}

/* 네비게이션 스타일 */
nav ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

/* 메뉴 항목의 기본 텍스트 색상을 흰색으로 설정 */
nav ul li a {
    text-decoration: none;
    color: #fff; /* 기본 텍스트 색상을 흰색으로 설정 */
    font-weight: bold;
    transition: color 0.3s ease; /* 마우스를 올릴 때 부드럽게 색상이 변하도록 설정 */
}

nav ul li a:hover {
    color: #ffcc00; /* 링크 호버 시 색상 */
}

/* 햄버거 메뉴 스타일 */
.hamburger-menu {
    display: inline-block;
    cursor: pointer;
}

.hamburger-menu .line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* 언어 선택 드롭다운을 오른쪽으로 정렬 */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px; /* 헤더의 오른쪽 끝에 위치 */
    font-size: 1rem;
    display: flex;
    align-items: center;
}

#language-select {
    margin-left: 10px;
    padding: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* 메인 페이지 배경 이미지와 텍스트 */
#main-content {
    height: 100vh;
    background-image: url('https://pix10.agoda.net/hotelImages/58644584/0/94539fc2149b4eddebbd840389c00e55.jpg?ce=0');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* 텍스트 그림자 */
}

#main-content p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* 텍스트 그림자 */
}

/* 메인 페이지의 예약 버튼 스타일 */
#main-content .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #A68A64; /* 베이지 톤 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#main-content .btn:hover {
    background-color: #8C7250; /* 버튼 호버 시 색상 */
}

/* 섹션 스타일 */
section {
    padding: 50px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 예약 폼 및 예약 확인 폼 스타일 */
.reservation-form, .check-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* 예약 페이지 버튼 */
.reservation-form .btn, .check-form .btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #A68A64; /* 베이지 톤 */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reservation-form .btn:hover, .check-form .btn:hover {
    background-color: #8C7250; /* 호버 시 색상 */
}

/* 리스트 스타일 */
ul {
    list-style-type: disc; /* 기본 디스크 모양 리스트 */
    margin-left: 20px;
    padding-left: 20px;
    color: black; /* 리스트 텍스트 색상 */
}

li {
    margin-bottom: 10px;
    color: black; /* 리스트 항목 텍스트 색상 */
}

/* 푸터 스타일 */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #main-content h2 {
        font-size: 2rem;
    }

    #main-content p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}


/* 반응형 디자인 */
@media (max-width: 768px) {
    #main-content h2 {
        font-size: 2rem;
    }

    #main-content p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

.hotel-logo {
    width: 50px; /* 원하는 크기로 조정 */
    height: auto;
    margin-left: 10px; /* 텍스트와 간격 */
    vertical-align: middle; /* 텍스트와 이미지 정렬 */
}