* {
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    padding: 0;
}

.text-white {
    color: white;
}

.theme-default {
    background: white;
    color: black;
}

.theme-dark {
    background: black;
    color: white;
}

.theme-yellow {
    background: black;
    color: yellow;
}

.font-size-small {
    font-size: 14px;
}

.font-size-medium {
    font-size: 16px;
}

.font-size-large {
    font-size: 18px;
}

header {
    background: #800000;
}

header .top-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #acaaaa;
}

header .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #800000;
    color: #fff;
}

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

nav ul li {
    position: relative;
    cursor: pointer;
}

nav ul li ul {
    position: absolute;
    display: none;
    background: #800000;
    list-style: none;
    padding: 10px;
    width: 180px;
    z-index: 999;
}

nav ul li ul li {
    padding: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

nav ul li:hover ul {
    display: block;
}

.banner {
    background: url("/assets/img/parliament.jpg") center center / cover no-repeat fixed;
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
}

footer {
    padding: 20px;
    background: #333;
    color: white;
    text-align: center;
}

li {
    user-select: none;
}

.top-bar button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 5px;
    line-height: 12.5px;
    font-size: 15px !important;
    text-align: center;
    background: #ffffff;
    border: none;
    font-family: 'Kanit', sans-serif;
    cursor: pointer;
}

.menu-toggle {
    display: none; 
    font-size: 20px; 
    cursor: pointer;
}

@media (max-width: 574.98px) {
    .menu-toggle {
        display: block;
    }
    .main-header nav {
        position: fixed;
        top: 109.15px;
        left: 0;
        height: calc(100vh - 109.15px);
        width: 100%;
        background: #880000;
        display: none;
        z-index: 1000;
    }

    .main-header nav>ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .main-header nav>ul>li:not(:last-child) {
        border-bottom: 1px solid;
        padding-bottom: 20px;
    }

    .main-header nav>ul>li>ul {
        position: relative;
        width: 100%;
        background: transparent;
        padding-left: 0;
    }

    .main-header nav>ul>li>ul>li:not(:last-child) {
        border-bottom: 1px solid #ff9b00;
    }
}

.tab-bread {
    padding: 10px 0;
    margin-left: -20px;
    margin-right: -40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: auto;
    background: rgba(31, 30, 30, 0.51) !important;
}

.menu-bread {
    color: #ccc;
    font-weight: 700;
    font-size: 14px;
    float: left;
    margin: 10px 0px;
    background: transparent !important;
}

.menu-bread a {
    background: transparent !important;
}

.menu-bread span {
    background: transparent !important;
}

.menu-bread a {
    color: #ffffff;
}

.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; } 
@media (min-width: 576px) { .container { max-width: 540px; } } 
@media (min-width: 768px) { .container { max-width: 720px; } } 
@media (min-width: 992px) { .container { max-width: 960px; } } 
@media (min-width: 1200px) { .container { max-width: 1140px; } } 
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.menu-bread a {
    color: #ffffff;
}

a {
    text-decoration: none;
}

.executives-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.executives-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.executive-card.full {
    grid-column: 1;
    width: 100%;
}

.executive-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;

}

.executive-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.executive-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
