:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d4af37; /* Gold */
    --accent-glow: rgba(212, 175, 55, 0.5);
    --emerald: #10b981;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(15, 23, 42, 0.8);
}

body {
    font-family: 'Sarabun', 'Noto Sans Thai', sans-serif;
    background-color: #fcfcfc;
    color: var(--primary);
    line-height: 1.6;
}

/* Premium Header */
.top-bar {
    background: var(--primary) !important;
    border-bottom: 2px solid var(--accent) !important;
    padding: 8px 30px !important; /* Reduced padding */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
}

.company-name {
    font-family: 'Sarabun', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800 !important;
}

/* Glassmorphism Navigation */
#top-menu {
    background: var(--glass) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px; /* Matched with top-bar height */
    z-index: 999;
    margin: 0 !important;
}

.menu-item a {
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    padding: 20px 25px !important;
}

.menu-item a:hover {
    color: var(--accent) !important;
    background: rgba(0,0,0,0.02) !important;
}

.menu-item a::after {
    background: var(--accent) !important;
    height: 4px !important;
}

/* Hero Section Enhancement */
.hero-section {
    position: relative;
    height: 700px;
    background: url('../theme_assets/hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Luxury Product Cards */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.product-image-container {
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    transition: transform 0.8s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent) 0%, #b8860b 100%);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px var(--accent-glow);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
    filter: brightness(1.1);
}

/* Footer Enhancement */
footer {
    background: #080c14 !important;
    padding-top: 100px !important;
}

.footer-wave path {
    fill: #080c14 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-accent {
    color: var(--accent);
}
