mingle-website/css/common.css

730 lines
15 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* ========================================
CSS 변수 정의 - 모션캡쳐/버튜버 테마
======================================== */
:root {
/* 메인 색상 - 오렌지 계열 */
--primary-color: #ff8800;
--primary-hover: #ff6600;
--secondary-color: #ff9933;
--secondary-hover: #ff7700;
--accent-color: #ffaa44;
/* 네온/하이테크 색상 - 오렌지 계열 */
--neon-purple: #ff6600;
--neon-blue: #ff8800;
--neon-pink: #ff9933;
--gradient-main: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
--gradient-warm: linear-gradient(120deg, #fff7ed 60%, #ffe0b2 100%);
/* 텍스트 색상 */
--text-primary: #222222;
--text-secondary: #666666;
--text-light: #999999;
--text-white: #ffffff;
/* 배경 색상 */
--bg-white: #ffffff;
--bg-light: #f8fafc;
--bg-gray: #f3f4f6;
--bg-dark: #1a1a2e;
/* 간격 시스템 */
--spacing-xs: 0.25rem;
--spacing-sm: 0.5rem;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--spacing-2xl: 3rem;
--spacing-3xl: 5rem;
/* 폰트 크기 */
--font-xs: 0.75rem;
--font-sm: 0.875rem;
--font-base: 1rem;
--font-lg: 1.1rem;
--font-xl: 1.25rem;
--font-2xl: 1.5rem;
--font-3xl: 2rem;
--font-4xl: 2.5rem;
--font-5xl: 3.5rem;
/* 기타 */
--border-radius: 15px;
--border-radius-sm: 8px;
--border-radius-full: 50px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
--box-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
--navbar-height: 70px;
}
/* ========================================
기본 스타일 리셋
======================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-light);
overflow-x: hidden;
padding-top: var(--navbar-height);
}
/* ========================================
공통 레이아웃
======================================== */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 var(--spacing-lg);
}
.section {
padding: var(--spacing-3xl) 0;
}
.section-header {
text-align: center;
margin-bottom: var(--spacing-2xl);
}
.section-header h1,
.section-header h2 {
font-size: var(--font-4xl);
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
position: relative;
display: inline-block;
}
.section-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--gradient-main);
border-radius: 2px;
}
.section-header p {
font-size: var(--font-lg);
color: var(--text-secondary);
max-width: 800px;
margin: 0 auto;
}
/* ========================================
네비게이션 바
======================================== */
.navbar {
position: fixed;
top: 0;
width: 100%;
height: var(--navbar-height);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: var(--spacing-md) 0;
transition: var(--transition);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-lg);
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
display: flex;
align-items: center;
gap: var(--spacing-sm);
}
.nav-logo a {
display: flex;
align-items: center;
gap: var(--spacing-sm);
text-decoration: none;
}
.nav-logo img {
height: 40px;
width: auto;
}
.nav-logo span {
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-color);
white-space: nowrap;
letter-spacing: 0.01em;
}
.nav-menu {
display: flex;
list-style: none;
gap: var(--spacing-xl);
}
.nav-link {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
padding: var(--spacing-sm) var(--spacing-md);
border-radius: var(--border-radius-full);
transition: var(--transition);
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--primary-color);
transition: var(--transition);
transform: translateX(-50%);
}
.nav-link:hover::after {
width: 80%;
}
.nav-link:hover {
color: var(--primary-color);
}
.nav-link.active {
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
color: var(--text-white);
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.hamburger span {
width: 25px;
height: 3px;
background-color: var(--text-primary);
margin: 3px 0;
transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}
/* ========================================
푸터
======================================== */
.footer {
background-color: var(--text-primary);
color: var(--bg-white);
padding: var(--spacing-2xl) 0 var(--spacing-xl);
margin-top: var(--spacing-3xl);
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-2xl);
margin-bottom: var(--spacing-2xl);
}
.footer-section h3,
.footer-section h4 {
margin-bottom: var(--spacing-md);
color: var(--bg-white);
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: var(--spacing-sm);
}
.footer-section a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}
.footer-section a:hover {
color: var(--primary-color);
}
.social-links {
display: flex;
gap: var(--spacing-md);
}
.footer-bottom {
text-align: center;
padding-top: var(--spacing-xl);
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.6);
}
/* ========================================
버튼 스타일
======================================== */
.btn {
display: inline-block;
padding: var(--spacing-md) var(--spacing-xl);
font-size: var(--font-base);
font-weight: 600;
text-decoration: none;
border-radius: var(--border-radius-full);
transition: var(--transition);
cursor: pointer;
border: none;
outline: none;
position: relative;
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
width: 300px;
height: 300px;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
color: var(--text-white);
box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
}
.btn-secondary {
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
color: var(--text-white);
box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}
.btn-secondary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--primary-color);
color: var(--primary-color);
}
.btn-outline:hover {
background-color: var(--primary-color);
color: var(--bg-white);
}
/* ========================================
카드 스타일
======================================== */
.card {
background-color: var(--bg-white);
border-radius: var(--border-radius);
padding: var(--spacing-xl);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 136, 0, 0.05), transparent);
transition: left 0.5s;
}
.card:hover::before {
left: 100%;
}
.card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
/* ========================================
그리드 시스템
======================================== */
.grid {
display: grid;
gap: var(--spacing-xl);
}
.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.grid-4 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
/* ========================================
유틸리티 클래스
======================================== */
.text-center {
text-align: center;
}
.text-primary {
color: var(--primary-color);
}
.bg-light {
background-color: var(--bg-light);
}
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }
/* ========================================
브레드크럼 네비게이션
======================================== */
.breadcrumb {
padding: var(--spacing-md) 0;
background: var(--bg-light);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb-list {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-xs);
list-style: none;
margin: 0;
padding: 0;
font-size: var(--font-sm);
}
.breadcrumb-item {
display: flex;
align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
content: '';
margin: 0 var(--spacing-xs);
color: var(--text-secondary);
font-weight: 600;
}
.breadcrumb-link {
color: var(--text-secondary);
text-decoration: none;
transition: var(--transition);
padding: var(--spacing-xs) var(--spacing-sm);
border-radius: var(--border-radius);
}
.breadcrumb-link:hover {
color: var(--primary-color);
background: rgba(255, 136, 0, 0.1);
}
.breadcrumb-current {
color: var(--text-primary);
font-weight: 600;
padding: var(--spacing-xs) var(--spacing-sm);
}
.breadcrumb-home {
font-size: 1.1em;
}
/* ========================================
로딩 상태
======================================== */
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(255, 255, 255, 0.95);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.3s ease;
}
.loading-spinner {
width: 50px;
height: 50px;
border: 4px solid #f3f4f6;
border-top: 4px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: var(--spacing-md);
}
.loading-text {
color: var(--text-secondary);
font-size: var(--font-base);
font-weight: 500;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.component-loading {
display: flex;
justify-content: center;
align-items: center;
padding: var(--spacing-2xl);
background: var(--bg-light);
border-radius: var(--border-radius);
min-height: 200px;
}
.component-loading .loading-spinner {
width: 30px;
height: 30px;
border-width: 3px;
margin-bottom: var(--spacing-sm);
}
.component-loading .loading-text {
font-size: var(--font-sm);
}
/* ========================================
반응형 디자인
======================================== */
@media (max-width: 768px) {
.navbar {
padding: var(--spacing-sm) 0;
}
.nav-menu {
position: fixed;
left: -100%;
top: var(--navbar-height);
flex-direction: column;
background-color: var(--bg-white);
width: 100%;
text-align: center;
transition: var(--transition);
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
padding: var(--spacing-xl) 0;
z-index: 999;
}
.nav-menu.active {
left: 0;
}
.hamburger {
display: flex;
}
.grid-2,
.grid-3,
.grid-4 {
grid-template-columns: 1fr;
gap: var(--spacing-lg);
}
.section {
padding: var(--spacing-2xl) 0;
}
.section-header h1,
.section-header h2 {
font-size: var(--font-3xl);
}
.section-header p {
font-size: var(--font-base);
margin-bottom: var(--spacing-lg);
}
.btn {
padding: var(--spacing-md) var(--spacing-lg);
font-size: var(--font-sm);
}
.btn-lg {
padding: var(--spacing-lg) var(--spacing-xl);
font-size: var(--font-base);
}
.cta-buttons {
flex-direction: column;
align-items: center;
gap: var(--spacing-md);
}
.cta-buttons .btn {
width: 100%;
max-width: 280px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 var(--spacing-md);
}
.section {
padding: var(--spacing-xl) 0;
}
.section-header h1,
.section-header h2 {
font-size: var(--font-2xl);
}
.section-header p {
font-size: var(--font-sm);
}
}
/* ========================================
플로팅 SNS 버튼
======================================== */
.floating-sns {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 9000;
}
.sns-btn {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.sns-btn:hover {
transform: translateY(-3px) scale(1.1);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.sns-btn svg {
width: 24px;
height: 24px;
fill: white;
}
/* X (Twitter) 버튼 */
.sns-btn-x {
background: #000000;
}
.sns-btn-x:hover {
background: #333333;
}
/* YouTube 버튼 */
.sns-btn-youtube {
background: #FF0000;
}
.sns-btn-youtube:hover {
background: #cc0000;
}
/* 모바일 반응형 */
@media (max-width: 768px) {
.floating-sns {
bottom: 20px;
right: 20px;
gap: 10px;
}
.sns-btn {
width: 45px;
height: 45px;
}
.sns-btn svg {
width: 20px;
height: 20px;
}
}