/*
Theme Name: Nails Pa List
Theme URI: https://nailspalist.com
Author: Nails Pa List
Description: Premium nail art gel manicure WordPress theme with beautiful niche-specific design
Version: 2.0.0
License: GPL-2.0-or-later
Text Domain: nailspalist
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --color-primary: #E05A6B;
    --color-primary-dark: #c04455;
    --color-secondary: #FFB347;
    --color-dark: #2C1A1A;
    --color-accent: #FFF5F5;
    --color-border: #F0D5D5;
    --color-text: #2c2c2c;
    --color-text-light: #5a3030;
    --color-text-muted: #9a6060;
    --color-bg: #fffafa;
    --color-white: #fff;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --container: 1200px;
    --header-h: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Body text color fix */
body { color: var(--color-text); }
.entry-content,
.entry-content p,
.post-content p,
article p {
    color: var(--color-text) !important;
    line-height: 1.8;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); transition: color .2s; }
a:hover { color: var(--color-primary-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-dark); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.bmm-header {
    position: sticky; top: 0; z-index: 100;
    background: #fff; border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.bmm-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 24px;
}
.bmm-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.bmm-logo-icon { font-size: 1.8rem; line-height: 1; }
.bmm-logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); }
.bmm-logo-text span { color: var(--color-primary); }
.bmm-nav { display: flex; align-items: center; gap: 4px; }
.bmm-nav ul, .header-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.bmm-nav ul li, .header-nav ul li { list-style: none; display: block; }
.header-nav a, .bmm-nav ul li a { padding: 6px 14px; font-size: .88rem; font-weight: 600; color: var(--color-dark); text-decoration: none; border-radius: 50px; transition: all .2s; display: block; }
.header-nav a:hover, .bmm-nav ul li a:hover { background: var(--color-accent); color: var(--color-primary); }
.bmm-nav a {
    padding: 6px 14px; font-size: .88rem; font-weight: 600;
    color: var(--color-dark); text-decoration: none; border-radius: 50px; transition: all .2s;
}
.bmm-nav a:hover { background: var(--color-accent); color: var(--color-primary); }
.bmm-header-search { display: flex; align-items: center; gap: 8px; }
.bmm-search-input {
    padding: 8px 14px; border: 1px solid var(--color-border);
    border-radius: 50px; font-size: .82rem; outline: none; width: 180px; transition: all .2s;
}
.bmm-search-input:focus { border-color: var(--color-primary); width: 220px; }
.bmm-mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; font-size: 1.4rem; color: var(--color-dark);
}
@media (max-width:768px) {
    .bmm-nav { display: none; }
    .bmm-mobile-toggle { display: block; }
    .bmm-header-search { display: none; }
}

/* Breadcrumbs - inline single line */
.bmm-breadcrumbs,
.bmm-breadcrumbs ol,
.bmm-breadcrumbs ul {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 2px 4px; list-style: none; margin: 0; padding: 8px 0;
}
.bmm-breadcrumbs li,
.bmm-breadcrumbs span,
.bmm-breadcrumbs a {
    display: inline; font-size: 0.8rem; color: var(--color-text-muted);
    line-height: 1.5; white-space: nowrap;
}
.bmm-breadcrumbs a { color: var(--color-primary); text-decoration: none; }
.bmm-breadcrumbs a:hover { text-decoration: underline; }
.bmm-breadcrumbs .sep,
.bmm-breadcrumbs li + li::before {
    content: '\203A'; color: var(--color-text-muted); margin: 0 3px; display: inline;
}

/* ===== FOOTER ===== */
.bmm-footer {
    background: var(--color-dark); color: rgba(255,255,255,.7);
    padding: 48px 0 0; margin-top: 60px;
}
.bmm-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width:768px) { .bmm-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width:480px) { .bmm-footer-grid { grid-template-columns: 1fr; } }
.bmm-footer-brand .bmm-logo-text { color: #fff; }
.bmm-footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin: 12px 0; }
.bmm-footer-social { display: flex; gap: 10px; }
.bmm-footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.1); display: flex; align-items: center;
    justify-content: center; font-size: .85rem; color: #fff;
    text-decoration: none; transition: background .2s;
}
.bmm-footer-social a:hover { background: var(--color-primary); }
.bmm-footer-heading {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 14px;
    font-family: var(--font-body);
}
.bmm-footer ul { list-style: none; }
.bmm-footer ul li { margin-bottom: 8px; }
.bmm-footer ul li a { color: rgba(255,255,255,.6); font-size: .85rem; text-decoration: none; transition: color .2s; }
.bmm-footer ul li a:hover { color: var(--color-secondary); }
.bmm-footer-bottom {
    padding: 16px 0; text-align: center;
    font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ===== SIDEBAR ===== */
.bmm-sidebar { position: sticky; top: 90px; }
.bmm-widget { background: #fff; border-radius: 14px; border: 1px solid var(--color-border); overflow: hidden; margin-bottom: 22px; }
.bmm-widget-head { padding: 12px 18px; background: var(--color-accent); border-bottom: 1px solid var(--color-border); }
.bmm-widget-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-primary); margin: 0; font-family: var(--font-body); }
.bmm-widget-body { padding: 16px 18px; }

/* ===== SINGLE POST ===== */
.bmm-single-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 36px; padding: 40px 0; align-items: start; }
@media (max-width:1024px) { .bmm-single-wrap { grid-template-columns: 1fr; } }
.bmm-article-header { margin-bottom: 28px; }
.bmm-article-cat {
    display: inline-block; background: var(--color-primary); color: #fff;
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; text-decoration: none;
}
.bmm-article-title {
    font-family: var(--font-heading); font-size: clamp(1.6rem,3.5vw,2.4rem);
    font-weight: 800; color: var(--color-dark); line-height: 1.2; margin-bottom: 14px;
}
.bmm-article-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--color-text-muted); align-items: center; }
.bmm-article-hero {
    width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 28px;
    background: linear-gradient(135deg,var(--color-accent),var(--color-primary));
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
}
.bmm-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.bmm-entry-content { font-size: 1.02rem; line-height: 1.8; color: var(--color-text); }
.bmm-entry-content h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--color-dark); }
.bmm-entry-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--color-dark); }
.bmm-entry-content p { margin-bottom: 18px; color: var(--color-text); }
.bmm-entry-content ul, .bmm-entry-content ol { margin: 0 0 18px 24px; }
.bmm-entry-content li { margin-bottom: 6px; }
.bmm-entry-content blockquote {
    border-left: 4px solid var(--color-primary); padding: 12px 20px;
    margin: 24px 0; background: var(--color-accent); border-radius: 0 8px 8px 0;
    font-style: italic; color: var(--color-text-light);
}
.bmm-entry-content img { border-radius: 10px; margin: 20px 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
