:root {
    --primary-green: #113c22; 
    --accent-gold: #c3923a;   
    --light-cream: #faf8f2;   
    --pure-white: #ffffff;
    --text-dark: #1b291e;
    --text-muted: #4e5d51;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.text-center { text-align: center; }

/* Navigation Bar & Logo Space */
header {
    background-color: rgba(250, 248, 242, 0.98);
    border-bottom: 1px solid #eadecb;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 65px;         
    width: auto;          
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-green);
    display: inline-block;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

/* Page Headers Dynamic Setup */
.page-header {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid #eadecb;
}

.header-alert { background-color: #b33925; }
.header-gold { background-color: #eadecb; }
.header-green { background-color: var(--primary-green); }

/* Hero */
.hero-section {
    background: linear-gradient(180deg, #f3ede0 0%, var(--light-cream) 100%);
    text-align: center;
    border-bottom: 1px solid #eadecb;
}

.hero-content { padding: 100px 0; max-width: 900px; }
.tagline { font-size: 0.9rem; letter-spacing: 4px; font-weight: 700; color: var(--accent-gold); display: block; margin-bottom: 25px; }
h1 { font-size: 2.5rem; font-weight: 700; color: var(--primary-green); line-height: 1.3; margin-bottom: 30px; }
.sub-manifesto { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 45px; }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--pure-white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    cursor: pointer;
}

.btn-outline { background-color: transparent; color: var(--primary-green); margin-left: 15px; }
.btn-outline:hover { background-color: var(--primary-green); color: var(--pure-white); }

/* Layout Grids */
.unique-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }

.creed-text h2 { font-size: 2.2rem; color: var(--primary-green); margin-bottom: 25px; }
.creed-text p { margin-bottom: 20px; color: var(--text-muted); }
.highlight-text { font-style: italic; border-left: 4px solid var(--accent-gold); padding-left: 15px; font-size: 1.1rem; color: var(--primary-green); }

/* Image Elements */
.creed-image-box { position: relative; }
.responsive-img { width: 100%; border-radius: 8px; background-color: #e5dfd3; min-height: 250px; }
.floating-quote { position: absolute; bottom: -20px; left: 20px; background-color: var(--primary-green); color: var(--pure-white); padding: 15px 25px; border-radius: 4px; font-weight: 600; }

/* Cards Styling */
.card { background-color: var(--pure-white); padding: 40px 25px; border-radius: 6px; border: 1px solid #ede8dc; }
.card-icon { font-size: 2.5rem; display: block; margin-bottom: 20px; }
.card h3 { color: var(--primary-green); margin-bottom: 15px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.focus-card { padding: 40px; border-radius: 8px; display: flex; flex-direction: column; }
.dark-card { background-color: var(--primary-green); color: var(--light-cream); }
.dark-card h3 { color: var(--accent-gold); margin-bottom: 15px; }
.focus-img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; margin-top: 20px; background-color: #1a4a2c; }
.alert-card { background-color: var(--pure-white); border: 2px dashed #e39d91; }
.alert-card h3 { color: #b33925; margin-bottom: 15px; }
.proof-badge { background-color: #fceae6; color: #b33925; padding: 8px 15px; border-radius: 20px; font-weight: 700; align-self: flex-start; margin-top: 20px; }

/* Connect Hub */
.connect-section { background-color: #ede9dc; text-align: center; }
.connect-box { max-width: 700px; }
.connect-box h2 { font-size: 2.2rem; color: var(--primary-green); margin-bottom: 15px;}
.contact-links { display: flex; justify-content: center; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.contact-item { text-decoration: none; color: var(--primary-green); font-weight: 700; }

/* Footer */
footer { background-color: #0b1a10; color: #ded9cd; text-align: center; padding: 40px 0; }
.footer-motto { color: var(--accent-gold); font-weight: 600; margin-bottom: 10px; }
.copyright { opacity: 0.6; font-size: 0.85rem; }
.domain-footer { margin-top: 15px; font-weight: 700; letter-spacing: 2px; opacity: 0.9; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px 0; }
    .nav-logo { height: 55px; }
    nav a { margin: 0 8px; font-size: 0.85rem; }
    h1 { font-size: 1.8rem; }
    .unique-grid, .grid-2 { grid-template-columns: 1fr; }
    .hero-cta-group { display: flex; flex-direction: column; gap: 10px; }
    .btn-outline { margin-left: 0; }
}
