html {
    scroll-behavior: smooth;
}

/* Navbar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(117, 117, 117, 0.7); /* สีขุ่น */
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ให้โลโก้อยู่ซ้าย เมนูอยู่ขวา */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000; /* ให้ navbar อยู่ด้านหน้า */
}

/* โลโก้ */
.nav-bar img {
    max-height: 50px; /* กำหนดขนาดโลโก้ */
    width: auto;
}

/* กล่องเมนู */
.nav-menu {
    display: flex;
    gap: 1.5rem;
}

/* ลิงก์เมนู */
.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #2563EB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}




/* Responsive */
@media (max-width: 768px) {
    .nav-bar {
        padding: 1rem;
    }
    .nav-bar img {
        max-height: 40px;
    }
    .nav-menu {
        gap: 1rem;
    }
}


