/*!
Theme Name: Munro Law Office
Theme URI: https://munrolawoffice.com
Description: Professional law firm website for Munro Law Office, P.C. - Civil litigation specialists
Version: 1.0
Author: Munro Law Office
Author URI: https://munrolawoffice.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: munro-law-office
Domain Path: /languages
*/

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

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
nav,
.navbar {
    background-color: #1a3a52;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav .container,
.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

nav .logo,
.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

nav ul,
.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a,
.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover,
.navbar a:hover {
    color: #d4af37;
}

/* Menu Items */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Menu item with children */
.menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.menu-item-has-children:hover > .dropdown {
    display: block;
}

.menu-item-has-children > a {
    cursor: pointer;
}

/* Prevent About Us link from navigating */
.menu-item-has-children > a[href="#"] {
    text-decoration: none;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    background-color: #0f2333;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 0 0 5px 5px;
    margin-top: 0.5rem;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    margin: 0;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background-color: #1a3a52;
    color: #d4af37;
}



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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 58, 82, 0.7), rgba(26, 58, 82, 0.7)), url('https://munrolawoffice.com/wp-content/uploads/2026/04/IMG_5393-scaled.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    padding: 10rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero {
        padding: 8rem 2rem;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Section Styles */
section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
    color: #1a3a52;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
}

h3 {
    color: #1a3a52;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    color: #1a3a52;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem 0;
}

p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #d4af37;
}

.contact-item strong {
    color: #1a3a52;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 5px;
    border-top: 4px solid #d4af37;
}

.service-card h4 {
    color: #1a3a52;
    margin-bottom: 1rem;
}

/* Attorney Preview Cards */
.attorney-preview {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid #d4af37;
}

.attorney-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.attorney-preview-text h3 {
    color: #1a3a52;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.attorney-preview-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.attorney-preview-button {
    display: inline-block;
    background-color: #1a3a52;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.attorney-preview-button:hover {
    background-color: #0f2333;
}

.attorney-preview-highlight {
    font-size: 1.1rem;
    color: #1a3a52;
    font-weight: bold;
}

@media (max-width: 768px) {
    .attorney-preview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attorney-preview-text h3 {
        font-size: 1.6rem;
    }
    
    .attorney-preview {
        padding: 2rem;
    }
}

/* Credentials Box */
.credentials-box {
    background: #f5f5f5;
    border-left: 4px solid #d4af37;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 3px;
}

.credentials-box ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.credentials-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Highlight Box */
.highlight {
    background: #e8f0f7;
    border: 1px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 3px;
}

.highlight strong {
    color: #1a3a52;
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 2rem;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Buttons */
.cta-button,
.about-ken-link {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

.cta-button {
    background-color: #d4af37;
    color: #1a3a52;
}

.cta-button:hover {
    background-color: #c09a2a;
}

.about-ken-link {
    background-color: #1a3a52;
    color: white;
}

.about-ken-link:hover {
    background-color: #0f2333;
}

/* Footer */
footer {
    background-color: #1a3a52;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer a {
    color: #d4af37;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.9rem;
    color: #666;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 3px;
    margin-top: 2rem;
    border-left: 3px solid #999;
}

.disclaimer p {
    margin-bottom: 0.5rem;
    text-align: left;
}

/* WordPress Specific */
.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul,
    .navbar ul {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    nav .container,
    .navbar .container {
        padding: 1rem;
    }
}
