:root {
    --gold: #D4AF37;
    --deep-blue: #1a2b4a;
    --royal-blue: #2c4875;
    --burgundy: #8B2635;
    --cream: #FAF6F0;
    --warm-white: #FFF9F0;
    --soft-gold: #E8D5A8;
    --shadow-gold: rgba(212, 175, 55, 0.15);
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-blue);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-subtitle {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4875 50%, #8B2635 100%);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 38, 53, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--soft-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out 0.2s backwards;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero h2 {
    font-size: 2rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.hero-verse {
    font-size: 1.3rem;
    color: var(--soft-gold);
    font-weight: 300;
    margin: 2rem 0;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out 0.8s backwards;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease-out 1s backwards;
}

.cta-button {
    padding: 1.2rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    border: 2px solid var(--gold);
}

.cta-primary {
    background: var(--gold);
    color: var(--deep-blue);
}

.cta-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--warm-white), transparent);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
}

.ministry-logo {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ministry-logo img {
    max-width: 100%;
    height: auto;
}

/* Pastor Section */
.pastor {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    position: relative;
    overflow: hidden;
}

.pastor:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 38, 53, 0.08) 0%, transparent 50%);
}

.pastor-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pastor h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.pastor-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.pastor-image {
    position: relative;
}

.pastor-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
}

.pastor-info {
    color: var(--cream);
}

.pastor-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pastor-info .title {
    font-size: 1.3rem;
    color: var(--soft-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.pastor-info p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Activities Section */
.activities {
    padding: 8rem 2rem;
    background: var(--warm-white);
}

.activities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.activities h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--royal-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.activity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--gold);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-day {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-title {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.activity-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Upcoming Events */
.events {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--royal-blue) 100%);
    position: relative;
}

.events:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
}

.event-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
    padding: 2rem;
    color: white;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-theme {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1rem;
}

.event-verse {
    font-size: 1rem;
    color: var(--soft-gold);
    font-weight: 300;
}

.event-body {
    padding: 2rem;
}

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

.event-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.event-detail-text {
    flex: 1;
}

.event-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-detail-value {
    font-size: 1.1rem;
    color: var(--deep-blue);
    font-weight: 600;
}

.event-schedule {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.event-schedule h4 {
    font-family: 'Cinzel', serif;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.schedule-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: var(--burgundy);
}

.schedule-time {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--royal-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.contact-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Media Section */
.social {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
    text-align: center;
}

.social h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.social-link svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--deep-blue);
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: var(--cream);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.footer-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-container,
    .pastor-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-verse {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .about h2,
    .pastor h2,
    .activities h2,
    .events h2,
    .contact h2 {
        font-size: 2rem;
    }

    .pastor-content {
        grid-template-columns: 1fr;
    }

    .pastor-image img {
        height: 400px;
    }
}
