@charset "UTF-8";

/* ==================== */
/* CSS Variables        */
/* ==================== */
:root {
	/* Colors */
	--primary: #05D;
	--primary-dark: #0044BB;
	--secondary: #957E62;
	--black: #1F1F1F;
	--white: #FFFFFF;
	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1E293B;
	--gray-900: #0F172A;

	/* Text Colors */
	--text-primary: #000000;
	--text-secondary: #1F1F1F;
	--text-tertiary: rgba(0, 0, 0, 0.50);
	--text-white: #FFFFFF;
	--text-white-secondary: rgba(255, 255, 255, 0.70);

	/* Spacing */
	--header-height: 80px;

	/* Border Radius */
	--radius-sm: 10px;
	--radius-md: 15px;
	--radius-lg: 20px;
	--radius-xl: 30px;
	--radius-2xl: 200px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* ==================== */
/* Reset & Base         */
/* ==================== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-primary);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none !important;
	color: inherit;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	border: none;
	outline: none;
}

/* ==================== */
/* Layout               */
/* ==================== */
.wrap {
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}

.inner-wrap {
	width: 100%;
	max-width: calc(100% - 280px);
	margin: 0 auto;
}

/* Section Common */
section {
	position: relative;
}

.section-title {
	font-family: 'Eurostile', 'Pretendard', sans-serif;
	font-size: 48px;
	font-weight: 900;
	color: var(--text-primary);
	text-transform: uppercase;
}

.section-title.white {
	color: var(--white);
}

.section-desc {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ==================== */
/* Utility Classes      */
/* ==================== */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 1200px) {
	.inner-wrap {
		max-width: calc(100% - 60px);
		padding: 0 30px;
	}

	.section-title {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {
	:root {
		--header-height: 70px;
	}

	.inner-wrap {
		max-width: 100%;
		padding: 0 24px;
	}

	.section-title {
		font-size: 36px;
	}

	.section-desc {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 60px;
	}

	.inner-wrap {
		max-width: 100%;
		padding: 0 20px;
	}

	.section-title {
		font-size: 28px;
	}

	.section-desc {
		font-size: 15px;
	}
}
