      /* --- 1. Global Styles --- */
        :root {
            --primary-blue: #AECBFA; /* ฟ้าอ่อน */
            --dark-blue: #4A90E2;    /* ฟ้าเข้ม */
            --white: #FFFFFF;
            --text-color: #333333;
        }

        body {
            font-family: 'Prompt', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            color: var(--text-color);
            background-color: #F8F8FF; /* พื้นหลังสีขาวหิมะ */
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        h2 {
            text-align: center;
            color: var(--dark-blue);
            margin-bottom: 40px;
            font-size: 2.5em;
        }

        /* --- 2. Navigation Bar --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8em;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 25px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--dark-blue);
        }

        /* --- 3. Hero Section --- */
        #home {
            position: relative;
            background: linear-gradient(180deg, var(--primary-blue) 0%, #E0F7FA 100%);
            color: var(--white);
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden; /* สำคัญสำหรับเอฟเฟกต์หิมะ */
        }

        .hero-content {
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 4em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.5em;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s, transform 0.3s;
        }

        .cta-button:hover {
            background-color: #3B7ADF;
            transform: scale(1.05);
        }
        
        /* ตุ๊กตาหิมะ */
        .snowman {
            position: absolute;
            bottom: 20px;
            right: 50px;
            width: 150px; /* ปรับขนาดตามต้องการ */
            z-index: 10;
        }
        
        /* --- 4. Snowflake Interactive (CSS) --- */
        .snowflake {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--white);
            border-radius: 50%;
            opacity: 0.8;
            pointer-events: none;
            animation: fall linear infinite;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }
        
        /* --- 5. Menu Section --- */
        #menu {
            padding: 80px 0;
            background-color: var(--white);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .menu-item {
            background-color: #F8F8FF;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .menu-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-bottom: 5px solid var(--primary-blue);
        }

        .menu-info {
            padding: 20px;
            text-align: center;
        }

        .menu-info h3 {
            color: var(--dark-blue);
            margin-top: 0;
        }

        /* --- 6. Contact Section --- */
        #contact {
            padding: 60px 0;
            background-color: #E0F7FA; /* สีฟ้าอ่อน */
            text-align: center;
        }
        
        .contact-info p {
            font-size: 1.1em;
            margin: 10px 0;
        }

        /* --- 7. Footer --- */
        .footer {
            background-color: var(--dark-blue);
            color: var(--white);
            text-align: center;
            padding: 15px 0;
            font-size: 0.9em;
        }
        /* --- 3. Hero Section (ปรับปรุงสำหรับ Background Image) --- */
        #home {
            position: relative;
            /* **ใส่ URL รูปภาพของคุณที่นี่** */
            background-image: url('bg.png'); 
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            
            color: var(--white);
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden; 
        }

        /* เพิ่ม Overlay เพื่อให้ข้อความอ่านง่ายขึ้น แม้ภาพพื้นหลังจะสว่าง */
        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* เพิ่มสีฟ้าอ่อนโปร่งแสงทับรูปภาพ */
            background-color: rgba(174, 203, 250, 0.4); /* primary-blue + โปร่งแสง 40% */
            z-index: 5;
        }

        .hero-content {
            z-index: 10; /* ให้ข้อความอยู่เหนือ Overlay และหิมะ */
        }

        .hero-content h1 {
            font-size: 4em;
            margin-bottom: 10px;
            /* เพิ่มเงาข้อความสีเข้มขึ้นเพื่อให้ตัดกับพื้นหลัง */
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); 
        }

        .hero-content p {
            font-size: 1.5em;
            margin-bottom: 30px;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
        }

        /* (ส่วน CTA Button และ Snowman อื่นๆ เหมือนเดิม) */
        
        /* --- Responsive Design (Optional) --- */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3em;
            }
            .hero-content p {
                font-size: 1.2em;
            }
            .nav-content {
                flex-direction: column;
            }
            .nav-links {
                margin-top: 10px;
            }
            .nav-links a {
                margin: 0 10px;
            }
            .snowman {
                width: 100px;
                right: 20px;
            }
        }
        /* --- Cookie Consent Banner Styles --- */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue, #004d40); /* ใช้สีหลักของร้าน */
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* ให้แสดงอยู่เหนือองค์ประกอบอื่น */
    text-align: center;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* เพื่อให้ปรับได้ดีในมือถือ */
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
    text-align: left;
    padding-right: 20px;
}

.cookie-button {
    background-color: white;
    color: var(--dark-blue, #004d40);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    min-width: 100px;
    transition: background-color 0.3s;
}

.cookie-button:hover {
    background-color: #f0f0f0;
}

/* ปรับให้ดีขึ้นสำหรับมือถือ */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }
    .cookie-button {
        width: 100%;
    }
}
