/* Global Styles */
:root {
    --primary-color: #1a3e72;
    --secondary-color: #c8102e;
    --accent-color: #f8b400;
    --light-color: #f5f7fa;
    --dark-color: #333;
    --gray-color: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #9c0d24;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a.active {
    color: var(--secondary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('../images/glen-frost-2.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Case Highlights */
.case-highlights {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.case-highlights h2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.case-highlights h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 25%;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
}

/* About Defendant Section */
.about-defendant {
    padding: 80px 0;
}

.defendant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.defendant-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.defendant-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.defendant-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-section blockquote:before,
.quote-section blockquote:after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.5;
    position: absolute;
}

.quote-section blockquote:before {
    top: -20px;
    left: -40px;
}

.quote-section blockquote:after {
    bottom: -50px;
    right: -40px;
}

.quote-section cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('../images/glen-frost-1.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: white;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Case Details (About Page) */
.case-details {
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-item h3 {
    color: var(--secondary-color);
}

.timeline-item:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--accent-color);
}

.arguments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.argument-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.argument-card h3 {
    color: var(--primary-color);
}

.business-list {
    columns: 2;
    list-style-position: inside;
    margin: 30px 0;
}

.business-list li {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Victims Page Styles */
.victims-list {
    padding: 80px 0;
}

.victim-card {
    background: var(--light-color);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.victim-card h2 {
    color: var(--primary-color);
}

.award {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.victim-quotes {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.victim-quotes h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.quote-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-color);
}

.quote-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.legal-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .defendant-content {
        grid-template-columns: 1fr;
    }
    
    .defendant-image {
        order: -1;
    }
    
    .arguments {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:after {
        left: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .business-list {
        columns: 1;
    }
}