/*
Theme Name: Porong Wei Theme
Theme URI: https://porongwei.com
Author: Porong Wei Team
Author URI: https://porongwei.com
Description: Custom WordPress theme for Porong Wei - Heritage Cuisine.
Version: 1.0.0
Text Domain: porong-wei
*/

/* 
   Note: This theme uses Tailwind CSS. 
   For production, you should compile Tailwind to a separate CSS file or include the CDN for development.
   The styles below are minimal resets or specific overrides if needed.
*/

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Ensure modal is on top */
#orderModal {
    z-index: 9999;
}

#storyModal {
    z-index: 9999;
}

/* Custom Scrollbar for Story Modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(128, 0, 0, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #800000;
    border-radius: 20px;
}