/* style.css - The "Good Neighbor" Theme */
:root {
    --primary: #2F5D62; /* Earthy Teal - Trust & Growth */
    --secondary: #DFEEEA; /* Soft Mint - Backgrounds */
    --accent: #A7C5EB; /* Sky Blue - Highlights */
    --text-dark: #2C3333; /* Dark Charcoal - Text */
    --text-light: #F7F7F7; /* Off-white - Text on dark backgrounds */
    --font-heading: 'Georgia', serif; /* Warm, established feel */
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Clean, modern */
}

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

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

/* Header & Nav */
header {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

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

.btn-nav {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background-color: #1a3c40;
    color: #fff;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); /* Dark overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-main {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
}

.btn-main:hover { background-color: #1a3c40; }
.btn-secondary:hover { background-color: var(--text-light); color: var(--text-dark); }

/* Standard Sections */
.container {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light { background-color: var(--secondary); }

h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Specific Page Styles */
.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.split-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.text-block { flex: 1; }

.donation-tiers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tier-card {
    border: 2px solid var(--primary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin: 1rem 0;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .split-section { flex-direction: column; }
    .split-section img { max-width: 100%; }
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 50px; /* Adjust based on your preference */
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: -5px;
}