
@font-face {
            font-family: 'Brunson';
            src: url('../fonts/Brunson.ttf')  format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'BUTTERSHINE';
            src: url('../fonts/BUTTERSHINE SERIF.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Daughter';
            src: url('../fonts/DaughterofFortune.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .container {
            width: 100%;

            margin: 0 auto;
        }

        html,
        body {
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden;
        }

        body {
            width: 100%;
            /* จำกัดความกว้างสูงสุด */
            margin: 0 auto;
            /* จัดให้อยู่กึ่งกลาง */
            display: flex;
            flex-direction: column;
            line-height: 1.6;
            color: var(--dark-color, #333);
            background-color: #ffffff;
        }

        p {
            margin-top: 0;
            margin-bottom: 0;
        }

        footer a {
            color: #ffffff;
            text-decoration: none;
            transition: var(--transition);
        }

        footer a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        /* Utility classes */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Loading spinner */
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }


        /* html.modal-open,
        body.modal-open {
            overflow: hidden !important;
            height: 100%;
        } */


        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @media (min-width: 2560px) {
            .container {
                width: 100%;
                padding: 0 1rem;
                margin: 0 auto;
            }}



    .locations-col {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        /* เส้นคั่นสีอ่อน */
        padding-left: 28px;
        /* เว้นช่องให้ดูโล่ง */
        height: 100%;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        /* ขนาดกรอบไอคอนเท่ากัน */
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        /* ตัดส่วนเกิน */
    }

    .social-icon img {
        width: 70%;
        /* ขนาดไอคอนด้านใน */
        height: 70%;
        object-fit: contain;
        /* รักษาสัดส่วนไม่บี้ */
    }


    .social-icon:hover {
        transform: translateY(-2px);
        color: #ffffff !important;
    }

    .app-buttons a img {
        transition: all 0.3s ease;
        filter: brightness(1);
    }

    .app-buttons a:hover img {
        filter: brightness(1.1);
        transform: translateY(-2px);
    }

    .location-info a:hover {
        opacity: 1 !important;
        text-decoration: underline !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        footer .container {
            padding-left: 20px;
            padding-right: 20px;
        }

        footer h2 {
            font-size: 1.8rem !important;
        }

        .social-icon {
            width: 28px;
            height: 28px;
            margin-right: 0.5rem !important;
        }

        .app-buttons a {
            display: block;
            width: 135px;
            margin-bottom: 10px;
        }

        .location-info {
            font-size: 0.85rem !important;
        }
    }

