/* Color Variables */
:root {
    --navy: #1a237e;
    --gold: #d4af37;
    --cream: #faf8f3;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.email-capture {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 400px;
}

.email-capture h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.email-incentive {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    gap: 1rem;
}

.email-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.hero-image {
    flex: 1;
    padding: 2rem;
}

.placeholder-image {
    background: var(--light-gray);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-dark);
}

/* Scripture Section */
.scripture-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.scripture {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--gold);
}

.scripture cite {
    display: block;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--white);
}

.mission-text h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* Collections Section */
.collections-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

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

.collection-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    background: var(--light-gray);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.collection-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.collection-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.values-cta {
    text-align: center;
}

/* Email Section */
.email-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-scripture {
    font-style: italic;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
}
