/* รีเซ็ตพื้นฐาน */
body, html {
    margin: 0;
    /* padding-top: 100px; */
    background-color: #000;
}

.text-center {
    display: flex; /* กำหนดให้เป็น Flexbox */
    justify-content: center; /* จัดให้อยู่กลางในแนวนอน */
    align-items: center; /* จัดให้อยู่กลางในแนวตั้ง */
    text-align: center; /* จัดข้อความให้อยู่กลางในบรรทัด */
}

.shift-left {
    text-align: left;
}

.padding {
    padding-bottom: 200px;
}

.gap {
    padding-top: 25px;
    padding-bottom: 25px;
}

.main-content {
    flex: 1; /* เติมพื้นที่ว่างระหว่าง Header กับ Footer */
    /* padding: 20px; เพิ่มระยะห่างภายใน */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* เมนูบาร์ */
.menu-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* โปร่งแสง */
    backdrop-filter: blur(10px); /* ทำให้พื้นหลังดูนุ่มนวล */
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: top 0.3s ease; /* เพิ่ม animation สำหรับการเลื่อน */
}

.menu-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-bar .logo {
    height: 80px; /* ขนาดโลโก้ */
    display: block;
}

/* เมนู */
.menu-bar nav {
    display: flex;
    align-items: center;
}

.menu-bar nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-bar nav a:hover {
    color: #E0C873; /* สีไฮไลต์เมื่อ hover */
    transform: scale(1.05); /* ขยายเล็กน้อย */
}

