body {
    font-family: 'Prompt', sans-serif;
    background-color: #FEF9F3; /* Light Cream */
    color: #384C40; /* Dark Greenish */
}

.phutawan-logo {
    max-width: 250px;
    margin: 20px auto;
    display: block;
}

/* Base Buttons */
.btn-phutawan {
    background-color: #9BB092; /* Sage Green */
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    border: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-phutawan:hover {
    background-color: #7A9074;
    color: white;
}

.btn-phutawan-dark {
    background-color: #384C40; /* Dark Green */
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    border: none;
    transition: background-color 0.3s ease;
     text-decoration: none;
    display: inline-block;
     text-align: center;
}

.btn-phutawan-dark:hover {
    background-color: #2A3930;
    color: white;
}

.btn-phutawan-outline {
    background-color: #D4BB99; /* Tan/Beige */
    color: #384C40;
    border-radius: 25px;
    padding: 10px 30px;
    border: 1px solid #D4BB99;
    transition: all 0.3s ease;
     text-decoration: none;
    display: inline-block;
     text-align: center;
}

.btn-phutawan-outline:hover {
    background-color: #C3A987;
    color: #384C40;
}

/* Add other specific styles based on images */

.booking-section {
    background-image: url('../images/booking_background.jpg'); /* Adjusted path for style.css */
    background-size: cover;
    background-position: center bottom;
    min-height: 100vh;
    padding: 50px 15px; /* Add some padding */

    /* --- Core Centering Styles --- */
    display: flex;            /* 1. เปิดใช้งาน Flexbox */
    flex-direction: column;   /* 2. จัดเรียงแนวตั้ง */
    align-items: center;      /* 3. จัดกึ่งกลางแนวนอน (เพราะ flex-direction เป็น column) */
    justify-content: flex-start; /* 4. จัดชิดด้านบน (ถ้าต้องการกลางแนวตั้ง ให้ใช้ 'center') */
    width: 100%;              /* 5. ทำให้เต็มความกว้าง */
}

.booking-form {
    max-width: 450px;       /* กำหนดความกว้างสูงสุด */
    width: 100%;            /* ทำให้ Responsive */
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;       /* ระยะห่างจากด้านบน (ปรับได้ตามต้องการ) */
    /* ไม่จำเป็นต้องใช้ margin: auto; แล้วเมื่อใช้ Flexbox */
}

/* ตรวจสอบว่า Logo ไม่ได้ทำให้กว้างเกินไป */
.booking-form .phutawan-logo {
    max-width: 200px; /* หรือขนาดที่เหมาะสม */
    height: auto;
    margin-bottom: 30px; /* เพิ่มระยะห่างด้านล่าง */
}

/* ตรวจสอบให้แน่ใจว่า Label ไม่ได้ทำให้ Layout เพี้ยน */
.booking-form .form-label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
    color: #384C40;
    padding-left: 15px; /* อาจจะเพิ่ม padding เล็กน้อย */
}

.booking-form, .booking-summary {
     max-width: 450px;
     background-color: rgba(254, 249, 243, 0.8); /* Semi-transparent cream */
     padding: 40px;
     border-radius: 10px;
     text-align: center;
}

.booking-form h2, .booking-summary h2 {
    margin-bottom: 10px;
}

.booking-form .form-control {
    background-color: #D4BB99;
    border: none;
    border-radius: 25px;
    padding: 15px 25px;
    margin-bottom: 20px;
    text-align: center;
    color: #384C40;
}

.booking-form .form-control::placeholder {
    color: #795F46;
}

/* === Booking Page Styles === */

.booking-form, .payment-box, .summary-box {
    max-width: 450px;
    width: 100%;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.booking-form h2, .payment-box h2, .summary-box h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #384C40;
}

.booking-form p, .payment-box p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 30px;
}

.booking-form .form-label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
    color: #384C40;
}

.booking-form .form-control {
    background-color: #D4BB99;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    margin-bottom: 15px;
    text-align: left;
    color: #384C40;
    width: 100%;
    font-size: 1rem;
    box-shadow: none !important; /* Remove default focus glow */
    border: 1px solid transparent; /* Prepare for invalid state */
}

.booking-form .form-control.is-invalid {
    border: 1px solid #dc3545; /* Bootstrap danger color */
}


.booking-form .form-control::placeholder {
    color: #795F46;
    text-align: left;
}

.booking-form textarea.form-control {
    text-align: left;
    border-radius: 15px;
}

.date-time-group {
    position: relative;
}

.date-time-group::after {
    content: '📅'; /* Simple calendar emoji */
    position: absolute;
    right: 25px;
    top: 13px; /* Adjust vertical position */
    font-size: 1.2rem;
    pointer-events: none;
}

.form-text.text-danger {
    font-size: 0.8em;
    text-align: left;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
    margin-left: 15px;
    color: #dc3545 !important;
}

.submit-btn {
    margin-top: 20px;
}

/* Base class for landscape footers */
.landscape-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Adjust height as needed */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: -1; /* Place behind content */
}

/* Payment Specific */
.payment-section {
     align-items: center; /* Center vertically */
}
.payment-method {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    text-align: left;
}
.payment-method h4 {
    color: #384C40;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.payment-method img {
    max-width: 150px;
    display: block;
    margin: 15px auto;
    border: 1px solid #ccc;
}
.deposit-info {
    font-size: 1.5rem;
    font-weight: 500;
    color: #384C40;
    margin-bottom: 30px;
}

/* Summary Specific */
.summary-section {
     align-items: center; /* Center vertically */
}
.summary-box h2 {
    margin-bottom: 40px;
}
.booking-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.life-logo {
    width: 100px;
    height: 100px;
    background-color: #384C40;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Times New Roman', Times, serif; /* Or a script font */
    font-size: 2.5rem;
    margin-right: 30px;
    flex-shrink: 0; /* Prevent shrinking */
}
.life-logo small {
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-top: -5px;
    font-family: 'Prompt', sans-serif;
}
.booking-details {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #384C40;
}
.conditions {
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    padding-left: 15px;
    border-left: 2px solid #D4BB99;
    margin: 0 auto; /* Center if needed */
    max-width: 380px; /* Limit width */
}
.conditions ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.conditions ul li {
    margin-bottom: 10px;
}
.conditions ul li::before {
    content: "-";
    margin-right: 10px;
    color: #384C40;
}