/* Global Styles */
:placeholder-shown {
    font-family: 'Noto Sans Lao', sans-serif;

}
*{
    font-family: 'Noto Sans Lao', 'Prompt',sans-serif;

}
body {
    margin: 0;
    font-family: 'Noto Sans Lao', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6A0DAD, #FF4500);
    background-size: cover;
    background-position: center;
    color: #ffcc00;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #6A0DAD, #FF4500);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffcc00;
}

/* Header Content Container */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    margin-left: 30px;
    width: 60px;
    height: auto;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.logo-container h2 {
    color: #ffcc00;
    font-weight: 700;
    font-size: 1.5em;
    margin: 0;
}

.site-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

/* Navigation Links */
.nav-links a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;

}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
}

/* Mobile hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffcc00;
    margin: 3px 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.8);
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }

    nav.active ul {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}