/* Base Reset & Variables */
:root {
    --bg-color: #0f1115;
    --surface-color: #1a1d24;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-color: #f97316; /* Primal Amber/Orange */
    --accent-hover: #ea580c;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(15, 17, 21, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2d35;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primal {
    color: var(--accent-color);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #1f232b 0%, #0f1115 100%);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: var(--accent-hover);
}

/* Section Formatting */
section {
    padding: 100px 0;
}

section h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

section h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background-color: var(--surface-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-features .feature {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #2a2d35;
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    background-color: #334155;
}

.badge.active {
    background-color: #166534; /* Green */
    color: #bbf7d0;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.card a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card a:hover {
    color: var(--accent-color);
}

.policy-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Section */
.video-projects {
    background-color: var(--surface-color);
}

.video-placeholder {
    text-align: center;
    padding: 60px;
    border: 2px dashed #334155;
    border-radius: 10px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.email-link {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 800;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background-color: #08090b;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .nav-links {
        gap: 15px;
    }
}