:root {
    --primary-color: #0f172a; /* สีน้ำเงินเข้ม/ดำ */
    --accent-color: #d4af37; /* สีทอง */
}
body { font-family: 'Prompt', sans-serif; background-color: #f8f9fa; }
.navbar-brand img { height: 50px; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.btn-accent { background-color: var(--accent-color); color: #fff; border: none; }
.btn-accent:hover { background-color: #b5952f; color: #fff; }

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
}
.hero-content { position: relative; z-index: 1; }

/* Cookie Consent */
#cookieConsent {
    position: fixed;
    bottom: 0; width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}
.img-fit { object-fit: cover; width: 100%; height: 300px; border-radius: 8px; }