/* Custom Font */
@font-face {
    font-family: 'RoughFont';
    src: url('../fonts/RoughFont.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'RoughFont', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c1810 0%, #5d3a2a 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'RoughFont', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.8), rgba(93, 58, 42, 0.8)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'RoughFont', Arial, sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: bold;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-family: 'RoughFont', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4a574;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .verse {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #d4a574, #b8956a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2db 100%);
}

.mission h2 {
    font-family: 'RoughFont', Arial, sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c1810;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.mission-image {
    text-align: center;
    position: relative;
}

.faith-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Prayer Section */
.prayer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #5d3a2a 100%);
    color: white;
    text-align: center;
}

.prayer-section h2 {
    font-family: 'RoughFont', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.prayer-image-container {
    margin: 2rem 0;
}

.prayer-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4a574;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: white;
}

.events h2 {
    font-family: 'RoughFont', Arial, sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c1810;
}

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

.event-card {
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2db 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.event-date {
    color: #d4a574;
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

/* Footer */
footer {
    background: #1a0f0a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #d4a574;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.5rem;
    }
    
    .mission h2, .prayer-section h2, .events h2 {
        font-size: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
