@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Code+Pro:wght@400;700&display=swap');

:root {
    --primary-green: #1A4314;
    --primary-gold: #D4AF37;
    --dark-charcoal: #222222;
    --light-bg: #0d0d0d;
    --green-glow: rgba(26, 67, 20, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light-bg);
    color: var(--primary-gold);
    font-family: 'Libre Baskerville', serif;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    z-index: 1000;
    box-shadow: 0 0 20px var(--green-glow);
}

nav .nav-logo {
    color: var(--primary-gold);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5em;
    text-shadow: 0 0 10px var(--green-glow);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--green-glow);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(26, 67, 20, 0.3) 0%, var(--light-bg) 70%);
    padding-top: 70px;
}

#scene {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scene .layer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 350px;
    filter: drop-shadow(0 0 40px var(--green-glow));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 40px var(--green-glow));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(26, 67, 20, 0.8));
    }
}

.hero-tagline {
    font-size: 2.5rem;
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    color: var(--primary-gold);
    margin-top: 20px;
    text-shadow: 0 0 20px var(--green-glow);
}

.hero-tagline span {
    opacity: 0;
    display: inline-block;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 10px var(--green-glow));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Mission Section */
.mission-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, var(--light-bg), var(--primary-green));
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-gold) !important;
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--green-glow);
}

.mission-text {
    font-size: 1.4em;
    line-height: 1.8;
    font-family: 'Source Code Pro', monospace;
    max-width: 900px;
    margin: 0 auto;
    color: #FFD700 !important;
}

/* Investigate Section */
.investigate-section {
    padding: 120px 20px;
    background: var(--primary-green);
    text-align: center;
}

.investigate-section .section-title {
    color: #FFD700 !important;
}

.investigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.investigation-card {
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid var(--primary-gold);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.investigation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--green-glow);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 4em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-gold));
}

.investigation-card h3 {
    font-size: 1.8em;
    color: #FFD700 !important;
    margin-bottom: 15px;
}

.investigation-card p {
    font-family: 'Source Code Pro', monospace;
    color: #f0f0f0 !important;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Team Section */
.team-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, var(--primary-green), var(--dark-charcoal));
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.team-member {
    background: rgba(26, 67, 20, 0.3);
    border: 3px solid var(--primary-gold);
    padding: 50px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--green-glow);
}

.member-role {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9em;
    color: #90EE90 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: bold;
}

.team-member h3 {
    font-size: 2.5em;
    color: #FFD700 !important;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--green-glow);
}

.team-member p {
    font-family: 'Source Code Pro', monospace;
    color: #f0f0f0 !important;
    line-height: 1.8;
    font-size: 1.1em;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: var(--dark-charcoal);
    text-align: center;
}

.cta-section h2 {
    font-size: 3em;
    color: #FFD700 !important;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-green);
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.3em;
    font-family: 'Source Code Pro', monospace;
    border: 3px solid var(--primary-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--green-glow);
}

.cta-button:hover {
    background: var(--primary-gold);
    color: var(--primary-green);
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--primary-gold);
}

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

/* Fade-in Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    nav {
        padding: 0 20px;
    }
    
    .investigation-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}
