:root {
	--color-white: #fff;
	--color-black: #000;
	--color-main: #d0a060;
	--tw-text-opacity: 1;
}

h1, h2, h3 {
	font-weight: 700 !important;
}

/* Áp dụng cho Chrome, Edge và Safari */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--color-white);
}

::-webkit-scrollbar-thumb {
	background-color: var(--color-main);
	border-radius: 8px;
	border: none;
}

.loc {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.loc::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -15%;
    width: 60%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(185, 140, 70, 0.28) 0%,
        rgba(185, 140, 70, 0.18) 30%,
        rgba(185, 140, 70, 0.08) 55%,
        transparent 75%
    );
    filter: blur(70px);
    pointer-events: none;
}

.loc .section-content {
    position: relative;
    z-index: 2;
}

.absolute-footer.dark {
	display: none;
}