
/* Reset mặc định */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* cũ
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header nav ul.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

header nav ul.menu li {
    margin: 0 15px;
}

header nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
*/
/* Menu ngang cơ bản */
header nav ul.menu {
    height:60px;
    list-style: none;
    display: flex; /* Hiển thị theo hàng ngang */
    justify-content: center; /* Canh giữa menu */
    gap: 20px; /* Khoảng cách giữa các mục */
    padding: 0;
    margin: 0;
    background: #e91e63; /* Màu nền menu */
}

header nav ul.menu li {
    text-align: center; /* Căn giữa nội dung mỗi mục menu */
}

header nav ul.menu li a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #fff; /* Màu chữ */
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap; /* Không ngắt dòng */
}

/* Responsive: Điều chỉnh menu trên màn hình nhỏ */
@media (max-width: 768px) {
    header nav ul.menu {
        justify-content: space-between; /* Tạo khoảng cách đều trên mobile */
        gap: 0.5px; /* Giảm khoảng cách giữa các mục */
    }

    

    header nav ul.menu li a {
        font-size: 12px; /* Giảm kích thước chữ */
        padding: 8px 10px; /* Giảm padding */
    }
}


/* Slider */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slider .slide {
    display: none;
    position: relative;
    text-align: center;
}

.banner-slider .slide img {
    width: 100%;
    height: auto;
}

.banner-slider .slide:first-child {
    display: block;
}

/* Dịch vụ */

.services {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.services h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.service-item {
    display: inline-block;
    width: 30%;
    margin: 10px;
    text-align: center;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-item h3 {
    font-size: 1.2rem;
    color: #e91e63;
    margin-top: 10px;
}

.service-item p {
    color: #555;
    margin-top: 5px;
}




/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    margin-top: 20px;
}
/* Gioi thieu */
.about-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-container h1 {
    text-align: center;
    color: #e91e63;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #e91e63;
    margin-bottom: 10px;
}

.about-text ul {
    list-style: square;
    padding-left: 20px;
    margin-top: 10px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* reviews */
.reviews-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.reviews-container h1 {
    text-align: center;
    color: #e91e63;
    margin-bottom: 20px;
}

.review-form {
    margin-bottom: 20px;
}

.review-form h2 {
    color: #e91e63;
    margin-bottom: 10px;
}

.review-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.review-form input,
.review-form textarea,
.review-form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.review-form button {
    background: #e91e63;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.review-form button:hover {
    background: #c2185b;
}

.star-rating {
    display: flex;
    gap: 5px;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffcc00;
}

.review-list {
    margin-top: 20px;
}

.review-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.review-item h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.review-item .stars {
    color: #ffcc00;
    margin: 5px 0;
}

.review-item p {
    margin: 0;
    color: #555;
}

/*  booking*/
.form-container {
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
}
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background: #e91e63;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #c2185b;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slots label {
    background: #f3f3f3;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s, border-color 0.3s;
}

.time-slots label:hover {
    background: #e91e63;
    color: #fff;
    border-color: #e91e63;
}

.time-slots input {
    display: none;
}

/*contact*/
.contact-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-container h1 {
    text-align: center;
    color: #e91e63;
    margin-bottom: 20px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    color: #e91e63;
}

.contact-form form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-form form input,
.contact-form form textarea,
.contact-form form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form form button {
    background: #e91e63;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.contact-form form button:hover {
    background: #c2185b;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    color: #e91e63;
    margin-bottom: 10px;
}