/* ============================================
   The Law Office of Colleen Killian
   Custom Stylesheet
   ============================================ */

:root {
    --primary: #1a3a6b;
    --primary-light: #3b6aaa;
    --dark: #3d3530;
    --accent: #c9a84c;
    --accent-hover: #b8972f;
    --bg: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
}

/* ---- Base ---- */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    color: var(--primary);
    transition: color 0.2s;
}
a:hover {
    color: var(--primary-light);
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    padding: 6px 0;
    font-size: 0.85rem;
}
.top-bar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.top-bar a:hover {
    color: #fff;
}

/* ---- Navbar ---- */
.navbar {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar-brand {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff !important;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}
.nav-link.active {
    border-bottom: 2px solid var(--accent);
}

/* ---- Accent Button ---- */
.btn-accent {
    background: var(--accent);
    color: var(--dark);
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--dark);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---- Hero ---- */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 80px 0 60px;
}
.hero-title {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
}
.min-vh-60 {
    min-height: 60vh;
}

/* ---- Headshot Placeholder ---- */
.headshot-placeholder {
    width: 220px;
    height: 260px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.6);
}
.headshot-placeholder i {
    font-size: 80px;
}
.headshot-lg {
    width: 260px;
    height: 320px;
    background: rgba(26,58,107,0.08);
    color: var(--primary-light);
    border-color: var(--primary-light);
}
.headshot-lg i {
    font-size: 100px;
}

/* ---- Section Titles ---- */
.section-title {
    position: relative;
    margin-bottom: 20px;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
}
.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Practice Area Cards (Home) ---- */
.practice-card {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 8px;
}
.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.practice-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.6rem;
}

/* ---- Stats Grid ---- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-item {
    background: #fff;
    padding: 24px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.stat-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}
.stat-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.stat-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ---- Testimonials ---- */
.testimonial-card {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

/* ---- Contact Bar ---- */
.contact-bar {
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
}
.contact-bar a {
    color: #fff;
    text-decoration: none;
}
.contact-bar a:hover {
    color: var(--accent);
}

/* ---- Page Headers (inner pages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 50px 0 40px;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    margin-bottom: 8px;
}
.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ---- Practice Area Detail Cards ---- */
.practice-detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
}
.practice-icon-lg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}
.practice-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.practice-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text);
}
.practice-list li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.cta-section h2 {
    color: #fff;
}

/* ---- Legal Content ---- */
.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content ul {
    padding-left: 20px;
}
.legal-content li {
    margin-bottom: 6px;
}

/* ---- Map ---- */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 24px;
}
.site-footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.text-light-muted {
    color: rgba(255,255,255,0.6) !important;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-contact li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.footer-contact a:hover {
    color: var(--accent);
}
.disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.5;
}

/* ---- Forms ---- */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 107, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-section {
        padding: 50px 0 40px;
    }
    .min-vh-60 {
        min-height: auto;
    }
    .navbar-brand {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .headshot-placeholder {
        width: 160px;
        height: 200px;
    }
    .headshot-placeholder i {
        font-size: 60px;
    }
    .stats-grid {
        gap: 12px;
    }
    .stat-item {
        padding: 16px 12px;
    }
    .practice-detail-card {
        padding: 20px;
    }
}
