:root {
    /* Primary Colors */
    --primary: #1B3051;          /* Deep Navy Blue */
    --secondary: #B8860B;        /* Dark Gold */
    --accent-red: #8B0000;       /* Dark Red */
    
    /* Background Colors */
    --bg-dark: #1C1C1C;          /* Rich Dark */
    --bg-darker: #141414;        /* Deeper Dark */
    --card-bg: #232323;          /* Card Background */
    
    /* Text Colors */
    --text-primary: #FFFFFF;     /* Pure White */
    --text-secondary: #D4D4D4;   /* Light Gray */
    
    /* Accent Colors */
    --gold-light: #D4AF37;      /* Light Gold */
    --navy-light: #234272;      /* Lighter Navy */
    --border-color: rgba(184, 134, 11, 0.2); /* Subtle Gold */
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(27, 48, 81, 0.98); /* More solid navy */
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
    gap: 15px;
}

.logo-symbol {
    position: relative;
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol::before {
    content: 'C';
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 5px;
}

.logo-text-main {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-text-sub {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Header/Hero Section */
header {
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.95)), 
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    padding: 160px 20px;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

header:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-content h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gold-light);
    color: var(--bg-darker);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 25px 0;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.cta-button:hover {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-light);
    margin: 20px auto;
}

/* Practice Areas */
.practice-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    justify-content: center;
}

.area-card {
    flex: 1 1 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--card-bg);
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
    background: var(--primary);
    color: var(--text-primary);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid var(--gold-light);
}

.card-body {
    padding: 25px;
}

.card-body ul {
    list-style-type: none;
    padding: 0;
}

.card-body li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.card-body li:before {
    content: "•";
    color: var(--secondary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* About Section */
.about-section {
    background: var(--bg-darker);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.profile-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.profile-image-container:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.about-content h2.section-title {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Practice Areas */
.practice-areas-full {
    background: var(--bg-darker);
    padding: 100px 20px;
    position: relative;
}

.practice-areas-full:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.practice-areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.practice-area-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.practice-area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.practice-area-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 12px;
    color: var(--gold-light);
    font-size: 24px;
}

.practice-area-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-light);
    margin: 0;
}

.practice-area-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.practice-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.practice-area-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.practice-area-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-darker);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--text-primary);
}

.testimonial-info p {
    margin: 5px 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-content {
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
}

/* Contact Form */
.contact-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Footer */
footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-primary);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .practice-areas {
        flex-direction: column;
        align-items: center;
    }
    
    .area-card {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 