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

:root {
    --navy-blue: #0A1930; /* สีน้ำเงินเข้มตามโลโก้ */
    --gold: #D4AF37;      /* สีทองหรูหรา */
    --light-gold: #F3E5AB;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --text-dark: #333333;
}

body {
    font-family: 'Prompt', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--gray);
}

/* Header & Nav */
header {
    background-color: var(--navy-blue);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);
}

header .logo {
    color: var(--gold);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 25, 48, 0.8), rgba(10, 25, 48, 0.9)), url('hero-bg.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    border-bottom: 5px solid var(--gold);
}

.hero h1 {
    color: var(--gold);
    font-size: 36px;
}

/* Content Sections */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.title-gold {
    color: var(--gold);
    border-bottom: 2px solid var(--navy-blue);
    display: inline-block;
    padding-bottom: 5px;
}

/* Pricing Cards */
.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: var(--white);
    border: 1px solid var(--gold);
    border-top: 5px solid var(--navy-blue);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-top: 5px solid var(--gold);
}

.card h3 {
    color: var(--navy-blue);
    text-align: center;
}

.card .price {
    font-size: 24px;
    color: var(--gold);
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid var(--gold);
    margin-top: 40px;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}
/* =========================================
   ตั้งค่าภาพพื้นหลัง Hero Section สำหรับทุกหน้า
   ========================================= */
.hero, 
.hero-large, 
.page-header, 
.about-header {
    background: linear-gradient(rgba(10, 25, 48, 0.85), rgba(10, 25, 48, 0.92)), url('images/Screenshot 2026-05-06 200022.png') center center / cover no-repeat !important;
    background-attachment: fixed !important; 
    position: relative;
    color: var(--white) !important;
    padding: 60px 20px; /* จัดระยะขอบให้เท่ากันทุกหน้า */
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.hero h1, .hero-large h1, .page-header h1, .about-header h1 {
    color: var(--gold) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.hero p, .hero-large p, .page-header p, .about-header p {
    color: #f5f5f5 !important;
    position: relative;
    z-index: 2;
    font-size: 18px;
}