@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

:root {
    --full-size: 1920px;
    --full-minisize: 1200px;
    --fit-height: 1080px;
    --bg_santa_main: #b20000;
    --santa_main: #b20000;
    --santa_2main: #cf2e2e;
}


.navbar {
    width: var(--full-size);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    transition: all .5s var(--greenshift-transition), z-index 0s;
    position: sticky;
    top: 0;
}

.hamburger,
.mo_text,
.x {
    display: none;
}

.navbar-top {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 20px;
    width: var(--full-minisize);
}

.navbar-left {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.navbar-left p {
    font-size: 14px;
    font-weight: bold;
}

.logo {
    margin-right: 10px;
    width: 100px;
    height: 100px;
}

.con_user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.con_user p {
    color: var(--santa_main);
    font-weight: bold;
}

.iconuser {
    width: 20px;
    height: 20px;
}

.navbar-center {
    text-align: center;
}

.con_contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
    justify-content: space-evenly;
}

.con_contact img {
    width: 30px;
    height: 30px;
}
.line {
    width: 2px;
    height: 60px;
    background-color: #55555559;
}
.line-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.line-id {
    color: #2db400;
    font-weight: bold;
}

.working-hours {
    font-size: 14px;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.navbar-right {
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact_mobile {
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.head_bn {
    font-size: 20px;
    color: var(--santa_main);
    font-weight: bold;
}

.phone {
    font-size: 20px;
    font-weight: bold;
    color: var(--santa_main);
}

.img_callme {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Navbar Bottom */
.navbar-bottom {
    background-color: var(--bg_santa_main);
    padding: 15px 0;
    width: 100%;
}

.navbar-bottom nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-bottom nav ul li {
    position: relative;
    margin: 0 15px;
}

.navbar-bottom nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    display: block;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    height: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 5px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    color: white;
    padding: 8px 15px;
    display: block;
    font-size: 14px;
}

/* แสดง Dropdown เมื่อ hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown 2 ชั้น */
.dropdown-submenu {
    position: relative;
}

/* ซ่อนเมนูย่อย */
.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--bg_santa_main);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* แสดงเมนูย่อยเมื่อ hover */
.dropdown-submenu:hover .submenu {
    display: block;
}

/* ปรับไอคอน */
.dropdown img {
    width: 10px;
    height: 10px;
}

.group_iconnav {
    display: flex;
    align-items: center;
}

.group_iconnav img {
    width: 30px;
    height: 30px;
}

/* ปุ่ม */
.btn {
    display: inline-block;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    color: white;
    width: 120px;
    height: 20px;
}

.btn-standard {
    background-color: var(--santa_main);
}

.btn-gold {
    background-color: gold;
    color: black;
}

.btn-premium {
    background-color: purple;
}

.btn-platinum {
    background-color: black;
}

.nav_tiver {
    color: #000;
}


.menu-button {
    display: none;
}

.custom-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.custom-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40%;
    height: 2px;
    background-color: var(--bg_santa_main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.custom-link:hover {
    color: #ff4500;
}

.custom-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.group_iconnav_1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.row_con_pk_1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.con_pk {
    display: flex;
    flex-direction: row;
}

.con_pk_1 {
    display: flex;
    flex-direction: row;
}

a.active {
  border-bottom: 2px solid white;
  color: white; 
}

@media (min-width: 1367px) and (max-width: 1919px) {
    .navbar {
        width: 100%;
    }

    .navbar-top {
        width: 100%;
        padding: 0px;

    }

    .navbar-bottom {
        width: 100%;
    }

    .navbar-bottom nav ul li {
        position: relative;
        margin: 0 4px;
    }

    .pg_1,
    .pg_2,
    .pg_3,
    .pg_4 {
        width: 500px;
        height: 350px;
    }
}



.menu-button {
    display: none;
}

@media (max-width:1100px) {
    .navbar {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--bg_santa_main);
        transition: all .5s var(--greenshift-transition), z-index 0s;
        position: sticky;
    }

    .con_mo {
        display: block;
    }

    .mo_text {
        display: block;
        margin: 0;
        font-size: 16px;
    }

    .navbar-top {
        flex-direction: column;
        text-align: center;
        width: 90%;
        background-color: var(--bg_santa_main);
        display: flex;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .navbar-left {
        color: #fff;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .navbar-left p {
        margin: 0;
        font-size: 12px;
        color: #fff;
    }

    .navbar-center,
    .navbar-right{
        display: none;
    }

    .hamburger,
    .x {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        position: absolute;
        left: 10px;
    }

    .hamburger img,
    .x img {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }

    .x {
        display: none;
    }

    .navbar-bottom {
        padding: 0;
    }

    .navbar-bottom nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100px;
        height: 100vh;
        justify-content: flex-start;
        align-items: flex-start;
        left: 0;
        width: 100%;
        padding: 10px 3px;
        border-bottom: 1px solid;
    }

    .navbar-bottom nav ul li {
        margin: 10px 3px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .navbar-bottom nav ul li a {
        text-align: start;
        color: black;
        margin: 0px 0px;
        font-size: 13.5px;
        font-weight: 600;
        padding: 0;
    }

    .menu-active {
        display: flex !important;
    }

    .dropdown-menu {
        transform: translateY(-60px);
        display: flex;
        min-width: 195px;
        height: auto;
        background-color: transparent;
    }

    .menu-button {
        display: block;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        text-align: center;
        background-color: #B20000;
        border-radius: 0px;
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }

    .menu-button.rotated img {
        transform: rotate(180deg);
    }

    .row_iconnav {
        display: flex;
    }

    .con_pk {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-evenly;
        width: 98%;
    }

    .row_con_pk_1 {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: auto;
    }

    .con_pk_1 {

        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 80px;

    }

    .group_iconnav_1 {
        display: flex;
        flex-direction: column;
        width: 33%;
        align-items: center;
    }

    .group_iconnav img {
        width: 15px;
        height: 15px;
    }

    .btn {
        width: 130px;
        height: 35px;
    }
}
@media (min-width:1101px) and (max-width: 1366px) {
    .navbar-top {
        display: none;
}
}
