/**
 * ShawGlobal Theme - 自定义样式
 * 
 * 这个文件包含所有自定义 CSS 样式
 */

/* ============================================
   透明头部 + 滚动效果
   ============================================ */
.site-header {
	transition: all 0.3s ease;
}

.site-header.scrolled {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   项目卡片样式
   ============================================ */
.project-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ============================================
   信息卡片样式
   ============================================ */
.info-card {
	border-radius: 8px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   返回顶部按钮
   ============================================ */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 999;
}

.back-to-top:hover {
	background: #555;
	transform: translateY(-3px);
}

.back-to-top.show {
	display: flex;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 768px) {
	.site-header {
		padding: 15px 0;
	}
	
	.back-to-top {
		width: 45px;
		height: 45px;
		bottom: 20px;
		right: 20px;
	}
}

