
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #222222;
    --gold: #D4AF37;
    --pale-blue: #E6F3FF;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #c19b26;
}

.btn-secondary {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #333;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-full {
    width: 100%;
}

.gold {
    color: var(--gold);
}

/* Navigation */
.navbar {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background-image: url('images/firm-header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Practice Areas */
.practice-areas {
    background-color: var(--pale-blue);
}

.practice-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.practice-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.practice-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.practice-card ul {
    list-style: none;
}

.practice-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.practice-card li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote-section {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
}

/* Attorneys */
.attorneys h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.attorney-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.attorney-card:hover {
    transform: translateY(-5px);
}

.attorney-image {
    height: 500px;
    overflow: visible;
    position: relative;
}

.attorney-image img {
    width: 100%;
        height: 500px;

    object-fit: cover;
}

.attorney-info {
    padding: 30px;
}

.attorney-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.attorney-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.attorney-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Track Record */
.track-record {
    background: linear-gradient(135deg, var(--charcoal) 0%, #000 100%);
    color: var(--white);
    text-align: center;
}

.track-record h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.achievement-icon {
    color: var(--gold);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.achievement p {
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--pale-blue);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.office-info, .hours {
    margin-bottom: 30px;
}

.office-info h3, .hours h3 {
    margin-bottom: 15px;
}

.office-info address {
    font-style: normal;
}

.office-info a, .hours a {
    color: var(--charcoal);
    text-decoration: none;
}

.office-info a:hover {
    color: var(--gold);
}

.contact-form {
    background-color: var(--pale-blue);
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.bar-number {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--charcoal);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .attorneys-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .practice-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .attorney-info {
        padding: 20px;
    }
}
