@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --brand-navy: #111827;
    --brand-navy-light: #1f2937;
    --brand-gold: #c89334;
    --brand-gold-hover: #b57f26;
    --brand-gold-light: #fef8ec;
    --bg-cream: #faf8f5;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-muted: #64748b;
    --border-color: rgba(200, 147, 52, 0.15);
    --font-heading: 'Marcellus', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.text-gold {
    color: var(--brand-gold) !important;
}

.bg-gold {
    background-color: var(--brand-gold) !important;
}

.bg-gold-light {
    background-color: var(--brand-gold-light) !important;
}

.bg-navy {
    background-color: var(--brand-navy) !important;
}

.btn-navy {
    background-color: var(--brand-navy);
    color: #ffffff;
    border: 1px solid var(--brand-navy);
    padding: 0.6rem 1.4rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: #000000;
    color: var(--brand-gold);
    border-color: #000000;
}

.btn-gold {
    background-color: var(--brand-gold);
    color: #ffffff;
    border: 1px solid var(--brand-gold);
    padding: 0.6rem 1.4rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--brand-gold-hover);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(200, 147, 52, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--brand-gold);
    border: 1.5px solid var(--brand-gold);
    padding: 0.55rem 1.35rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--brand-gold);
    color: #ffffff;
}

.card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.badge-gold {
    background-color: var(--brand-gold-light);
    color: var(--brand-gold);
    border: 1px solid rgba(200, 147, 52, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-gold);
}

/* Admin Sidebar Layout */
#admin-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    min-height: 100vh;
}

#sidebar {
    min-width: 260px;
    max-width: 260px;
    background: var(--brand-navy);
    color: #ffffff;
    transition: all 0.3s ease;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #0b101b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul li a {
    padding: 12px 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
}

#sidebar ul li a i {
    margin-right: 12px;
    font-size: 1.1rem;
}

#sidebar ul li a:hover, #sidebar ul li.active > a {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--brand-gold);
}

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    background-color: var(--bg-cream);
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -260px;
    }
    #sidebar.active {
        margin-left: 0;
    }
}

/* ==========================================================================
   HINDU SPIRITUAL VECTOR / SVG LINE ART OVERLAY STYLES
   ========================================================================== */
.section-spiritual-overlay {
    position: relative !important;
    overflow: hidden !important;
}

.spiritual-bg-svg {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.08;
    transition: opacity 0.4s ease, transform 0.4s ease;
    object-fit: contain;
}

.section-spiritual-overlay > .container,
.section-spiritual-overlay > div:not(.spiritual-bg-svg) {
    position: relative;
    z-index: 1;
}

/* Positioning & Sizing Helpers */
.spiritual-bg-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
}

.spiritual-bg-right {
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
}

.spiritual-bg-left {
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
}

.spiritual-bg-top-right {
    top: -10%;
    right: -5%;
    width: 360px;
    height: 360px;
}

.spiritual-bg-bottom-left {
    bottom: -10%;
    left: -5%;
    width: 360px;
    height: 360px;
}

/* Subtle glow / opacity boost on dark backgrounds */
.bg-navy .spiritual-bg-svg,
.bg-dark .spiritual-bg-svg {
    opacity: 0.14;
    filter: drop-shadow(0 0 10px rgba(200, 147, 52, 0.3));
}

@media (max-width: 768px) {
    .spiritual-bg-svg {
        opacity: 0.05;
        width: 280px;
        height: 280px;
    }
}

