/* 
   Sovereign Juris & Private Arbitration Authority 
   Brand Identity CSS
*/

:root {
    --primary-blue: #1A237E; /* 裁決深藍 */
    --accent-gold: #C5A059;  /* 法典金 */
    --neutral-gray: #424242; /* 司法灰 */
    --pure-white: #F5F5F5;   /* 公理白 */
    --obsidian-black: #0A0A0A; /* 數位黑曜石 */
}

body {
    background-color: var(--obsidian-black);
    color: var(--pure-white);
    font-family: 'Playfair Display', serif; /* 莊重的襯線體 */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

p, li, div {
    font-family: 'Lora', serif; /* 俐落的法律公文排版 */
}

/* Navbar Styling */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--accent-gold);
    padding: 1rem 2rem;
}

.navbar-brand {
    color: var(--accent-gold) !important;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--pure-white) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(10, 10, 10, 0.9)), url('../img/marble-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.hero-slogan {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--pure-white);
}

/* Card Styling */
.juris-card {
    background: rgba(26, 35, 126, 0.1);
    border: 1px solid var(--neutral-gray);
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
}

.juris-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

/* Gavel Impact Effect */
.gavel-impact {
    cursor: pointer;
    transition: all 0.1s ease;
}

.gavel-impact:active {
    transform: scale(0.98);
    box-shadow: 0 0 30px var(--accent-gold);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    border-top: 1px solid var(--accent-gold);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-brand {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-gold { color: var(--accent-gold); }
.bg-obsidian { background-color: var(--obsidian-black); }
.border-gold { border: 1px solid var(--accent-gold); }

/* Section Padding */
section {
    padding: 80px 0;
}
