/* style.css - Custom styles for Bootstrap 5 template */

/* Table of contents */
/* 0. Fonts */
/* 1. Loader */
/* 2. Age verification */
/* 3. Custom styles */

/* Root variables for easy theming */
:root {
    --primary-color: #000000; /* Màu đen thay cho #822a1a */
    --fs-color-primary: #000000; /* Màu đen thay cho #822a1a */
    --fs-color-secondary: #333333; /* Xám đậm thay cho #636146 */
    --fs-color-success: #ffffff; /* Màu trắng thay cho #fcf7e8 */
    --fs-color-alert: #f5f5f5; /* Xám nhạt thay cho #161616 */
    --fs-experimental-link-color: #666666; /* Xám trung tính thay cho #636146 */
    --fs-experimental-link-color-hover: #999999; /* Xám sáng hơn thay cho #808074 */
}

body {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

/* 0. Fonts */
/* Set Fonts file woff from assets */
@font-face {
    font-family: "Lacatina";
    src: url("../fonts/FontWOFF-CinzelDecorative-Bold.woff") format("woff");
    text-transform: none;
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SVNNeueMontreal";
    src: url("../fonts/SVN-Neue-Montreal-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SaaSeriesVN";
    src: url("../fonts/LatoWOFF/Lato-Regular.woff") format("woff2");
    font-weight: normal;
    font-style: normal;
}
/* Set fonts lato from google */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* 1. Loader */
/* Loader styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #1a1a1a; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#loading-content {
    width: 300px;
    height: 300px;
}

.loading-text {
    color: #fddc41;
    font-family: "Lacatina", sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    text-align: center;
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8b6235, #fddc41, #a8862f);
    transition: width 0.3s ease;
}

body.loaded #loading-screen {
    opacity: 0;
    pointer-events: none;
}

/* 2. Age verification */
/* Age verification modal styles */
.title-age-modal {
    font-family: "Lacatina", sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.age-verification-modal {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1555160877-f36432094bd9?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    color: white;
}

.age-verification-content {
    max-width: 600px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
}

.btn-age-verify {
    padding: 10px 30px;
    font-weight: bold;
    margin: 10px;
}

/* 3. Custom styles */

.list-unstyled {
    list-style: none;
}
.list-unstyled li {
    padding: 5px 0;
}
.list-unstyled li a {
    color: #8a8a8a;
    text-transform: uppercase;
    font-family: "SaaSeriesVN", sans-serif;
    font-size: 18px;
}
.list-unstyled li a:hover {
    color: #5a1a1a;
}

.active > .page-link, .page-link.active{
    background-color: #5a1a1a !important;
    border-color: #5a1a1a !important;
    color: #f4efea !important;
}
