:root {
    --primary-gold: #eebb5d;
    --bg-dark: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #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;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 1));
    z-index: 1;
}


.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.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: 2rem;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.1;
}

.content-section {
    padding: 80px 0;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-frame img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    filter: sepia(20%) contrast(1.1);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.text-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.text-content p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

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

.philosophy-card {
    background-color: var(--card-bg);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}