/*
Theme Name: ThienMinh Express
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


/* GLOBAL STYLES */
@font-face {
    font-family: 'Lexend';
    src: url('./assets/fonts/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #25224b;
    --secondary-color: #f06728;
    --white-color: #ffffff;

    /* FONT */
    --font-primary: 'Lexend', sans-serif;
}

/* RESET FONT GLOBAL */
html, body {
    font-family: var(--font-primary) !important;
}

/* HEADING */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

/* PARAGRAPH */
p {
    font-family: var(--font-primary);
    margin: 0 0 10px;
    line-height: 1.6;
}

/* LINK */
a {
    font-family: var(--font-primary);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* NAV (Flatsome hay override chỗ này) */
.nav > li > a,
.nav-dropdown > li > a {
    font-family: var(--font-primary) !important;
}

/* BUTTON */
button,
.button,
input,
textarea,
select {
    font-family: var(--font-primary) !important;
}


/* HEADER CONTENT */
.header-nav li a::after {
    content: "↗";
    margin-left: 5px;
    color: var(--secondary-color);
    font-size: 14px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone .phone-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.header-phone .phone-number {
    font-size: 16px;
    font-weight: bold;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}