/* Current Law, PLLC Website Styles */

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #1a3a5f;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    color: #1a3a5f;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #1a3a5f;
    padding: 1rem 0;
    border-bottom: 3px solid #d4af37;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #dee2e6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a5f;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-button,
.submit-button {
    background-color: #d4af37;
    color: #1a3a5f;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #b8941f;
    color: #1a3a5f;
    text-decoration: none;
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: #1a3a5f;
    padding: 12px 24px;
    border: 2px solid #1a3a5f;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: #1a3a5f;
    color: #fff;
    text-decoration: none;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.intro,
.cta {
    text-align: center;
    background-color: #f8f9fa;
}

.intro h3,
.cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Practice Areas */
.practice-areas {
    background-color: #fff;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.practice-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

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

.practice-item h4 {
    color: #1a3a5f;
    margin-bottom: 1rem;
}

/* Testimonial */
.testimonial {
    background-color: #1a3a5f;
    color: #fff;
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -20px;
    left: -40px;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #d4af37;
    font-weight: 600;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #1a3a5f 0%, #2d5a8f 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #d4af37;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Education & Experience */
.edu-grid,
.exp-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.edu-item,
.exp-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.edu-item h3,
.exp-item h3 {
    color: #1a3a5f;
    margin-bottom: 1rem;
}

.edu-item ul,
.exp-item ul {
    margin-left: 1.5rem;
}

.exp-title {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Bar Admissions */
.bar-admissions {
    background-color: #f8f9fa;
}

.admissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.admission-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    text-align: center;
}

.admission-item h3 {
    color: #1a3a5f;
    margin-bottom: 1rem;
}

/* Approach */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-item h3 {
    color: #1a3a5f;
    margin-bottom: 1rem;
}

/* Practice Detail */
.practice-detail {
    padding: 2rem 0;
}

.practice-detail .practice-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.practice-detail h3 {
    margin-top: 1.5rem;
    color: #1a3a5f;
}

.practice-detail ul {
    margin: 1rem 0 1rem 1.5rem;
}

.practice-detail strong {
    color: #1a3a5f;
}

/* Contact Page */
.contact-content {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a3a5f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox input {
    margin-top: 0.25rem;
}

.checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    background-color: #1a3a5f;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #d4af37;
}

.contact-item a:hover {
    color: #fff;
}

/* FAQ */
.faq {
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.faq-item h3 {
    color: #1a3a5f;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #1a3a5f;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

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

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d5a8f;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .practice-item,
    .contact-form,
    .contact-info,
    .faq-item,
    .edu-item,
    .exp-item,
    .admission-item {
        padding: 1.5rem;
    }
}