:root {
	--tech-blue: #007BFF;
	--dark-navy: #1A1F36;
	--white: #ffffff;
}

body {
	font-family: 'Segoe UI', sans-serif;
}

.navbar {
	background-color: var(--dark-navy);
}

.navbar a.navbar-item {
	color: white;
}

.navbar a.navbar-item:hover {
	background-color: var(--tech-blue);
	color: white;
}

.navbar-menu {
	background-color: #1A1F36;
	/* 다크 네이비 배경 */
}

.navbar-item,
.navbar-link {
	color: #ffffff !important;
	/* 흰색 텍스트 */
}

.navbar-burger span {
	background-color: #ffffff !important;
	/* 햄버거 아이콘 흰색 */
}

.section-title {
	margin-bottom: 1.5rem;
}

.footer {
	padding: 3rem 1.5rem 2rem;
}

.footer.footer {
	background-color: #1A1F36;
}

.footer-title {
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 10px;
}

.footer-logo {
	height: 38px;
	width: auto;
}

.footer-description {
	color: #b0b0b0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.footer-menu-title {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.footer a {
	color: #b0b0b0;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s;
}

.footer a:hover {
	color: #00bfff;
	/* 밝은 블루톤 호버 */
}

.footer-contact {
	color: #b0b0b0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.hero {
	//background-color: var(--tech-blue);
	color: white !important;
}

.hero .hero-body {
	color: white;
}

.custom-hero-height {
	height: 25vh;
	/* 화면 높이의 1/4 */
	min-height: 200px;
	/* 너무 작을 경우 대비 */
}

.hero .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.hero .hero-background .background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}

.hero .hero-body {
	position: relative;
	z-index: 1;
}

.service-card {
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-card:hover {
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 배경 컬러 커스텀 */
.has-background-lightest {
	background-color: #FAFBFC;
	/* 연한 그레이+블루 */
}

.has-background-lightblue {
	background-color: #F5F7FA;
	/* 카드 배경 */
}

#support { background-color:gold; }
#about { background-color:#36341a; color:white; }

#qrcode { width:80px; height:80px; }

#kakao-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	padding: 0.75rem 1.25rem;
	background-color: #FEE500;
	color: #3C1E1E;
	border: none;
	font-size: 1rem;
	display: flex;
	align-items: center;
}