/* Global Styles */
:root {
    --primary-color: #b31b1b;
    /* Rich Red */
    --secondary-color: #1a1a1a;
    /* Almost Black */
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --header-height: 60px;
}

body {
    font-family: "SweiFistLegCJKSC", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 96px;
    /* Account for fixed header */
    background-color: #f6f2ed;
    background-image: linear-gradient(180deg, #f7f3ef 0%, #f2ece5 100%);
    overflow-x: hidden;
    /* Prevent horizontal scroll/bounce */
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    /* padding: 0 0; */
}

.section-title {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8a1515;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}