/* ===== 🪃 Crewrang 스타일시트 ===== */
/* 오렌지(#FF6B35) + 다크 차콜(#1A1A2E) 테마 */

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ✅ Crewrang 최종 컬러 */
    
    /* 사이드바 */
    --sidebar-bg: #1E1A17;
    --sidebar-text: #F5F0EB;
    --sidebar-active: #FF6B35;
    --sidebar-hover: #2C2520;
    
    /* 메인 콘텐츠 */
    --main-bg: #FFFFFF;
    --header-bg: #FFFFFF;
    --header-border: #F0EDE8;
    
    /* 카드 */
    --card-bg: #FFFFFF;
    --card-shadow: rgba(30,26,23,0.08);
    --card-border: #F0EDE8;
    
    /* 텍스트 */
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    
    /* 포인트 */
    --accent: #FF6B35;
    --accent-hover: #E55A2B;
    
    /* Legacy 호환 */
    --primary-gold: #FF6B35;
    --primary-orange: #FF6B35;
    --primary-dark: #1E1A17;
    --dark-blue: #1E1A17;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #F5F0EB;
    --text-gray: #6B7280;
    --secondary-gray: #F3F4F6;
    
    /* 그라디언트 */
    --gradient-hero: linear-gradient(135deg, #1E1A17 0%, #2C2520 100%);
    --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    
    /* 그림자 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* 폰트 */
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', 'Noto Sans KR', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px; /* 로고 크기 증가 */
    width: auto;
    max-width: 250px; /* 최대 너비 증가 */
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

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

.btn-login {
    color: var(--primary-dark) !important;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--light-bg);
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-hero);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-gold);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: "";
    margin-right: 0;
}

.hero-program {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 100px;
    line-height: 1.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-hero {
    display: inline-block;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 22px 60px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
    min-width: 280px;
    text-align: center;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
}

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 22px 60px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    min-width: 280px;
    text-align: center;
}
    min-width: 250px;
    text-align: center;
}

.btn-hero-secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* Always On Guard 로고 섹션 - 중앙 단일 로고 */
.hero-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;  /* 고정 */
    margin-bottom: 0;   /* 고정 */
    padding: 0;         /* 패딩 제거 */
}

.slogan-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.slogan-logo-center {
    height: 250px; /* 500px → 250px (반으로 축소) */
    max-width: 95%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(201, 168, 76, 0.4));
}

.slogan-logo:hover,
.slogan-logo-center:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(201, 168, 76, 0.6));
}

.slogan-text {
    display: none; /* 텍스트 숨김 */
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .hero-slogan {
        margin-top: 30px;    /* 고정 */
        margin-bottom: 0;    /* 고정 */
        padding: 0;          /* 패딩 제거 */
    }
    
    .slogan-logo-center {
        height: 125px; /* 250px → 125px (반으로 축소) */
        max-width: 100%;
    }
    
    .slogan-logo-right {
        height: 200px;
    }
}

/* ===== Stats Section ===== */
.stats {
    background: var(--white);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.percent {
    font-size: 36px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===== Process Section ===== */
.process {
    padding: 100px 0;
    background: #FFFFFF;
}

/* Process Dark Background - Higher specificity */
.process.process-dark {
    background: linear-gradient(135deg, #1E1A17 0%, #2C2520 100%);
    position: relative;
    overflow: hidden;
}

.process.process-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.process.process-dark .section-title {
    color: #FFFFFF !important;
}

.process.process-dark .section-subtitle {
    color: #F5F0EB !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.process-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.process-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--white);
}

/* Features Dark Background - Higher specificity */
.features.features-dark {
    background: linear-gradient(135deg, #1E1A17 0%, #2C2520 100%);
    position: relative;
    overflow: hidden;
}

.features.features-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.features.features-dark .section-title {
    color: #FFFFFF !important;
}

.features.features-dark .section-subtitle {
    color: #F5F0EB !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Target Section ===== */
.target {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.target-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-gold);
}

.target-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.target-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.target-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, #1E1A17 0%, #2C2520 100%);
    padding: 40px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px; /* 16px → 12px */
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px; /* 40px → 24px */
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
}

/* ===== Footer ===== */
.footer {
    background: #1E1A17;
    padding: 32px 0;
    text-align: center;
}

.footer-content {
    text-align: center;
    color: #F5F0EB;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-verse {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(245, 240, 235, 0.15);
}

.footer-verse p {
    color: var(--primary-gold);
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-verse span {
    color: #F5F0EB;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.church-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.church-logo:hover {
    opacity: 1;
}

.footer-content a {
    color: #F5F0EB;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .slogan-text {
        font-size: 20px;
    }
    
    .slogan-logo {
        height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-content {
        margin-bottom: 16px;
    }
    
    .footer-verse p {
        font-size: 14px;
    }
    
    .footer-verse span {
        font-size: 12px;
    }
    
    .church-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-hero {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}