:root{
    --main-red:#EF4422;
    --warn-yellw:#FFFC03;
    --accent:#0b6cf0;
    --bg: #f6f8fb;
    --card: #ffffff;
    --muted: #65748b;
    --home-bg: #F8F7F4;
    --grey-text:rgba(0,0,0,0.6);
    --color-cream: #EAE3DC;
    --color-beige: #CFC4B8;
    --color-sand: #D6BFAE;
    --color-sage: #B6C3BA;
    --color-stone: #A3AAA6;
    --color-blush: #E6D5CF;
    --color-ivory: #F8F7F4;
    --hero-font-size2: 1.6rem;
}

@media screen { 
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Manrope', 'Inter', 'Noto Sans Thai', sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }
    body {
        background-color: var(--color-ivory);
        color: #000;
        line-height: 1.6;
        overflow-x: hidden;
    }
        ::placeholder {
            opacity:0.6;
        }
        ::-webkit-scrollbar{
            width:5px;
            height:8px;
        }
        ::-webkit-scrollbar-track{
            -webkit-box-shadow:inset 0 0  6px #A5A5A5;
            border-radius: 2px;
        }
        ::-webkit-scrollbar-thumb {
            background: #CCC;
            border-radius: 2px;
            border: 1px solid #AAA;
        }

        .act-as-button{
            cursor:pointer;
        }
            .act-as-button:active{
                transform: scale(0.9,0.9);
                transform-origin: center center;
            }
        .click-able{
            cursor:pointer;
        }
        button:active{
            transform: scale(0.9,0.9);
            transform-origin: center center;
        }
        .container{
            max-width:100%;
            padding-right: calc(var(--bs-gutter-x) * .25);
            padding-left: calc(var(--bs-gutter-x) * .25);
        }
    h1, h2, h3, h4, h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }
    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
    .grey-thin-text{
        color:var(--grey-text);
        font-weight:300;
    }
    .hide-element{ display:none !important; }
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--color-sage) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--color-sage) !important;
}

.head-navbar {
    justify-content:end;
    flex-grow: unset !important;
}

.btn-signin {
    background-color: transparent;
    border: 1px solid var(--muted);
    color: var(--muted);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-signin:hover {
    background-color: var(--color-sage);
    color: white;
}

.eot-comp-logo {
    display: inline-block;
    background-image: url('../img/Zentaiq_logo_no_bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 7.4rem;
    height: 3.7rem;
    vertical-align: middle;
    border-radius: 8px;
}
.eot-top-menu {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.row {
    gap: 20px 0;
}

.line-top{
    border-top: 1px solid rgba(0,0,0,0.1);
}
.line-bottom{
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--color-sand);
    color: #000;
    padding: 40px 34px 0;
}

.footer a {
    color: var(--bs-light);
    /* color: black; */
    text-decoration: none;
}
.footer a:hover {
    color: white;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-logo {
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:end;
}
    .footer-logo .logo{
        background-image: url('../img/Zentaiq_logo_no_bg.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100px;
        height:70px;
    }
    .social-icons {
        display:flex;
        justify-content: flex-start;
        gap: 8px;
    }
        .social-icons img {
            width:24px;
            height:24px;
            object-fit: cover;
        }
    .footer-logo p {
        width: 100%;
        text-align: right;
    }


.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color:white;
}