:root {
    --bg-dark: #0a0a0a;
    --card-index-bg: #1a1a1a;
    --text-white: #ffffff;
    --nav-bg: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

#google_translate_element {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.goog-te-gadget-simple {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--primary-gold) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.goog-te-gadget-simple span {
    color: #fff !important;
    font-family: 'Kanit', sans-serif !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.parallax-section {
    background-image: url('../../assets/img/page/main/bg.png');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.brand-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    letter-spacing: 2px;
    z-index: 3;
    font-weight: 300;
}

.script-text {
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: -10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-title {
    font-size: 6rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sub-description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}



.info-section {
    background-color: #111;
    padding: 100px 0;
    position: relative;
}

section {
    padding-top: 20px;
}

.decorative-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 20px auto;
}

.menu-card {
    background-color: var(--card-index-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    margin: 10px;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}

.menu-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-content {
    padding: 25px;
}

.menu-category {
    color: var(--primary-gold);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.menu-title-th {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-currency {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80vh;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(1);
}



@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {
    .card__menu {
        width: 320px;
    }
}

@media (max-width: 991.98px) {
    .gallery-item{
        height: 45vh;
    }
}

@media (max-width: 767.98px) {
    .gallery-item{
        height: 45vh;
    }
}

@media (max-width: 575.98px) {
    .gallery-item{
        height: 35vh;
    }
    .script-text{
        font-size: 2rem;
    }
    .main-title{
        font-size: 3rem;
    }
}

@media (max-width: 359.98px) {
  
}