:root {
    --earth-green: #2D5A27;
    --accent-orange: #FC4C02;
    --background: #F5F5F0;
    --text-main: #333333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; background-color: var(--background); color: var(--text-main); line-height: 1.6; }
h1, h2, h3 { font-family: 'Roboto Serif', serif; font-weight: 700; }

/* Navigation */
nav { background: var(--white); padding: 1rem 5%; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #ddd; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 700; letter-spacing: 2px; color: var(--earth-green); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 0.9rem; text-transform: uppercase; font-weight: bold; }
.panic-btn { background: var(--accent-orange); border: none; color: white; padding: 0.5rem 1rem; cursor: pointer; font-weight: bold; border-radius: 4px; }

/* Animated Banner */
.hero-banner {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

#banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 3rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }

/* Crew Cards */
.section { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.card { background: var(--white); padding: 1.5rem; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.crew-img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }

/* Professional Page Layout */
.pro-name { font-size: 3rem; color: var(--earth-green); margin-bottom: 1rem; }
.hero-mini { height: 150px; background: var(--earth-green); color: white; display: flex; align-items: center; justify-content: center; }
.pro-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 1rem; }
.bio-text { font-size: 1.1rem; margin-bottom: 2rem; border-left: 4px solid var(--earth-green); padding-left: 1rem; }
.resume-header { margin-bottom: 1.5rem; color: var(--earth-green); border-bottom: 2px solid var(--earth-green); padding-bottom: 5px; }

/* Indented Job Bullets */
.job-bullets { margin-top: 0.5rem; padding-left: 3rem; }
.job-bullets li { margin-bottom: 0.5rem; }

.job-meta { display: flex; justify-content: space-between; font-weight: bold; color: var(--earth-green); margin-top: 1rem; }
.job-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }

/* Hitchhiker's Guide Capability Bullets */
.hhg-list { list-style: none; }
.hhg-list li { 
    position: relative; 
    padding-left: 25px; 
    margin-bottom: 10px; 
    border-bottom: 1px solid #d4d8d3;
    padding-bottom: 5px;
}
.hhg-list li::before {
    content: "👍"; 
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.sidebar-card { background: #eef1ed; padding: 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; }

@media (max-width: 768px) { .pro-layout { grid-template-columns: 1fr; } }