/* 유레카 이야기 페이지 스타일 */

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #06553f 0%, #306036 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 160px auto;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* 소개 섹션 */
.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.highlight {
    color: #06553f;
    font-size: 32px;
}

.intro-text {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* 특징 그리드 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 85, 63, 0.15);
    border-color: #fde68a;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* 역사 박스 */
.history-box {
    background: linear-gradient(135deg, #06553f 0%, #306036 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.history-text {
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.history-text strong {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

/* 이미지 섹션 */
.image-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.magazine-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 왜 유레카인가 섹션 */
.why-section {
    padding: 80px 20px;
    background-color: #fff;
}

.section-title-center {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.title-icon {
    color: #06553f;
    margin-right: 10px;
}

/* 이유 리스트 */
.reason-list {
    max-width: 900px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid transparent;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(6, 85, 63, 0.15);
    border-left-color: #fde68a;
}

.reason-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06553f 0%, #306036 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.reason-content {
    flex: 1;
}

.reason-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
}

.reason-content p:last-child {
    margin-bottom: 0;
}

.reason-highlight {
    color: #06553f;
    font-weight: 600;
}

/* 슬로건 섹션 */
.slogan-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #abd1c8 0%, #122214 100%);
}

.slogan-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.slogan-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.slogan-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .intro-section,
    .why-section,
    .slogan-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .highlight {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .history-box {
        padding: 30px 20px;
    }
    
    .history-text {
        font-size: 18px;
    }
    
    .history-text strong {
        font-size: 20px;
    }
    
    .section-title-center {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .reason-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .reason-content {
        text-align: center;
    }
    
    .reason-content p {
        font-size: 15px;
    }
    
    .slogan-text {
        font-size: 22px;
    }
    
    .slogan-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .intro-section,
    .why-section,
    .slogan-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .reason-item {
        padding: 20px;
    }
    
    .slogan-text {
        font-size: 20px;
    }
    
    .slogan-subtitle {
        font-size: 16px;
    }
}


/* 히어로 섹션 배경 이미지 */
.hero-section-bg {
    background: url('/images/company.png') no-repeat center center;
    background-size: cover;
}
