/*
Theme Name: HadithCritic
Theme URI: https://hadithcritic.com
Author: HadithCritic Team
Description: A custom theme for critical analysis of hadith prophecies.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hadith-critic
*/

:root {
    --primary-dark: #0a0a0b;
    --secondary-dark: #161618;
    --accent-bronze: #b8956a;
    --accent-gold: #d4af37;
    --accent-red: #ef4444;
    --accent-green: #22c55e;
    --text-white: #f5f5f7;
    --text-grey: #a1a1a6;
    --glass-bg: rgba(22, 22, 24, 0.9);
    --glass-border: rgba(184, 149, 106, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --nav-height: 80px;
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Common Components */
.navbar {
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    height: var(--nav-height);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--accent-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.brand-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
}

/* Mobile Menu Button - Common */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}
