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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hamburger Menu Button */
.hamburger-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: rgba(44, 85, 48, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.hamburger-menu:hover {
    background: rgba(44, 85, 48, 0.8);
    transform: scale(1.1);
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hamburger-menu.active {
    background: rgba(44, 85, 48, 0.8);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: rgba(44, 85, 48, 0.6);
    z-index: 1000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}


.side-nav-links {
    list-style: none;
    padding: 2rem 0;
}

.side-nav-links li {
    margin: 0;
}

.side-nav-links a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.side-nav-links a:hover {
    color: #2c5530;
    background: rgba(255, 255, 255, 0.2);
    border-left-color: white;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('church1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlide1 20s infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlide2 20s infinite;
    z-index: 0;
}

.hero .hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 85, 48, 0.4), rgba(44, 85, 48, 0.4));
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
}

.logo-big {
    width: 480px;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-big:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes heroSlide1 {
    0%, 23% {
        opacity: 1;
        background-image: url('church1.jpg');
    }
    25%, 48% {
        opacity: 0;
        background-image: url('church1.jpg');
    }
    50%, 73% {
        opacity: 1;
        background-image: url('church3.jpg');
    }
    75%, 100% {
        opacity: 0;
        background-image: url('church3.jpg');
    }
}

@keyframes heroSlide2 {
    0%, 23% {
        opacity: 0;
        background-image: url('church2.jpg');
    }
    25%, 48% {
        opacity: 1;
        background-image: url('church2.jpg');
    }
    50%, 73% {
        opacity: 0;
        background-image: url('church4.jpg');
    }
    75%, 100% {
        opacity: 1;
        background-image: url('church4.jpg');
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.btn-primary:hover {
    background: #1e3b21;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
}

/* Main Content */
main {
    padding-top: 0;
}

.section {
    padding: 4rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 3rem;
}

/* Key Information Cards */
.key-info {
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.worship-times {
    list-style: none;
    text-align: left;
}

.worship-times li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.worship-times li:last-child {
    border-bottom: none;
}

.sermon-info {
    text-align: left;
}

.sermon-title {
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.sermon-verse {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

.sermon-pastor {
    color: #888;
    font-size: 0.9rem;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.news-image {
    height: 200px;
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.news-summary {
    color: #666;
    line-height: 1.6;
}

/* Church Intro Section */
.church-intro {
    background: white;
}

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

.intro-text h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.value-tag {
    background: #e8f5e8;
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
}

.pastor-intro {
    text-align: center;
}

.pastor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 85, 48, 0.3);
}

.pastor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pastor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.pastor-title {
    color: #888;
    margin-bottom: 1rem;
}

.pastor-message {
    font-style: italic;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

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

.contact-info h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5530;
    margin-right: 1rem;
    width: 30px;
}

.contact-item div {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #666;
}

.map-container {
    background: white;
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .map-container img {
        width: 90%;
        height: auto;
    }
}


/* Footer */
footer {
    background: #2c5530;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-privacy-link {
    color: #ccc;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-links a[href*="youtube"]:hover {
    background: #ff0000;
    color: white;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-big {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        background: rgba(44, 85, 48, 0.8);
    }
    
    .side-menu {
        width: 280px;
        right: -280px;
    }
    
    .side-menu.active {
        right: 0;
    }
    
    .logo-big {
        width: 240px;
    }
    
    .hero-logo {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pastor-image {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-left p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Video Container Styles */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 1rem;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .logo-big {
        width: 160px;
    }
    
    .hero-logo {
        top: 1rem;
        left: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* Vision images maintain 80% width on small screens */
    .vision-image img,
    .vision-image1 img {
        width: 80%;
    }
}

/* Vision Image */
.vision-image {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.vision-image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vision-image1 {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.vision-image1 img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
<<<<<<< HEAD
}

/* Bulletin Card Styles */
.bulletin-info-card {
    position: relative;
}

.latest-bulletin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-style: italic;
}

.loading-message i {
    font-size: 1rem;
    color: #2c5530;
}

.bulletin-preview {
    width: 100%;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bulletin-preview:hover {
    transform: scale(1.05);
}

.bulletin-preview-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.bulletin-preview:hover .bulletin-preview-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bulletin-preview-title {
    font-weight: 600;
    color: #2c5530;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.bulletin-preview-date {
    color: #666;
    font-size: 0.8rem;
}

.bulletin-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-bulletin,
.btn-all-bulletins {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-view-bulletin {
    background: #2c5530;
    color: white;
}

.btn-view-bulletin:hover {
    background: #1e3b21;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.btn-all-bulletins {
    background: #f8f9fa;
    color: #2c5530;
    border: 1px solid #2c5530;
}

.btn-all-bulletins:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-1px);
}

.no-bulletin-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem 0;
}

/* Sermon Card Styles */
.sermon-note-info-card {
    position: relative;
}

.latest-sermon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sermon-preview {
    width: 100%;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sermon-preview:hover {
    transform: scale(1.05);
}

.sermon-preview-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s ease;
    object-fit: contain;
    max-height: 260px;
}

.sermon-preview:hover .sermon-preview-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sermon-preview-title {
    font-weight: 600;
    color: #2c5530;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.sermon-preview-date {
    color: #666;
    font-size: 0.8rem;
}

.sermon-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-sermon,
.btn-all-sermons {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-view-sermon {
    background: #2c5530;
    color: white;
}

.btn-view-sermon:hover {
    background: #1e3b21;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.btn-all-sermons {
    background: #f8f9fa;
    color: #2c5530;
    border: 1px solid #2c5530;
}

.btn-all-sermons:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-1px);
}

.no-sermon-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem 0;
}

/* Responsive adjustments for bulletin and sermon cards */
@media (max-width: 768px) {
    .bulletin-preview,
    .sermon-preview {
        max-width: 150px;
    }
    
    .bulletin-actions,
    .sermon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-view-bulletin,
    .btn-all-bulletins,
    .btn-view-sermon,
    .btn-all-sermons {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
=======
>>>>>>> 6c038d49b831c1c544f09a3881ec95e774ba5076
}