/* ปุ่ม BOOK NOW */
.menu-bar nav a.btn-book-now {
    background-color: #8B0000; /* พื้นหลังปุ่ม */
    color: #fff; /* สีตัวอักษร */
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* ปุ่ม BOOK NOW เมื่อ Hover */
.menu-bar nav a.btn-book-now:hover {
    background-color: #FF4500; /* พื้นหลังเมื่อ Hover */
    transform: scale(1.05); /* ขยายเล็กน้อย */
}

.menu-bar .book-now-btn:hover {
    background-color: #FF4500; /* สีพื้นหลังเมื่อ hover */
}

/* ดรอปดาวน์ภาษา */
.language-dropdown {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.language-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #424242;
    color: #000;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-radius: 5px;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

.language-dropdown a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.language-dropdown a:hover {
    background-color: #ddd;
}

/* เมนูที่ถูกเลือก */
.menu-bar nav a.active {
    color: #E0C873; /* สีตัวอักษรสำหรับเมนูที่เลือก */
    font-weight: bold; /* ตัวหนา */
    border-bottom: 2px solid #E0C873; /* เส้นขีดด้านล่าง */
}

/* เพิ่มเติม: การจัดเรียงสำหรับหน้าจอขนาดเล็ก */
@media (max-width: 768px) {
    .menu-bar .container {
        flex-direction: column;
    }

    .menu-bar nav {
        flex-direction: column;
        align-items: center;
    }

    .menu-bar nav a {
        margin: 5px 0;
    }

    .menu-bar .logo {
        margin-bottom: 10px;
    }
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Section Banner */
.banner-section {
    height: 30vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #ffffff !important;
    text-align: center;
    margin-top: 100px; /* ปรับค่าตามความสูงของ header */
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* Section 2 */
.content-section {
    min-height: 50vh; /* ให้มีความสูงขั้นต่ำ */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    text-align: center;
    flex-direction: column; /* จัดการองค์ประกอบในแนวตั้ง */
}

.content-section .content-center {
    max-width: 1200px; /* จำกัดความกว้าง */
    margin: 0 auto;
    text-align: center;
}

.content-section h1 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 10px 0;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
    word-wrap: break-word; /* ตัดคำเมื่อข้อความยาว */
    overflow-wrap: break-word; /* รองรับเบราว์เซอร์เก่า */
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 15px; /* ลด padding ในหน้าจอเล็ก */
    }

    .content-section h1 {
        font-size: 1.5rem; /* ปรับขนาดตัวอักษร */
    }

    .content-section p {
        font-size: 0.9rem; /* ลดขนาดตัวอักษร */
    }
}

/* Image container styling */
.image-container {
    margin-top: 20px; /* ระยะห่างระหว่างเนื้อหากับรูปภาพ */
    text-align: center; /* จัดรูปให้อยู่ตรงกลาง */
    max-width: 100%; /* ไม่ให้ container เกินขอบ section */
    overflow: hidden; /* ซ่อนส่วนที่เกินจาก container */
    box-sizing: border-box; /* รวม padding และ border ในขนาด container */
}

.image-container img {
    width: 100%; /* ให้รูปภาพขยายเต็มพื้นที่ container */
    height: auto; /* รักษาสัดส่วนของรูป */
    max-width: 100%; /* ป้องกันไม่ให้รูปเกิน container */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* สำหรับแท็บเล็ตหรือหน้าจอขนาดกลาง */
    .image-container {
        padding: 0 10px; /* เพิ่ม padding เพื่อช่วยควบคุมขอบ */
    }
}

@media (max-width: 480px) { /* สำหรับหน้าจอมือถือ */
    .image-container img {
        width: 90%; /* ลดขนาดรูปภาพให้เล็กลงในหน้าจอมือถือ */
        margin: 0 auto; /* จัดรูปให้อยู่กึ่งกลาง */
    }
}

.strans-image {
    max-width: 100%; /* ให้รูปภาพกว้างไม่เกินพื้นที่ที่กำหนด */
    height: auto; /* รักษาสัดส่วนรูปภาพ */
}

.section-image {
    max-width: 100%; /* ให้รูปภาพกว้างไม่เกินพื้นที่ที่กำหนด */
    height: auto; /* รักษาสัดส่วนรูปภาพ */
    border-radius: 10px; /* ขอบมน */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* เพิ่มเงาให้รูป */
}

/* Map container */
.map-container {
    max-width: 100%; /* จำกัดขนาดความกว้างไม่ให้เกินหน้าจอ */
    margin: 0 auto; /* จัดกึ่งกลาง */
    overflow: hidden; /* ซ่อนส่วนที่เกิน */
}

/* Iframe styling */
.map-container iframe {
    width: 100%; /* ให้ iframe เต็มความกว้างของ container */
    height: 400px; /* ความสูงแบบ fix */
    border: none; /* เอาขอบออก */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px; /* ลดความสูงในหน้าจอขนาดเล็ก */
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px; /* ลดความสูงเพิ่มเติมในหน้าจอที่เล็กที่สุด */
    }
}

.split-section {
    position: relative;
    min-height: 100vh; /* ความสูงขั้นต่ำเท่ากับหน้าจอ */
    width: 100%;
    overflow: hidden; /* ซ่อนส่วนที่เกินออกมา */
    display: flex;
    flex-direction: column; /* จัดวางองค์ประกอบในแนวตั้ง */
    justify-content: space-between; /* จัดวางให้พอดีกับพื้นที่ */
    z-index: 1; /* เนื้อหาของ section อยู่ด้านหน้าของ pseudo-elements */
}

.split-section::before,
.split-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%; /* ครึ่งหนึ่งของ Section */
    left: 0;
    z-index: -1; /* ให้ pseudo-elements อยู่ด้านล่างของเนื้อหา */
}

.split-section::before {
    top: 0;
    background-color: #000000; /* สีครึ่งบน */
}

