/* ===========================
   HOME CSS - Home 페이지 전용
   =========================== */

/* 히어로 섹션 */
.hero {
    padding: 100px 40px 120px;
    background-color: #f7f9fb;
    color: #0a1628;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.highlight {
    color: #2a4a90;
}

.hero-desc {
    font-size: 1.1rem;
    color: #5a6a7a;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 400px;
    height: auto;
}

/* 미션 섹션 */
.mission {
    padding: 80px 40px;
    background-color: #ffffff;
}

.mission-content {
    display: flex;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2rem;
    color: #0a1628;
    line-height: 1.4;
}

.mission-right {
    flex: 1;
}

.mission-right p {
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-stats {
    display: flex;
    gap: 40px;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    color: #2a4a90;
}

.stat span {
    font-size: 0.85rem;
    color: #5a6a7a;
}

/* 기술스택 섹션 */
.tech-stack {
    padding: 80px 40px;
    text-align: center;
    background-color: #ffffff;
}

.tech-stack h2 {
    font-size: 1.8rem;
    color: #0a1628;
    margin-bottom: 48px;
}

.stack-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 2.5rem;
}

.stack-item span {
    font-size: 0.85rem;
    color: #5a6a7a;
}

/* 프로젝트 섹션 */
.projects {
	padding: 80px 40px;
	background-color: #f7f9fb;
	text-align: center;
}

.projects h2 {
	font-size: 2rem;
	margin-bottom: 40px;
	color: #0a1628;
}

.project-grid {
	display: flex;
	justify-content: center;
	gap: 32px;
}

.project-card {
	background-color: #ffffff;
	padding: 32px;
	border-radius: 0.75rem;
	width: 300px;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.project-card h3 {
	font-size: 1.3rem;
	color: #0a1628;
	margin-bottom: 12px;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.card-image {
    height: 200px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.card-blue {
    background: linear-gradient(135deg, #2a4a90, #4a7af5);
}

.card-dark {
    background: linear-gradient(135deg, #0a1628, #1a2a40);
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

/* CTA 섹션 */
.cta {
    text-align: center;
    padding: 100px 20px;
    background-color: #0a1628;
    color: #ffffff;
}

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

.cta p {
    color: #a0b4c8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Home 모바일 대응 */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .project-grid {
        flex-direction: column;
        align-items: center;
    }

    .mission-content {
        flex-direction: column;
    }
}
