/* --- Essentialist Main Styles --- */

/* Sticky Header - ทำให้เมนูติดหนึบด้านบน */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

/* จัดระเบียบ Logo และ Menu */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.brand__link {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

/* สไตล์เมนูหลัก */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.site-nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.site-nav ul li a:hover {
    color: #007aff; /* สีฟ้าสไตล์ทันสมัย */
}

/* ส่วนเนื้อหาหลัก */
.site-main {
    min-height: 70vh;
}

/* ส่วนท้าย (Footer) */
.site-footer {
    padding: 40px 0;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Container สำหรับ Elementor Full Width */
.elementor-full-width-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive สำหรับมือถือ */
@media (max-width: 768px) {
    .header__inner {
        flex-direction: column;
        gap: 10px;
    }
    .site-nav ul {
        gap: 15px;
        font-size: 13px;
    }
}