/* ======================================= */
/* --- FOUNDER PAGE STYLES (UNIQUE) --- */
/* ======================================= */

/* 1. STYLE HOME BUTTON (REPLACES HIDE NAVIGATION) */
.founder-page header nav {
    /* Ensure the navigation container is visible */
    display: block; 
    text-align: center; /* Center the home button */
    padding: 1.5rem 0; /* Increased padding for visual separation */
    background-color: #004f2d; /* Dark Green header background */
}

.founder-page header nav a {
    /* Styling to make it look like a prominent button */
    display: inline-block;
    background-color: #ffd700; /* Gold background */
    color: #004f2d; /* Dark Green text for high contrast */
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    padding: 0.6rem 2rem;
    border-radius: 30px; /* Pill shape */
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Clear shadow for depth */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Hover effect for a better user experience */
.founder-page header nav a:hover {
    background-color: #ffc400; /* Slightly darker gold on hover */
    transform: translateY(-2px); /* Slight lift effect */
}


/* 2. STYLE MAIN FOUNDER CONTENT SECTION */
.founder-content {
    /* Use one of your brand colors for the background, like the Dark Green from the header/vision */
    background-color: #004f2d; 
    color: white; /* Ensure text is readable against the dark background */
    padding: 3rem 1.5rem;
    text-align: left; /* Text-heavy pages should be left-aligned for readability */
}

/* 3. CENTER & LIMIT TEXT WIDTH for Readability */
.founder-content > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 4. TITLE STYLE */
.founder-content h2 {
    color: #ffd700; /* Gold text */
    font-size: 2.5rem;
    text-align: center; /* Center the main title */
    margin-bottom: 2rem;
}

/* 5. PARAGRAPH READABILITY */
.founder-content p {
    font-size: 1.15rem;
    line-height: 1.8; /* Increased line height for easy reading */
    margin-bottom: 1.5rem;
}

/* 6. DONATION CTA BLOCK */
.donation-cta {
    background-color: #003344; /* Darker blue background for the final block */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* 7. DONATION BUTTON STYLE (ENHANCED) */
.donate-btn-founder {
    /* Base Button Styling */
    display: inline-block; 
    margin-top: 1.5rem; 
    
    /* Look and Feel */
    background-color: #ffd700; /* Use Gold for prominence */
    color: #004f2d; /* Dark Green text for high contrast */
    font-size: 1.25rem; /* Slightly larger text for importance */
    font-weight: 700; /* Bolder text */
    text-decoration: none;
    text-transform: uppercase; /* Make it pop */
    letter-spacing: 1px;
    padding: 0.8rem 2.5rem; /* Large padding for a bigger button */
    border-radius: 8px; /* Slightly rounded corners */
    border: none;
    cursor: pointer;
    
    /* Animation and Shadow */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

/* Hover/Active Effect */
.donate-btn-founder:hover {
    background-color: #ffc400; /* Slightly darker gold on hover */
    transform: translateY(-3px); /* Noticeable lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Shadow expands on hover */
}