/* 
   NEW COVENANT SOCIAL SERVICES (NCSS) 
   Brand Identity: Orange Gradient, Professional, Humanitarian
*/

:root {
    --primary-orange: #ff7e5f;
    --secondary-orange: #feb47b;
    --dark-text: #333;
    --light-text: #fff;
    --bg-light: #f9f9f9;
    --gradient: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-light);
}

/* Navigation */
nav {
    background: #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-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-orange);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

/* Content Sections */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-orange);
    padding-left: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 5%;
    text-align: center;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

/* Journey/News Pages */
.post-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple mobile fix for now */
    }
    .hero h1 {
        font-size: 2rem;
    }
}
