/* --- General --- */
body {
    /*font-family: 'Kanit', sans-serif;*/
	font-family: 'Noto Sans Thai', sans-serif;
    padding-top: 56px; /* ชดเชยความสูงของ Navbar ที่เป็น fixed-top */
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after { /* สร้าง Overlay สีดำโปร่งแสงเพื่อให้ข้อความเด่นขึ้น */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
}

/* --- Card Styles --- */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section-title {
    margin-bottom: 3rem;
    font-weight: 700;
}