/* GLOBAL DARK THEME */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* NAVIGATION BAR (CENTERED & MATCHES OTHER PAGES) */
.navbar {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* LOGO */
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-size: 1rem;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f39c12 !important;
}

/* ENSURE CONTENT IS VISIBLE (NO HIDDEN HEADER) */
.container {
    max-width: 900px;
    margin: 100px auto 0; /* Push content below navbar */
    padding: 2rem;
    text-align: center;
}

/* MAIN CONTENT */
.manifesto-intro h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.manifesto-intro p {
    font-size: 1rem;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}

/* PRINCIPLES GRID */
.principles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the content */
    gap: 1.5rem;
    margin-top: 2rem;
}

/* STYLE FOR THE FIRST TWO CARDS */
.principle-card {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px; /* Keeps them from being too wide */
}

/* STYLE FOR CENTERED THIRD CARD */
.center-card {
    flex-basis: 100%; /* Forces it to take full width */
    text-align: center;
}
/* QUOTE BLOCK */
blockquote {
    font-size: 1.2rem;
    color: #ffcc00; /* Highlight quote */
    font-style: italic;
    margin: 2rem auto;
    max-width: 700px;
    border-left: 4px solid #ffcc00;
    padding-left: 1rem;
    text-align: center;
}

blockquote cite {
    font-size: 1rem;
    color: #bbb;
    display: block;
    margin-top: 10px;
}

/* CTA SECTION */
.cta {
    background-color: #222;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.cta ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.cta ul li {
    margin-bottom: 8px;
}

/* BUTTON */
.btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
    background-color: #f39c12;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #d37f0d;
}
