@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-dark: #2B2A2D;
    --accent-orange: #FF4B12;
    --text-white: #F5F5F5;
    --text-secondary: #aaaaaa;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --max-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: rgba(43, 42, 45, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-white);
}

/* Button */
.btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    /* Sharper corners for industrial look */
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: 2px solid var(--accent-orange);
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-img {
    width: 100%;
    max-width: 100rem;
}

.hero {
    background-size: cover;
    background-position: center 84px;
    /* Offset by header height to avoid overlap */
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid var(--accent-orange);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Manifesto Section (Landing & Manifest Page) */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark);
}

.content-box {
    background: #38373a;
    /* Slightly lighter than bg-dark */
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-orange);
}

.manifesto-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
    color: #dddddd;
}

.manifesto-text strong {
    color: var(--accent-orange);
}

.orange-text {
    color: var(--accent-orange);
}

.signatories {
    margin-top: 4rem;
    border-top: 1px solid #555;
    padding-top: 2rem;
}

.signatories h3 {
    color: var(--accent-orange);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.signatories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
}

.signatories-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 2px;
    border: 1px solid #444;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.signatories-list li:hover {
    background: rgba(255, 75, 18, 0.1);
    border-color: var(--accent-orange);
}

/* Footer */
footer {
    background-color: #1a191b;
    /* Darker than bg */
    color: var(--text-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #444;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #2B2A2D;
        padding: 2rem 0;
        border-top: 1px solid #444;
        border-bottom: 5px solid var(--accent-orange);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }
}
