/* Custom Styles for Huai Yod Website */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #f9fafb;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/id/28/1920/1080');
    background-size: cover;
    background-position: center;
    height: 600px;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: #f97316;
    /* Orange-500 */
    color: white;
}

.btn-primary:hover {
    background-color: #ea580c;
    /* Orange-600 */
}