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

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

@font-face {
    font-family: 'VNF-Futura';
    src: url('assets/fonts/SVN-Gilroy-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body,
.header-main,
.nav > li > a,
.footer-wrapper,
.footer-wrapper p,
.footer-wrapper li,
.footer-wrapper a,
.absolute-footer,
.copyright-footer,
.button,
input, select, textarea, h1, h2, h3, h4, h5, h6 {
    font-family: 'VNF-Futura', sans-serif !important;
}

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


}

/* ========== BLANC HEADER ========== */
.blanc-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
}
.blanc-nav a {
    font-family: 'VNF-Futura', sans-serif;
    font-size: 14px;
    color: #3D2C28;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
.blanc-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #b59685;
    transition: width 0.3s ease;
}
.blanc-nav a:hover {
    color: #b59685;
}
.blanc-nav a:hover::after {
    width: 100%;
}

.blanc-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.blanc-search-box {
    position: relative;
}
.blanc-search-box form {
    display: flex;
    align-items: center;
    margin: 0;
}
.blanc-search-box input[type="search"] {
    width: 160px;
    padding: 8px 36px 8px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'VNF-Futura', sans-serif;
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.3s, width 0.3s;
    color: #333;
}
.blanc-search-box input[type="search"]:focus {
    border-color: #b59685;
    width: 200px;
    background: #fff;
}
.blanc-search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.blanc-icon {
    display: inline-flex;
    align-items: center;
    color: #3D2C28;
    text-decoration: none;
    transition: opacity 0.3s;
}
.blanc-icon:hover {
    opacity: 0.6;
}

.blanc-cart {
    position: relative;
}
.blanc-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #b59685;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
}

/* ========== BLANC FOOTER ========== */
.blanc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blanc-footer-links li {
    margin-bottom: 12px;
}
.blanc-footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.blanc-footer-links a:hover {
    color: #fff;
}

.blanc-btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #888;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}
.blanc-btn-outline:hover {
    background: #b59685;
    border-color: #b59685;
    color: #fff !important;
}

/* ========== FLATSOME OVERRIDES ========== */
/* Hide default Flatsome header/footer when using custom blocks */
.header-wrapper .header-main .flex-col.show-for-medium {
    /* keep mobile menu toggle visible */
}

/* Sticky header shadow */
.stuck .section {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* WooCommerce button colors */
.button.primary, 
.button.checkout,
button.single_add_to_cart_button {
    background-color: #8dbd9f !important;
    border-color: #8dbd9f !important;
    color: #fff !important;
    border-radius: 4px;
}
.button.primary:hover, 
.button.checkout:hover,
button.single_add_to_cart_button:hover {
    background-color: #79a98b !important;
    border-color: #79a98b !important;
}

.button.secondary,
a.button.secondary {
    background-color: #b59685 !important;
    border-color: #b59685 !important;
    color: #fff !important;
}
.button.secondary:hover,
a.button.secondary:hover {
    background-color: #9e7e6e !important;
    border-color: #9e7e6e !important;
}
