/* Global Styles */
:root {
    --primary: #1a3e72;
    --secondary: #b22222;
    --accent: #f5f5f5;
    --text: #333;
    --light-text: #777;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn:hover {
    background: #8b1a1a;
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a8c6ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.fastcompany.com/image/upload/f_auto,q_auto,c_fit/wp-cms/uploads/2023/10/p-1-90970286-courtroom-design.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.verdict {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease;
}

/* Case Overview */
.case-overview {
    padding: 80px 0;
    background: var(--accent);
}

.case-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Glen Frost Profile */
.glen-frost {
    padding: 80px 0;
}

.profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.profile-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('https://images.fastcompany.com/image/upload/f_auto,q_auto,c_fit/wp-cms/uploads/2023/10/p-1-90970286-courtroom-design.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Business Empire */
.business-empire {
    padding: 80px 0;
}

.business-empire h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

.empire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.empire-card {
    background: var(--accent);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.empire-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
}

.empire-card ul {
    list-style-position: inside;
}

.empire-card li {
    margin-bottom: 10px;
}

/* Case Details */
.case-details {
    padding: 80px 0;
    background: var(--white);
}

.case-details h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto 50px;
}

.timeline-event {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid var(--primary);
    position: relative;
}

.timeline-event h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--secondary);
    border-radius: 50%;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: var(--accent);
    border-left: 5px solid var(--secondary);
    position: relative;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
}

/* Legal Arguments */
.legal-arguments {
    padding: 80px 0;
    background: var(--accent);
}

.legal-arguments h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

.arguments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.argument {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.argument h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Victim Profiles */
.victim-profiles {
    padding: 80px 0;
}

.victim-card {
    background: var(--accent);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.victim-content {
    padding: 40px;
}

.victim-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.award {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: var(--white);
}

.impact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.impact-card {
    background: var(--accent);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impact-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Courtroom Section */
.courtroom {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.fastcompany.com/image/upload/f_auto,q_auto,c_fit/wp-cms/uploads/2023/10/p-1-90970286-courtroom-design.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.courtroom-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.7);
    padding: 40px;
    border-radius: 10px;
}

.courtroom-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.courtroom-content ul {
    margin: 20px 0 30px 20px;
}

.courtroom-content li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .profile {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .page-hero h2 {
        font-size: 2.5rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .verdict {
        font-size: 1.2rem;
    }
    
    .page-hero h2 {
        font-size: 2rem;
    }
}