.split-section::after {
    bottom: 0;
    background-color: #80091b; /* สีครึ่งล่าง */
    border-top-left-radius: 150px; /* มุมบนซ้ายของครึ่งล่าง */
    border-top-right-radius: 150px; /* มุมบนขวาของครึ่งล่าง */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Background color */

.bg-color-white {
    background-color: #ffffff; /* สีพื้นหลังขาว */
    color: #333; /* สีตัวอักษร (เปลี่ยนเป็นสีเทาเข้มเพื่อความชัดเจน) */
    padding: 20px; /* เพิ่มช่องว่างภายใน */
    /* border-radius: 8px; ขอบมน (ถ้าไม่ต้องการสามารถลบได้) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* เงาอ่อนๆ */
}

.bg-color-red {
    background: linear-gradient(180deg, #80091b, #1d0002); /* สีกราเดียน */
    color: #ffffff; /* สีตัวอักษร */
    padding: 20px; /* เพิ่มช่องว่างภายใน */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* เงาอ่อนๆ */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* กำหนดสีบรรทัด */
.line-highlight {
    color: #E0C873; /* สีที่ต้องการเน้น (เช่น สีแดง) */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Team group styling */
.team-group {
    margin-bottom: 30px; /* ระยะห่างระหว่างกลุ่ม */
}

/* Team title styling */
.team-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
}
/* Wrapper for team group to center it */
.team-wrapper {
    display: flex;
    flex-direction: column; /* จัดเรียงกลุ่มในแนวตั้ง */
    align-items: center; /* จัดให้อยู่กึ่งกลางแนวนอน */
    justify-content: center; /* จัดให้อยู่กึ่งกลางแนวตั้ง */
    min-height: 100vh; /* ความสูงอย่างน้อยเท่ากับหน้าจอ */
    padding: 20px; /* เพิ่มพื้นที่รอบขอบ */
    box-sizing: border-box; /* คำนวณ padding รวมในขนาด */
}


/* Card container */
.card-container {
    display: flex;
    flex-wrap: wrap; /* จัดเรียงการ์ดในแถวเดียว และขึ้นแถวใหม่เมื่อพื้นที่ไม่พอ */
    gap: 15px; /* ระยะห่างระหว่างการ์ด */
}

/* Card styling */
.card {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 250px; /* กำหนดขนาดการ์ดให้คงที่ */
    height: 300px; /* ความสูงของการ์ด */
    display: flex; /* ใช้ flexbox จัดตำแหน่ง */
    align-items: center; /* จัดรูปภาพให้อยู่กึ่งกลางแนวตั้ง */
    justify-content: center; /* จัดรูปภาพให้อยู่กึ่งกลางแนวนอน */
    text-align: center;
}

/* Card image */
.card-image img {
    max-width: 100%; /* จำกัดความกว้างไม่ให้เกินการ์ด */
    max-height: 100%; /* จำกัดความสูงไม่ให้เกินการ์ด */
    object-fit: cover; /* ปรับให้รูปภาพพอดีกับพื้นที่การ์ด */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Container settings */
.service-container {
    width: 350px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

/* Image container */
.service-image {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Title overlay on the image */
.service-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
    transition: opacity 0.3s ease; /* Fade out when hover */
}

/* Image styling */
.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease; /* Zoom effect */
}

/* Content box inside the image */
.service-content {
    position: absolute;
    bottom: -100%; /* ซ่อนเนื้อหาเริ่มต้น */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9); /* สีพื้นหลังเข้มขึ้น */
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 10px; /* ขอบโค้ง */
    box-sizing: border-box;
    height: 100%; /* ครอบคลุมเต็มความสูงของรูป */
    transition: bottom 0.3s ease; /* แอนิเมชันเลื่อน */
    overflow-y: auto; /* Scroll หากข้อความยาวเกิน */
}

/* Title inside the content box */
.service-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Details inside the content box */
.service-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Hover effects */
.service-image:hover img {
    transform: scale(1.05); /* ขยายรูปเล็กน้อย */
}

.service-image:hover .service-title-overlay {
    opacity: 0; /* ซ่อน Title Overlay */
}

.service-image:hover .service-content {
    bottom: 0; /* แสดงกล่องข้อความเต็ม */
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Flex Container */
.content-flex {
    display: flex; /* ใช้ Flexbox */
    flex-wrap: nowrap; /* วางในแนวนอน */
    justify-content: center; /* จัดให้อยู่ตรงกลางในแนวนอน */
    align-items: center; /* จัดให้อยู่ตรงกลางในแนวตั้ง */
    gap: 20px; /* ระยะห่างระหว่างรูปภาพและข้อความ */
    margin-bottom: 80px;
    text-align: center;
}

/* Image Container */
.horizontal-container {
    flex: 0 0 auto; /* ขนาดของ container ขึ้นกับเนื้อหา */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Room image styling */
.horizontal-image {
    width: 400px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease; /* Animation for hover */
}

.horizontal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column; /* เปลี่ยนเป็นแนวตั้งในหน้าจอเล็ก */
        gap: 15px; /* ลดช่องว่าง */
    }

    .horizontal-image {
        width: 80%; /* ปรับขนาดรูปภาพในหน้าจอเล็ก */
    }
}

/* Container for image and caption */
.room-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

/* Caption styling */
.room-caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* Hover effect */
.room-link:hover .horizontal-image {
    transform: scale(1.05); /* Slight zoom effect */
}

.room-link:hover .room-caption {
    opacity: 1; /* Show caption on hover */
}

/* Text Section */
.content-flex > div:not(.horizontal-container) {
    flex: 0 0 auto; /* ขนาดของข้อความขึ้นกับเนื้อหา */
    max-width: 500px; /* จำกัดความกว้างข้อความ */
    text-align: left; /* จัดข้อความให้อยู่ทางซ้าย */
}

/* กล่องรูปภาพวงกลม */
.circular-container {
    width: 450px; /* กำหนดความกว้างของกล่อง */
    height: 450px; /* กำหนดความสูงของกล่อง (เท่ากับความกว้างเพื่อให้เป็นวงกลม) */
    border-radius: 50%; /* ทำให้เป็นวงกลม */
    overflow: hidden; /* ซ่อนส่วนที่เกินออกมานอกกล่อง */
    display: flex; /* ใช้ Flexbox เพื่อจัดวางรูป */
    justify-content: center; /* จัดให้อยู่กลางแนวนอน */
    align-items: center; /* จัดให้อยู่กลางแนวตั้ง */
    /* border: 5px solid #fff; เพิ่มเส้นขอบสีขาว */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* เพิ่มเงา */
    margin-bottom: 20px; /* เว้นระยะจากองค์ประกอบถัดไป */
}

/* รูปภาพในกล่อง */
.circular-img {
    width: 100%; /* ปรับขนาดรูปภาพให้เต็ม */
    height: 100%; /* ปรับขนาดรูปภาพให้เต็ม */
    object-fit: cover; /* ทำให้รูปไม่บิดเบี้ยว */
}

/* Container for image and text small */
.s-content-flex {
    display: flex; /* ใช้ Flexbox */
    flex-wrap: wrap; /* รองรับการจัดเรียงบนหน้าจอเล็ก */
    justify-content: space-between; /* เพิ่มระยะห่างระหว่างรูปและข้อความ */
    align-items: center; /* จัดให้แนวตั้งอยู่ตรงกลาง */
    gap: 20px; /* เว้นช่องว่างระหว่างองค์ประกอบ */
    margin-bottom: 80px; /* เพิ่มระยะห่างระหว่างแต่ละบล็อก */
    width: 40%; /* ปรับขนาดกล่องให้แคบลง */
    margin: 0 auto; /* จัดให้อยู่ตรงกลางแนวนอน */
    text-align: center; /* จัดข้อความให้อยู่ตรงกลาง */
}

/* คอนเทนเนอร์หลักของกลุ่มรูปภาพ */
.s-content-flex {
    display: flex;
    flex-wrap: wrap; /* รองรับหลายบรรทัดหากรูปภาพเยอะ */
    justify-content: center; /* จัดให้อยู่กึ่งกลาง */
    gap: 20px; /* ระยะห่างระหว่างรูป */
    max-width: 800px; /* จำกัดความกว้างสูงสุด */
    margin: 0 auto; /* จัดให้อยู่กึ่งกลางของหน้า */
}

/* คอนเทนเนอร์ย่อยของแต่ละรูปภาพ */
.s-horizontal-container {
    flex: 1 1 calc(50% - 20px); /* กำหนดความกว้างรูปภาพให้เป็น 25% ของพื้นที่ */
    max-width: 300px; /* จำกัดความกว้างสูงสุดต่อรูป */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* รูปภาพ */
.s-horizontal-image {
    width: 100%; /* ปรับขนาดรูปให้เต็มคอนเทนเนอร์ */
    height: auto; /* รักษาสัดส่วน */
    object-fit: cover; /* ครอบรูปให้พอดีคอนเทนเนอร์ */
    border-radius: 10px;
    transition: transform 0.3s, border 0.3s, box-shadow 0.3s; /* เพิ่มการเคลื่อนไหว */
    cursor: pointer;
    border: 2px solid transparent; /* กรอบเริ่มต้น */
}

/* รูปภาพที่ถูกเลือก */
.s-horizontal-image.selected {
    transform: scale(1.1); /* ขยายเล็กน้อย */
    border: 3px solid #28a745; /* กรอบสีเขียว */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* เพิ่มเงา */
}

/* เพิ่ม checkmark */
.s-horizontal-image.selected::after {
    content: "✔";
    position: absolute;
    top: 10px;
    right: 10px;
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #28a745;
}

.promo-container {
    flex: 0 0 auto; /* ขนาดของ container ขึ้นกับเนื้อหา */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.promo-image {
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ให้ภาพพอดีกับกรอบ */
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .promo-image {
        width: 90%; /* ลดขนาดในหน้าจอแท็บเล็ต */
        height: auto; /* ให้ภาพมีความสูงอัตโนมัติ */
    }
}

@media (max-width: 480px) {
    .promo-image {
        width: 100%; /* เต็มความกว้างของหน้าจอมือถือ */
        height: auto; /* ให้ความสูงอัตโนมัติ */
    }
}

/* ///////////////////////////////////////////////////////////////////////////// */

.topic {
    border-bottom: 2px solid #fff; /* เส้นขีดล่าง */
    padding-bottom: 8px; /* เพิ่มระยะห่างระหว่างตัวอักษรกับเส้น */
    font-size: 24px; /* ขนาดตัวอักษร */
    display: inline-block; /* ให้เส้นขีดล่างตรงกับขนาดข้อความ */
    margin-bottom: 20px; /* เว้นระยะจากองค์ประกอบถัดไป */
}

.bottom-line {
    border-bottom: 2px solid #fff; /* เส้นขีดล่าง */
    padding-bottom: 8px; /* เพิ่มระยะห่างระหว่างตัวอักษรกับเส้น */
    display: inline-block; /* ให้เส้นขีดล่างตรงกับขนาดข้อความ */
}

.right-line-dark {
    border-right: 2px solid #222222 !important; /* เส้นขีดล่าง */
    padding-right: 8px; /* เพิ่มระยะห่างระหว่างตัวอักษรกับเส้น */
    display: inline-block; /* ให้เส้นขีดล่างตรงกับขนาดข้อความ */
}

.bottom-line-dark {
    border-bottom: 2px solid #222222 !important; /* เส้นขีดล่าง */
    padding-bottom: 8px; /* เพิ่มระยะห่างระหว่างตัวอักษรกับเส้น */
    display: inline-block; /* ให้เส้นขีดล่างตรงกับขนาดข้อความ */
}

/* ///////////////////////////////////////////////////////////////////////////// */

.list-container {
    text-align: left; /* ทำให้ข้อความในคอนเทนเนอร์ชิดซ้าย */
}

.list-left {
    list-style-type: disc; /* แสดงจุด bullet แบบธรรมดา */
    padding-left: 20px; /* เพิ่มระยะห่างด้านซ้าย */
    margin: 0; /* ตั้งค่าระยะห่างของ list */
    text-align: left; /* ทำให้ข้อความในรายการชิดซ้าย */
}

.list-items {
    font-family: 'Sofia Sans', sans-serif; /* กำหนดฟอนต์สำหรับ <li> */
    font-size: 16px; /* ขนาดตัวอักษร */
    color: #333; /* สีตัวอักษร */
    line-height: 1.8; /* ระยะห่างระหว่างบรรทัด */
    padding-left: 10px; /* เพิ่มช่องว่างระหว่างข้อความกับเครื่องหมายลิสต์ */
    margin-bottom: 5px; /* เว้นระยะระหว่างแต่ละรายการ */
}

/* ///////////////////////////////////////////////////////////////////////////// */

.btn-booking {
    display: inline-block; /* ทำให้ปุ่มดูเหมือน block */
    background-color: #ff4500; /* สีพื้นหลัง */
    color: #fff; /* สีตัวอักษร */
    text-decoration: none; /* ลบเส้นใต้ */
    padding: 12px 20px; /* เพิ่มระยะขอบด้านใน */
    font-size: 18px; /* ขนาดตัวอักษร */
    font-weight: bold; /* ตัวอักษรหนา */
    border-radius: 25px; /* มุมโค้ง */
    transition: background-color 0.3s ease, transform 0.2s ease; /* เพิ่มเอฟเฟกต์เมื่อ hover */
    text-align: center;
    margin-bottom: 20px; /* เพิ่มระยะห่างเฉพาะด้านล่าง */
}

.btn-booking:hover {
    background-color: #e63e00; /* สีพื้นหลังเมื่อ hover */
    transform: scale(1.05); /* ขยายขนาดเล็กน้อย */
}

.btn-booking:active {
    transform: scale(0.95); /* ลดขนาดเล็กลงเมื่อกด */
}

/* ///////////////////////////////////////////////////////////////////////////// */
/* สร้างฟอร์ม */

form {
    max-width: 700px;
    margin: 0 auto;
    background: #000000;
    padding: 20px;
    border-radius: 8px;
    border-color: #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="file"] {
    padding: 5px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.form-group {
    margin-bottom: 20px;
}

/* ///////////////////////////////////////////////////////////////////////////// */

.content-box {
    display: flex; /* ใช้ Flexbox */
    flex-direction: column; /* จัดเรียงแนวตั้ง */
    align-items: center; /* จัดให้อยู่ตรงกลางทั้งแนวนอน */
    text-align: center; /* จัดข้อความในบรรทัดให้อยู่ตรงกลาง */
    padding: 20px; /* เพิ่มระยะห่างรอบๆ */
    border: 1px solid #ccc; /* เส้นขอบกล่อง */
    border-radius: 10px; /* มุมโค้ง */
    max-width: 400px; /* จำกัดความกว้างของกล่อง */
    margin: 0 auto; /* จัดให้อยู่กลางหน้าจอ */
    background-color: #fff; /* พื้นหลังสีขาว */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* เพิ่มเงา */
}

.icon-container {
    margin: 10px 0; /* เพิ่มช่องว่างรอบรูป */
}

.icon-image {
    width: 100px; /* กำหนดความกว้างของไอคอน */
    height: 100px; /* กำหนดความสูงของไอคอน */
    object-fit: contain; /* จัดขนาดภาพให้พอดี */
}

/* ///////////////////////////////////////////////////////////////////////////// */

.phone-link {
    color: #25D366; /* สีเขียวของ WhatsApp */
    font-weight: bold;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366; /* สีเขียวของ WhatsApp */
    font-weight: bold;
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
}