/* Hanauer Law Style - Christopher Nelson Law Office */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0a0a0a;
    --white: #fff;
    --gold: #c9a227;
    --dark-grey: #333;
    --mid-grey: #666;
    --light-grey: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER — minimalist dark nav ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

.header-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0 30px;
}

.site-logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-logo a:hover {
    color: var(--gold);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--gold) !important;
    color: var(--primary) !important;
    padding: 10px 18px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
}

.nav-cta-btn:hover {
    background: var(--white) !important;
}

.nav-cta-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== FULL-SCREEN HERO ===== */
.hero-fullscreen {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.65)), 
                url('assets/uploads/2024/03/Christopher-Nelson-Law-Office-1.jpg') center center / cover no-repeat;
}

.hero-inner {
    max-width: 750px;
    padding: 0 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-inner h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-inner h1 strong {
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.hero-inner p {
    font-size: 1rem;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 35px;
    opacity: 0.85;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-outline-w {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline-w:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

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

/* ===== SECTION TYPING ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-light {
    background: var(--white);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.gold-bar {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 15px;
}

.section-heading p {
    color: var(--mid-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.section-dark .section-heading p {
    color: #999;
}

/* ===== PRACTICE AREAS — 3 equal image cards ===== */
.practice-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pa-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.pa-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.pa-card:hover .pa-bg {
    transform: scale(1.08);
}

.pa-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    color: var(--white);
    transition: padding-bottom 0.3s;
}

.pa-card:hover .pa-overlay {
    padding-bottom: 50px;
}

.pa-overlay h3 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.pa-overlay p {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.pa-link {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pa-link::after {
    content: '→';
    transition: transform 0.3s;
}

.pa-card:hover .pa-link::after {
    transform: translateX(5px);
}

/* ===== HALF-IMAGE SECTION ===== */
.hi-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.hi-section.reverse .hi-image {
    order: 2;
}

.hi-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
}

.hi-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.1);
}

.hi-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
}

.hi-content h3 {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 400;
}

.hi-content h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.hi-content p {
    color: var(--mid-grey);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.section-dark .hi-content p {
    color: #ccc;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.95)),
                url('assets/uploads/2024/03/Christopher-Nelson-Law-Office-3.jpg') center / cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.testimonial-inner {
    max-width: 650px;
    margin: 0 auto;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.testimonial-inner blockquote {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-inner cite {
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ===== MISSION / CTA ===== */
.mission-cta {
    background: linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.8)),
                url('assets/uploads/2024/03/Christopher-Nelson-Law-Office-2.jpg') center / cover no-repeat;
    padding: 130px 0;
    text-align: center;
    color: var(--white);
}

.mission-cta h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-weight: 300;
}

.mission-cta h2 strong {
    font-weight: 700;
    color: var(--gold);
}

.mission-cta p {
    max-width: 550px;
    margin: 0 auto 35px;
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== AWARDS BAR ===== */
.awards-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: var(--white);
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.awards-bar img {
    height: 45px;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.awards-bar img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 70px 40px 50px;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid #222;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 22px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #888;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col p a {
    color: var(--gold);
}

.footer-lower {
    text-align: center;
    padding: 25px 40px;
    color: #555;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .menu-toggle { display: block; }
    .main-nav ul {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px 30px;
        gap: 0;
    }
    .main-nav ul.open { display: flex; }
    .main-nav a { padding: 14px 0; border-bottom: 1px solid #222; }
    
    .hero-inner h1 { font-size: 2.5rem; letter-spacing: 2px; }
    
    .practice-area { grid-template-columns: 1fr; }
    .pa-card { height: 350px; }
    
    .hi-section { grid-template-columns: 1fr; }
    .hi-section.reverse .hi-image { order: 0; }
    .hi-image { min-height: 300px; }
    .hi-content { padding: 50px 30px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 35px; padding: 50px 30px 40px; }
    
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
}
