<meta http-equiv="content-type" content="text/html; charset=utf-8">
/* ===================================
   LIKCC - 그레잇넥 한인천주교회 스타일시트
   Roman Catholic 경건하고 품위있는 디자인
   =================================== */

/* Reset &amp; Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - 경건하고 우아한 색상 */
    --primary-color: #1a2856;        /* Deep Navy Blue */
    --secondary-color: #b8964f;      /* Elegant Gold */
    --accent-color: #8b6f47;         /* Bronze */
    --light-bg: #f8f6f2;             /* Warm White */
    --dark-text: #2c2c2c;            /* Almost Black */
    --light-text: #666666;           /* Gray */
    --white: #ffffff;
    --overlay-dark: rgba(26, 40, 86, 0.85);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-heading-en: 'Playfair Display', serif;
    --font-heading-kr: 'Noto Serif KR', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading-kr);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading-kr);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-heading-kr);
    font-size: 1.1rem;
    padding: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 40, 86, 0.7), rgba(26, 40, 86, 0.8)),
                url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1920') center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(26, 40, 86, 0.85) 0%, 
                rgba(26, 40, 86, 0.75) 50%, 
                rgba(26, 40, 86, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-icon {
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.cross-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 10px rgba(184, 150, 79, 0.3));
}

.hero-title-large {
	font-family: var(--font-heading-kr);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

.hero-title-medium {
    font-family: var(--font-heading-kr);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.4s ease;
}

.hero-subtitle {
    font-family: var(--font-heading-kr);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 1.6s ease;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin: 30px auto;
    box-shadow: 0 2px 5px rgba(184, 150, 79, 0.3);
    animation: fadeIn 1.8s ease;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 2s ease;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-heading-kr);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(184, 150, 79, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 2.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 150, 79, 0.5);
    background: #c7a662;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading-kr);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 40, 86, 0.85);
    padding: 15px;
    text-align: center;
}

.overlay-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-text p {
    margin: 0;
    color: var(--light-text);
}

.info-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-text a:hover {
    color: var(--secondary-color);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary-color) !important;
    font-size: 0.95rem;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading-kr);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.form-group label i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading-kr);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 150, 79, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.footer-info h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.social-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.scripture {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 1rem !important;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title-large {
        font-size: 3rem;
    }
    
    .hero-title-medium {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 20px;
    }
    
    .hero-title-large {
        font-size: 2.5rem;
    }
    
    .hero-title-medium {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }
    
    .hero-title-medium {
        font-size: 1.3rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .cross-icon {
        width: 60px;
        height: 60px;
    }
}