/* --- การตั้งค่าพื้นฐาน --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden; /* ป้องกันการเลื่อนจอ */
}

#app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}
#main-wrapper {
            /* กำหนดความสูงเต็มหน้าจอ */
            min-height: 100vh;
            
            /* เปิดใช้งาน Flexbox */
            display: flex;
            
            /* จัดกึ่งกลางในแนวตั้ง (align-items: center) */
            align-items: center; 
            
            /* จัดกึ่งกลางในแนวนอน (justify-content: center) */
            justify-content: center;

            background: url('images/bg0.jpg') no-repeat center center;
            background-size: cover;


        }
/* --- ฉากหลังและแม่น้ำ --- */
#background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/wat_arun_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    filter: brightness(0.7); /* ทำให้มืดลงเล็กน้อย */
}

#river {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%; /* พื้นที่แม่น้ำ */
    z-index: 10;
}

/* --- ฟอร์มคำอธิษฐาน (Modal) --- */
#wish-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s;
}

#wish-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

#wish-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#krathong-selector {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

#krathong-selector label {
    cursor: pointer;
}

#krathong-selector img {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 5px;
}

#krathong-selector input[type="radio"] {
    display: none; /* ซ่อนปุ่ม radio จริง */
}

#krathong-selector input[type="radio"]:checked + img {
    border-color: #00aaff;
    transform: scale(1.1);
}

#wish-form button {
    flex: 1; /* แบ่งพื้นที่กันคนละครึ่ง */
    padding: 12px 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none; /* เอาขอบเดิมออก */
}
/* ในไฟล์ style.css */

.button-container {
    display: flex;
    justify-content: space-between; /* จัดปุ่มให้แยกกัน */
    gap: 10px; /* ระยะห่างระหว่างปุ่ม */
    margin-top: 15px; /* เว้นระยะจากด้านบน */
}


/* ⬆️ [จบส่วนที่เพิ่ม] ⬆️ */
/* --- กระทง (ที่ลอยแล้ว) --- */
.krathong {
    position: absolute;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 20;
    /* ขนาดและตำแหน่งจะถูกกำหนดโดย JavaScript */
}

/* Animation: ลอยกระทง (ใหญ่ไปเล็ก) */
@keyframes floatUp {
    0% {
        transform: scale(1.2) translateY(0);
        opacity: 1;
        bottom: -50px; /* เริ่มจากขอบล่าง */
    }
    100% {
        /* transform: scale(0.4) translateY(-300px); ลอยขึ้นไปและเล็กลง */
        transform: scale(0.4) translateY(-150px); 
        opacity: 0.8;
        bottom: 20%; /* จุดหมายปลายทาง (กลางๆ แม่น้ำ) */
        
    }
}

/* Animation: ลอยไปมาเบาๆ */
@keyframes gentleFloat {
    0% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(10px, 5px) rotate(2deg); }
    100% { transform: translate(0, 0) rotate(-2deg); }
}
@keyframes gentleFloat-medium {
    0% { transform: translate(0, 0) rotate(1deg); }
    50% { transform: translate(-8px, -4px) rotate(-1deg); }
    100% { transform: translate(0, 0) rotate(1deg); }
}

/* Animation: ลอยไปมา (แบบที่ 3: เร็วขึ้น/ไกลขึ้นนิดหน่อย) */
@keyframes gentleFloat-fast {
    0% { transform: translate(0, 0) rotate(-3deg); }
    50% { transform: translate(12px, 6px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(-3deg); }
}

.floating {
    animation: gentleFloat 8s ease-in-out infinite alternate;
}

/* --- Popup คำอธิษฐาน --- */
.wish-popup {
    position: absolute;
    bottom: 100%; /* แสดงผลเหนือกกระทง */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    display: none; /* เริ่มต้นด้วยการซ่อน */
    z-index: 99;
}

/* --- พลุ (CSS Animation) --- */
/* (อันนี้เป็นตัวอย่างง่ายๆ ครับ) */
#fireworks-layer::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffdd00;
    border-radius: 50%;
    left: 70%;
    top: 30%;
    box-shadow: 0 0 15px 5px #ffdd00;
    opacity: 0;
    animation: fireworks 3s ease-out infinite 1s;
}

@keyframes fireworks {
    0% { opacity: 0; transform: scale(0.1); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.1) translateY(50px); }
}


/* --- ปุ่มเสียง --- */
#audio-controls {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
}

#mute-btn {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#mute-btn img {
    width: 24px;
    height: 24px;
}
#wish-form button[type="submit"] {
    background-color: #ff6b6b; /* สีแดง */
    color: white;
}

#wish-form button[type="submit"]:hover {
    background-color: #e65a5a; /* สีเข้มขึ้นตอนชี้ */
}

/* 4. สไตล์ปุ่ม "ดูอย่างเดียว" (ปุ่มรอง - สีเทา) */
#view-only-btn {
    background-color: #f0f0f0; /* สีเทาอ่อน */
    color: #555;
    border: 1px solid #ccc; /* อาจจะใส่ขอบบางๆ */
}

#view-only-btn:hover {
    background-color: #e0e0e0; /* สีเข้มขึ้นตอนชี้ */
}