/*
Theme Name: Evergreen Alpine (V2)
Description: Refined Washington-Bavarian style for Kulman.org
*/

:root {
    --evergreen: #1B4332;
    --glacial-blue: #0077B6;
    --timber: #4E342E; /* Bavarian Wood Brown */
    --snow: #F8F9FA;
    --alpine-shadow: rgba(27, 67, 50, 0.15);
}

body {
    background-color: var(--snow);
    font-family: 'Lora', serif; /* Classic, readable serif */
    color: #2D3436;
}

h1, h2, h3, #main-nav a {
    font-family: 'Montserrat', sans-serif; /* Bold, modern German-style sans-serif */
    text-transform: uppercase;
}

/* Stationary Top Bar with Timber Accent */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--evergreen);
    border-bottom: 5px solid var(--timber);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#main-nav a { color: #fff; font-size: 1.2rem; letter-spacing: 2px; }

/* The "Milestone" Card */
.site-wrapper { max-width: 900px; margin: 120px auto 60px; padding: 0 20px; }

article {
    background: #fff;
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid #E0E0E0;
    border-top: 10px solid var(--evergreen);
    position: relative;
    transition: transform 0.3s ease;
}

article:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--alpine-shadow); }

/* Bavarian Corner Accent */
article::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, var(--timber) 50%);
}

.date-tag {
    background: var(--glacial-blue);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    margin-bottom: 15px;
}

/* Footer with "Mountain Range" feel */
.site-footer {
    background: var(--evergreen);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 10px solid var(--timber);
}
/* Family Directory Grid */
.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.family-card {
    background: white;
    border-bottom: 5px solid var(--timber);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: sepia(20%); /* Subtle vintage/German lodge vibe */
}

.photo-placeholder { height: 300px; background: #ddd; }

.member-info { padding: 20px; }
.member-info h2 { margin: 0 0 10px 0; color: var(--evergreen); font-size: 1.4rem; }
.bio { font-size: 0.95rem; color: #555; font-style: italic; }

.section-title {
    text-align: center;
    border-left: none;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--timber);
    margin-bottom: 40px;
}