/* * Theme: Kinship Gathering
 * Author: Prince Maurice Wallace
 * Date: June 21, 2026
 * Description: Main stylesheet for layout, glassmorphism, and responsive navigation.
 */

:root {
    --primary-color: #2c5282;
    --accent-color: #dd6b20;
    --text-light: #ffffff;
    --card-bg: rgba(0, 0, 0, 0.7); 
    --glass-border: rgba(255, 255, 255, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    color: var(--text-light); 
    background-image: url('../images/kinship_tree.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
}

header { 
    position: sticky; top: 0; z-index: 1000;
    background: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(20px);           
    border-bottom: 1px solid var(--glass-border); 
    padding: 0.5rem 0; 
}

.nav_container { 
    max-width: 1200px; margin: 0 auto; display: flex; 
    justify-content: space-between; align-items: center; padding: 1rem 2rem; 
}

.logo { 
    display: flex; align-items: center; text-decoration: none; color: var(--text-light); 
}

/* Applied font specifically to the brand name */
.brand_name {
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img { height: 60px; width: auto; margin-right: 15px; }

.nav_links { display: flex; list-style: none; gap: 2rem; }
.nav_links a { text-decoration: none; color: var(--text-light); font-weight: 500; }

.hero { 
    position: relative; height: 100vh; display: flex; 
    align-items: center; justify-content: center; text-align: center; overflow: hidden; 
}

.hero_video { 
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; 
    transform: translate(-50%, -50%); object-fit: cover; z-index: 1; 
}

.hero_overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.5); z-index: 2; 
}

.hero_content { 
    position: relative; z-index: 3; max-width: 800px; padding: 2.5rem; 
    margin-top: 300px; 
    background: var(--card-bg); backdrop-filter: blur(10px); 
    border-radius: 20px; border: 1px solid var(--glass-border); 
}

.services_section { max-width: 1200px; margin: 4rem auto; padding: 0 2rem; }
.services_grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }

.service_card { 
    background: var(--card-bg); backdrop-filter: blur(10px); 
    padding: 2.5rem; border-radius: 15px; border: 1px solid var(--glass-border); text-align: center; 
}

.authority_section { max-width: 1200px; margin: 4rem auto; padding: 0 2rem; }
.authority_container {
    background: var(--card-bg); padding: 3rem; border-radius: 15px; border: 1px solid var(--glass-border);
}

h1, h2, h3, p, .nav_links a {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}

.cta_button { 
    display: inline-block; background-color: var(--accent-color); color: white; 
    padding: 0.85rem 2rem; border-radius: 5px; text-decoration: none; font-weight: 600; margin-top: 1rem;
}

footer { padding: 2rem; text-align: center; color: var(--text-light); background: rgba(0, 0, 0, 0.7); }

/* Responsive Mobile Navigation */
@media (max-width: 768px) {
    .nav_container { flex-direction: column; padding: 1rem; }
    .nav_links { 
        flex-direction: column; gap: 0.5rem; text-align: center; 
        margin-top: 1rem; width: 100%; background: rgba(0, 0, 0, 0.8); padding: 1rem; border-radius: 10px; 
    }
    .logo { margin-bottom: 0.5rem; }
}