/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Calm, peaceful color palette inspired by Orthodox aesthetics */
    --primary-gold: #C9A961;
    --deep-blue: #2C3E50;
    --soft-cream: #F8F6F1;
    --warm-white: #FEFEFE;
    --sage-green: #8B9D83;
    --burgundy: #7D4E57;
    --light-gold: #E8D7AE;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Crimson Text', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--soft-cream);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.cross-symbol {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

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

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

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

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--soft-cream);
    border-color: var(--primary-gold);
}

.lang-btn.active {
    background: var(--primary-gold);
    color: var(--warm-white);
    border-color: var(--primary-gold);
}

.lang-divider {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(rgba(44, 62, 80, 0.7), rgba(125, 78, 87, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%232C3E50" width="1200" height="800"/><g fill-opacity="0.1"><circle fill="%23C9A961" cx="200" cy="200" r="150"/><circle fill="%23C9A961" cx="1000" cy="600" r="200"/><circle fill="%238B9D83" cx="600" cy="400" r="180"/></g></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--warm-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-cross {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-location {
    font-size: 1.2rem;
    color: var(--light-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 3rem;
}

/* About Section */
.about-section {
    background: var(--warm-white);
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    line-height: 2;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--soft-cream);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-gold);
}

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

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Faith Section */
.faith-section {
    background: linear-gradient(to bottom, var(--soft-cream), var(--warm-white));
}

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

.faith-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.faith-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.scripture {
    background: var(--soft-cream);
    padding: 2rem;
    border-left: 4px solid var(--primary-gold);
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.scripture cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.icon-display {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue), var(--burgundy));
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 60px var(--shadow);
}

.large-cross {
    font-size: 10rem;
    color: var(--primary-gold);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Location Section */
.location-section {
    background: var(--warm-white);
}

.location-description {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 2;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    background: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, var(--soft-cream), var(--warm-white));
}

.contact-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--warm-white);
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--warm-white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

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

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-link {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

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

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.8));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-switcher {
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faith-content {
        grid-template-columns: 1fr;
    }
    
    .icon-display {
        padding: 3rem;
    }
    
    .large-cross {
        font-size: 6rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cross {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .nav-brand .brand-text {
        font-size: 0.9rem;
    }
}
