/* KINGDOM LIFE REMNANT - GLOBAL BRAND STYLES */

:root {
    --navy: #0D1B2A;
    --navy-2: #122338;
    --gold: #C9A84C;
    --gold-l: #F0D080;
    --white: #fff;
    --offwhite: #FAF8F3;
    --muted: #8898aa;
    --border: rgba(201,168,76,0.2);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background-color: var(--navy); color: var(--white); line-height: 1.6; }
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 700; }

/* Global Navigation */
nav {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(13, 27, 42, 0.96); backdrop-filter: blur(10px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000; border-bottom: 1px solid var(--border);
}
.logo-box { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo-img { height: 50px !important; width: auto !important; }
.logo-txt { color: var(--gold); font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { color: white !important; text-decoration: none !important; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.btn-gold { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 24px; border-radius: 5px; font-weight: bold; border: none; cursor: pointer; text-decoration: none !important; transition: 0.3s; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(201,168,76,0.3); }

/* Public Sections */
section { padding: 100px 10%; position: relative; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 50px; color: var(--gold); }
.bg-light { background: var(--offwhite); color: var(--navy); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Standard Cards (Public) */
.card { background: white; padding: 40px; border-radius: 15px; border-left: 5px solid var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: 0.3s; }
.card h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--navy); }

/* Shared Modals */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); justify-content: center; align-items: center; padding: 20px; }
.modal-content { background: var(--navy-2); padding: 40px; border-radius: 20px; width: 100%; max-width: 420px; border: 1px solid var(--gold); position: relative; text-align: center; }

/* Shared Notification */
#toast { visibility: hidden; min-width: 280px; background: var(--navy); border: 1px solid var(--gold); color: #fff; text-align: center; border-radius: 8px; padding: 16px; position: fixed; z-index: 3000; right: 30px; bottom: 30px; }
#toast.show { visibility: visible; }

/* Global Inputs */
input { width: 100%; padding: 14px; margin: 10px 0; background: rgba(255,255,255,0.05); border: 1px solid var(--gold); color: white; border-radius: 8px; font-size: 1rem; text-align: center; }

@media (max-width: 768px) {
    .logo-txt, .nav-links a:not(.btn-gold) { display: none; }
    section { padding: 60px 5%; }
}