/* 전역 스타일 */
* {
    box-sizing: border-box;
}

/* 섹션 애니메이션 효과 */
section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 섹션 애니메이션 딜레이 */
section:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2) { animation-delay: 0.4s; }
section:nth-child(3) { animation-delay: 0.6s; }
section:nth-child(4) { animation-delay: 0.8s; }

/* 기술스택 카드 호버 효과 */
.hover\:shadow-lg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:shadow-lg:hover {
    transform: translateY(-5px);
}

/* 기술스택 태그 호버 효과 */
.flex span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flex span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 프로젝트 카드 호버 효과 */
.bg-gray-50 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-gray-50:hover {
    transform: translateY(-5px);
    background-color: rgba(249, 250, 251, 0.9);
}

/* 연락처 링크 호버 효과 */
.hover\:text-teal-600 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:text-teal-600:hover {
    transform: translateX(5px);
}

/* 폼 입력 필드 포커스 효과 */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

/* 버튼 호버 효과 */
button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}