
/* ทำให้ Home Section เต็มหน้าจอ */
.home {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 65px;
}

/* วิดีโอพื้นหลัง */
.background-video {
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* เพิ่ม Overlay เพื่อให้ตัวหนังสืออ่านง่าย */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* ฟอร์มติดต่อ */
.contact-form {
    margin-right: 1000px;
    transform: translateY(30%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* สไตล์สำหรับหัวข้อฟอร์ม */
.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

/* สไตล์สำหรับฟอร์ม input และ textarea */
.contact-form label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    color: black;
    background-color: #fff;
}

/* ล็อคขนาดของ textarea */
.contact-form textarea {
    height: 100px;
    resize: none;
}

/* เมื่อฟอร์ม input หรือ textarea ถูกเลือก (focus) */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

/* สไตล์สำหรับปุ่มส่ง */
.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    font-style: italic;
}




/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .home {
        height: 100vh;
        padding: 0;
    }

    .contact-form {
        margin-right: 0;
        width: 50%;
        max-width: 50%;
    }

    .contact-form h2 {
        font-size: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 8px;
    }

    .contact-form button {
        font-size: 12px;
        padding: 10px;
    }
}

/* ลดความสูงของฟอร์ม */
@media (max-width: 480px) {

    .home{
        margin-top: 100px;
    }

    .contact-form {
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .contact-form h2 {
        font-size: 12px;
        /* ลดขนาดหัวข้อให้เล็กลง */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 10px;
        padding: 6px;
        /* ลด padding */
    }

    .contact-form button {
        font-size: 10px;
        padding: 8px;
        /* ลดขนาดของปุ่ม */
    }
}