/* ===========================
   Musinga Advocates — Colors
   =========================== */

:root {
    --deep-blue: #03123b;
    --slate-blue: #3e688b;
    --gold: #b28b00;
    --light-bg: #f8f9fb;
    --alt-bg: #eef2f6;
}

/* General body */
body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-blue);
    background: var(--light-bg);
    line-height: 1.6;
}

/* ===================
   HERO
   =================== */
.hero {
    background: linear-gradient(135deg, rgba(3, 18, 59, 0.85), rgba(62, 104, 139, 0.8)), url("assets/hero-bg.png") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.25), transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #fff;
}

.hero .eyebrow {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.hero .tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin: 1rem 0;
}

.hero .sub {
    font-size: 1rem;
    color: #f8f9fb;
    margin-bottom: 1.5rem;
}

.hero .btn-primary {
    background: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    padding: .75rem 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    background: #d4a100;
}

/* ===================
   SECTIONS
   =================== */
.section {
    padding: 4rem 1.5rem;
}

.section.alt {
    background: var(--alt-bg);
}

.section-head h2 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .5rem;
    position: relative;
}

.section-head h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--slate-blue);
    margin-top: .5rem;
    border-radius: 3px;
}

/* ===================
   NAVBAR
   =================== */
.site-header {
    background: var(--deep-blue);
    padding: .6rem 0;
}

.site-header .brand {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
}

.site-header .nav-list a {
    color: #fff;
    font-weight: 500;
    transition: color .3s ease;
}

.site-header .nav-list a:hover {
    color: var(--gold);
}

/* ===================
   BUTTONS
   =================== */
.btn-primary {
    background: var(--slate-blue);
    border: none;
    color: #fff !important;
    transition: all .3s ease;
}

.btn-primary:hover {
    background: var(--gold);
}

.btn-ghost {
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all .3s ease;
}

.btn-ghost:hover {
    background: var(--gold);
    color: #fff;
}

/* ===================
   CARDS
   =================== */
.card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
    background: #fff;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===================
   RIBBON
   =================== */
.ribbon {
    background: var(--gold);
    color: #fff;
    padding: 1rem 0;
}

.ribbon .r-item {
    font-weight: 600;
    color: #fff;
}

/* ===================
   CLIENTS
   =================== */
#clients {
    background: var(--slate-blue);
    color: #fff;
}

#clients h2 {
    color: #fff;
}

.marquee-wrap {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

/* ===================
   FOOTER
   =================== */
.site-footer {
    background: var(--deep-blue);
    color: #fff;
    padding: 2.5rem 1rem;
}

.site-footer h4 {
    color: var(--gold);
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* About & Assurance sections */
.about-image img,
.assurance-image img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform .3s ease;
}

.about-image img:hover,
.assurance-image img:hover {
    transform: scale(1.03);
}