/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Montserrat:wght@400;500;600&display=swap');

/* BASIC RESET & THEME */
:root {
    --primary-green: #556b2f;
    --dark-green: #2e4034;
    --text-light: #f2f2f2;
    --overlay-bg: rgba(25, 25, 25, 0.7); /* Darker overlay for readability */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a; /* Fallback */
    color: var(--text-light);
    margin: 0;
    padding: 0;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2560&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

/* UNIVERSAL HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 64, 52, 0.8);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 10px 20px;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link img {
    height: 60px;
    vertical-align: middle;
}
.main-nav a.nav-button {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.main-nav a.nav-button:hover {
    background-color: #3d4c21;
}

/* MAIN CONTENT BOX (ARTICLE STYLE) */
.content-container {
    max-width: 800px;
    margin: 120px auto 40px auto;
    background: rgba(10, 10, 10, 0.75);
    padding: 3rem 4rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.article-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.article-header .sub-headline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.article-body h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    color: var(--primary-green);
}

.article-body p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}

/* EDIT BUTTON */
.edit-page-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 1001;
}
.edit-page-btn:hover {
    background-color: #3d4c21;
}