body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.practice-areas {
    padding: 2.5em 1em;
    background: #f5f4f0; /* sage-tan blend */
    font-family: 'Georgia', serif;
}

.practice-areas h2 {
    text-align: center;
    font-size: 2.25em;
    color: #344e41; /* dark evergreen tone */
    margin-bottom: 1.5em;
    font-family: 'Merriweather', serif;
    border-bottom: 2px solid #a3b18a;
    display: inline-block;
    padding-bottom: 0.3em;
}

.practice-grid {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
}

.practice-grid li {
    background: #ffffff;
    padding: 1.5em;
    border-left: 6px solid #588157; /* deep sage green accent */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 1em;
    line-height: 1.5;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.practice-grid li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.practice-grid li strong {
    font-size: 1.1em;
    color: #283618;
    margin-bottom: 0.5em;
    display: block;
    font-family: 'Georgia', serif;
}

/* Responsive breakpoints */
@media (min-width: 600px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .practice-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 320px;
    padding: 2rem 1rem;
    background: url('images/meadow.jpg') center/cover no-repeat;
    position: relative;
    text-align: center;
  /*  background-attachment: fixed;*/
}

    .hero-nav .firm-name {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
        background: rgba(255, 255, 255, 0.7); /* Soft white with 70% opacity */
        backdrop-filter: blur(6px); /*Creates the fog/glass effect */
        padding: 0.5rem .7rem .7rem .7rem;
        border-radius: 12px;
        margin: 1rem auto;
        max-width: fit-content;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.hero-nav .nav-links a {
    text-decoration: none;
    color: #fff;
    background-color: #005A87;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}








.hero-nav .nav-links a:hover {
    background-color: #003B5C;
    color: #fff;
}







.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

        .nav-links.show {
            display: flex;
        }

    .mobile-toggle {
        display: block;
    }
}




.attorneys {
    background-color: #f5f4f0; /* sage-tan inspired background */
    padding: 3rem 1rem;
    border-top: 2px solid #a3b18a;
    border-bottom: 2px solid #a3b18a;
    font-family: 'Georgia', serif;
}

.attorney-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.attorney-card {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: left;
    padding: 1.5rem;
    border-left: 6px solid #588157; /* sage green accent stripe */
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .attorney-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .attorney-card img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        margin-bottom: 1rem;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    .attorney-card h3 {
        margin: 0 0 0.25rem;
        font-size: 1.25rem;
        color: #344e41;
        font-family: 'Georgia', serif;
    }

    .attorney-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
    }

.contact {
    background-color: #f8f9f9;
    padding: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #2a2a2a;
        font-family: 'Georgia', serif;
    }

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-item {
    flex: 1 1 200px;
    max-width: 300px;
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .contact-item h3 {
        margin-top: 0;
        font-size: 1.1rem;
        color: #2a2a2a;
    }

    .contact-item a {
        color: #00558d;
        text-decoration: none;
    }


.about {
    background: linear-gradient(to bottom, #f9f8f6, #ffffff);
    padding: 2rem;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    font-family: 'Georgia', serif;
    color: #333;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}


.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.about-text {
    flex: 1 1 300px;
    font-family: 'Georgia', serif;
    color: #333;
    text-align:left;
}

.about-photo {
    flex: 1 1 300px;
    max-width: 400px;
}

.about-photo img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer.footer-clean {
    background-color: #7c2d12;
    color: #fefae0;
    padding: 3rem 1rem 2rem;
    font-family: 'Georgia', serif;
}

.footer-clean .container {
    max-width: 960px;
    margin: 0 auto;
}

.footer-clean h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-clean ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-clean li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-clean a {
    color: #fefae0;
    text-decoration: none;
}

    .footer-clean a:hover {
        color: #eab308;
        text-decoration: underline;
    }

.footer-clean hr {
    border-color: #eab308;
    margin: 2rem 0 1.5rem;
}

.footer-clean .footer-bottom {
    font-size: 0.85rem;
    text-align: center;
    color: #d6d6d6;
}
.footer-clean i {
    margin-right: 0.5em;
    color: #eab308;
    width: 1.2em;
    text-align: center;
}
.footer-disclaimer {
    font-size: 0.8rem;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;
}

.topbar {
    background-color: #2e2e2e;
    color: #f5f5f5;
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.topbar-left {
    flex: 1;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-nav a {
    color: #f5f5f5;
    margin-right: 1rem;
    text-decoration: none;
}

    .topbar-nav a:hover {
        text-decoration: underline;
        color: #eab308;
    }

.topbar-phone a {
    color: #eab308;
    text-decoration: none;
    font-weight: bold;
}

    .topbar-phone a:hover {
        color: #fff;
    }
