/*
Theme Name: Medura Maxwell Family Law
Theme URI: https://meduramaxwellfamilylaw.com/
Description: WordPress theme for Medura & Maxwell Family Law
Version: 1.0
Author: Your Name
Author URI: https://yoursite.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: medura-maxwell
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.main-navigation {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #8B7355;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #8B7355;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6d5940;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8B7355;
    margin-bottom: 10px;
    font-weight: 400;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    text-align: center;
}

.feature-number {
    font-size: 18px;
    color: #8B7355;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.feature-box p {
    line-height: 1.8;
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Contact Section */
.contact-section {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-item h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
}

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

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

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .two-column,
    .features,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
}
