﻿/* ================================================================== */
/* Custom Font Declaration: Libertinus Sans                         */
/* ================================================================== */

@font-face {
    font-family: 'Libertinus Sans';
    src: url('../fonts/LibertinusSans-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libertinus Sans';
    src: url('../fonts/LibertinusSans-Bold.ttf') format('ttf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libertinus Sans';
    src: url('../fonts/LibertinusSans-Italic.ttf') format('ttf');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

.shop-logo-font {
    font-family: 'Libertinus Sans', sans-serif;
}
/* ================================================================== */
/* Custom Styles for Shop UFM                                         */
/* ================================================================== */

/* ---- 1. Global & Typography ---- */
html {
    font-size: 100%; /* 16px */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #095798; /* Màu xanh UFM cho các tiêu đề */
}



/* ---- 2. Helper Classes ---- */

/* Lớp phủ màu xanh bán trong suốt cho ảnh nền */
.bg-overlay {
    position: relative;
}

    .bg-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(9, 87, 152, 0.7); /* Màu xanh UFM với độ mờ 70% */
        z-index: 1;
    }

    /* Đảm bảo nội dung nằm trên lớp phủ */
    .bg-overlay > * {
        position: relative;
        z-index: 2;
    }

/* Hiệu ứng Parallax cho ảnh nền */
.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ---- 3. Custom Button ---- */
.btn-warning {
    background-color: #fff000; /* Màu vàng */
    border-color: #fff000;
    color: #095798; /* Chữ màu xanh */
    font-weight: bold;
}

    .btn-warning:hover {
        background-color: #e6d800; /* Màu vàng đậm hơn khi hover */
        border-color: #e6d800;
        color: #095798;
    }
