/* 포항우창교회 스타일 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --secondary: #95a5a6;
    --accent: #c49b63;
    --gold: #d4af37;
    --warm-bg: #fafafa;
    --warm-bg-light: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --bg-light: #f8f9fa;
    --border: #ecf0f1;
    --success: #27ae60;
    --info: #3498db;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img { height: 60px; }

.main-nav .nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item { position: relative; }

.nav-link {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-item.active .nav-link { color: var(--primary); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li { border-bottom: 1px solid var(--border); }
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    transition: all 0.3s;
}
.dropdown-menu a:hover, .dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    margin-top: 90px;
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
}

/* Sections */
.this-week-sermon, .worship-guide, .welcome-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* Sermon */
.sermon-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.sermon-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.sermon-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sermon-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.sermon-details p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.btn-youtube {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ff0000;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

/* Worship Schedule - 전문가 버전 */
.section-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 1.05rem;
}

.worship-schedule {
    max-width: 1000px;
    margin: 0 auto;
}

.worship-day-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.day-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-badge {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.worship-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.worship-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.worship-item.featured {
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    border: 2px solid var(--primary);
}

.worship-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.worship-time-badge {
    background: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.worship-time-badge.morning {
    background: linear-gradient(135deg, #c49b63, #d4af37);
}

.worship-time-badge.evening {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.worship-time-badge .time {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.worship-time-badge .period {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.worship-details h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.worship-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.worship-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.worship-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.worship-departments {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.worship-departments h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.department-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.department-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.department-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.department-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.department-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.department-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.department-item .location {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: white;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary);
}

.worship-notice {
    margin-top: 40px;
}

.notice-box {
    background: #f8f9fa;
    border-left: 4px solid #c49b63;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-box i {
    font-size: 2rem;
    color: #c49b63;
    flex-shrink: 0;
}

.notice-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.notice-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Welcome Section */
.welcome-section { background: var(--bg-light); }

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: 10px;
}

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

.section-title.centered {
    text-align: center;
}

/* 기존 Welcome Grid (백업용) */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.welcome-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.welcome-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

/* 새로운 Welcome Grid - 이미지 기반 카드 */
.welcome-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.welcome-card-new {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.4s;
    cursor: pointer;
}

.welcome-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    transition: all 0.4s;
}

.welcome-card-new:hover .welcome-overlay {
    background: linear-gradient(to bottom, rgba(107,127,215,0.7), rgba(74,95,181,0.9));
}

.welcome-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: white;
    z-index: 2;
}

.welcome-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.welcome-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.welcome-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.welcome-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.welcome-card-new:hover .welcome-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Welcome Info Cards - 연락처 및 위치 정보 */
.welcome-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-card-large {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s;
}

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

.info-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-content .address {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.info-content .transport,
.info-content .contact,
.info-content .hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    margin: 10px 0;
    font-size: 1rem;
}

.info-content .transport i,
.info-content .contact i,
.info-content .hours i {
    color: var(--primary);
    width: 20px;
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107,127,215,0.3);
}

/* Page Header */
.page-header {
    margin-top: 90px;
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

/* Greeting Page Styles */
.greeting-hero {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.greeting-hero-image {
    position: relative;
}

.greeting-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pastor-name-tag {
    position: absolute;
    bottom: -20px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.pastor-name-tag h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pastor-name-tag p {
    color: var(--primary);
    font-weight: 600;
}

.greeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.greeting-hero-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 25px;
}

.greeting-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.greeting-message-section {
    background: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 80px;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 500;
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 40px;
}

.vision-highlight {
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    border-left: 4px solid var(--primary);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    margin: 40px 0;
}

.vision-highlight i.fa-quote-left,
.vision-highlight i.fa-quote-right {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.vision-highlight i.fa-quote-left {
    top: 20px;
    left: 20px;
}

.vision-highlight i.fa-quote-right {
    bottom: 20px;
    right: 20px;
}

.vision-highlight p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-style: italic;
    margin: 0;
    padding: 0 30px;
}

.core-values-section {
    margin-bottom: 80px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center .section-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-center {
    font-size: 2.2rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

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

.value-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.value-card.featured h3,
.value-card.featured p,
.value-card.featured .value-details li {
    color: white;
}

.value-card.featured .value-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.value-card.featured .value-divider {
    background: rgba(255,255,255,0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.value-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.value-details {
    list-style: none;
}

.value-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.value-card.featured .value-details li {
    border-top-color: rgba(255,255,255,0.2);
}

.value-details li i {
    color: var(--primary);
    flex-shrink: 0;
}

.value-card.featured .value-details li i {
    color: white;
}

.greeting-closing {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 60px;
}

.closing-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.signature-box {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.signature-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.signature {
    text-align: right;
}

.signature-title {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.signature-name {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.signature-seal {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
}

/* Ministers Page Styles */
.ministers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
}

/* Senior Pastor Section */
.senior-pastor-section {
    margin-bottom: 100px;
}

.senior-pastor-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.pastor-image-wrapper {
    position: relative;
    height: 100%;
}

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

.pastor-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(107,127,215,0.4);
}

.pastor-details {
    padding: 50px 50px 50px 0;
}

.pastor-details h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pastor-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.pastor-bio {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bio-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.pastor-education,
.pastor-experience {
    margin-bottom: 25px;
}

.pastor-education h4,
.pastor-experience h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pastor-education h4 i,
.pastor-experience h4 i {
    color: var(--primary);
}

.pastor-education ul,
.pastor-experience ul {
    list-style: none;
}

.pastor-education ul li,
.pastor-experience ul li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.pastor-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107,127,215,0.3);
}

/* Staff Section */
.staff-section {
    margin-bottom: 80px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.staff-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.staff-card:hover .staff-photo img {
    transform: scale(1.1);
}

.staff-role-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(107,127,215,0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.staff-info {
    padding: 30px;
}

.staff-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.staff-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.staff-desc {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.staff-ministry {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.staff-ministry span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 15px;
    font-size: 0.85rem;
}

.staff-ministry span i {
    color: var(--primary);
}

.staff-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.staff-contact-mini span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.staff-contact-mini span i {
    color: var(--primary);
    width: 16px;
}

/* Elders Section */
.elders-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin: 0 -20px;
}

.elders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elder-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.elder-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.elder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elder-info {
    padding: 25px;
    text-align: center;
}

.elder-position {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary);
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.elder-position.deacon {
    background: #7f8c8d;
}

.elder-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.elder-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Worship Detail Page Styles */
.worship-detail-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.worship-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.worship-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.worship-category.alt {
    background: #34495e;
}

.worship-detail-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.worship-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.worship-time-large {
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
}

.worship-time-large.alt {
    background: #34495e;
}

.worship-time-large .time {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.worship-time-large .period {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.worship-day {
    text-align: center;
    margin-top: 10px;
    color: var(--text-gray);
    font-weight: 600;
}

.worship-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.worship-order-section {
    margin-bottom: 40px;
}

.worship-order-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.worship-order-section h3 i {
    color: var(--primary);
}

.worship-order-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.order-item:hover {
    background: #e8edff;
    transform: translateX(10px);
}

.order-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.order-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.order-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.worship-features {
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    padding: 30px;
    border-radius: 10px;
}

.worship-features h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.worship-features h3 i {
    color: var(--primary);
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 1rem;
}

.features-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.worship-description-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.worship-description-box p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Weekly Worship */
.weekly-worship-section {
    margin: 60px 0;
}

.weekly-worship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.weekly-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.weekly-card.morning {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.weekly-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.weekly-card.morning .weekly-icon {
    background: #c49b63;
}

.weekly-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.weekly-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.weekly-card.morning .weekly-time {
    color: #c49b63;
}

.weekly-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.weekly-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.weekly-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.weekly-info span i {
    color: var(--primary);
}

/* Department Worship */
.department-worship-section {
    margin: 60px 0;
}

.dept-worship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dept-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

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

.dept-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.dept-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.dept-time {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.dept-place {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.dept-age {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.dept-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Worship Notice Section */
.worship-notice-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.notice-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.notice-card.primary {
    background: #f8f9fa;
    border-left: 5px solid #2c3e50;
}

.notice-card.secondary {
    background: #fef9f2;
    border-left: 5px solid #c49b63;
}

.notice-card.success {
    background: #f0f7f4;
    border-left: 5px solid #27ae60;
}

.notice-card > i {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-card.primary > i {
    color: #2c3e50;
}

.notice-card.secondary > i {
    color: #c49b63;
}

.notice-card.success > i {
    color: #27ae60;
}

.notice-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.notice-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Newcomer Page Styles */
.newcomer-hero {
    text-align: center;
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.newcomer-hero-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.newcomer-hero h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.registration-process-section {
    margin-bottom: 80px;
}

.process-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: -30px 0 50px;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.process-step-card {
    flex: 1;
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

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

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.step-num {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 20px auto 20px;
}

.process-step-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.process-step-card p {
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.step-details span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.step-details span i {
    color: var(--primary);
}

.process-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 2rem;
}

/* Education Program */
.education-program-section {
    margin-bottom: 80px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.edu-week-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.week-number {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.edu-week-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.edu-topics {
    list-style: none;
}

.edu-topics li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-gray);
    border-top: 1px solid var(--border);
}

.edu-topics li:first-child {
    border-top: none;
}

.edu-topics li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 25px 25px 60px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.newcomer-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: white;
    color: var(--primary);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary);
}

.contact-info-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
}

.contact-info-box p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h3, .footer h4 {
    margin-bottom: 20px;
}

.footer-address, .footer-contact {
    margin: 10px 0;
    opacity: 0.9;
}

.footer-links a {
    display: block;
    margin: 10px 0;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-denomination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.denomination-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

/* Admin Styles */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.admin-login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 450px;
    width: 100%;
}

.admin-logo {
    height: 80px;
    display: block;
    margin: 0 auto 20px;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: inherit;
}

.btn-login, .btn-primary {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover, .btn-primary:hover {
    background: var(--secondary);
}

.admin-body {
    background: var(--bg-light);
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: #2c3e50;
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar-header img {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.admin-nav ul li a {
    display: block;
    padding: 15px 25px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.admin-nav ul li:hover a,
.admin-nav ul li.active a {
    background: rgba(255,255,255,0.1);
    color: white;
    padding-left: 30px;
}

.admin-main {
    margin-left: 250px;
    flex: 1;
    padding: 0;
}

.admin-header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content {
    padding: 40px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.scroll-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 968px) {
    .sermon-featured, .worship-cards, .welcome-grid, .welcome-grid-new, .welcome-info-cards, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .department-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .worship-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .welcome-card-new {
        height: 350px;
    }
    .greeting-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .greeting-hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .greeting-message-section, .greeting-closing {
        padding: 40px 30px;
    }
    .signature-name {
        justify-content: center;
    }
    .senior-pastor-card {
        grid-template-columns: 1fr;
    }
    .pastor-details {
        padding: 40px 30px;
    }
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .elders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .worship-detail-section {
        padding: 30px;
    }
    .worship-detail-header {
        flex-direction: column;
        gap: 20px;
    }
    .worship-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .weekly-worship-grid {
        grid-template-columns: 1fr;
    }
    .dept-worship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .worship-notice-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .worship-info-grid {
        grid-template-columns: 1fr;
    }
    .dept-worship-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .education-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    }
    .main-nav .nav-menu.active { left: 0; }
    .hero-content h1 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
}
