/* 
 * Shadcn-UI Zinc Theme - 가장 인기 있는 현대적 테마
 * 2024년 기준 가장 많이 사용되는 미니멀 디자인 테마
 * 적용: PHP 프로젝트에서 사용 가능한 CSS 변수 시스템
 */

:root {
  /* Zinc 기본 색상 팔레트 */
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  /* 의미론적 색상 */
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  
  /* Primary 색상 (Zinc 기반) */
  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;
  
  /* Secondary 색상 */
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  
  /* Muted 색상 */
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  
  /* Accent 색상 */
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  
  /* 상태 색상 */
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --success: 142.1 76.2% 36.3%;
  --success-foreground: 0 0% 98%;
  --warning: 47.9 95.8% 53.1%;
  --warning-foreground: 240 5.9% 10%;
  --info: 221.2 83.2% 53.3%;
  --info-foreground: 0 0% 98%;
  
  /* 경계선 및 입력 */
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 240 5.9% 10%;
  
  /* 그림자 */
  --shadow: 220 43% 11%;
  
  /* 반지름 */
  --radius: 0.5rem;
}

/* 다크 모드 */
.dark {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  
  --primary: 0 0% 98%;
  --primary-foreground: 240 5.9% 10%;
  
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --success: 142.1 70.6% 45.3%;
  --success-foreground: 0 0% 98%;
  --warning: 47.9 95.8% 53.1%;
  --warning-foreground: 240 5.9% 10%;
  --info: 217.2 91.2% 59.8%;
  --info-foreground: 0 0% 98%;
  
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 240 4.9% 83.9%;
}

/* 기본 요소 스타일링 */
* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-feature-settings: "rlig" 1, "calt" 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/* 카드 컴포넌트 */
.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* 버튼 컴포넌트 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

.btn-destructive {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

.btn-success {
  background-color: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

/* 입력 컴포넌트 */
.input {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

/* 알림 컴포넌트 */
.alert {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  padding: 1rem;
  margin: 1rem 0;
}

.alert-success {
  background-color: hsl(var(--success) / 0.1);
  border-color: hsl(var(--success));
  color: hsl(var(--success));
}

.alert-warning {
  background-color: hsl(var(--warning) / 0.1);
  border-color: hsl(var(--warning));
  color: hsl(var(--warning-foreground));
}

.alert-error {
  background-color: hsl(var(--destructive) / 0.1);
  border-color: hsl(var(--destructive));
  color: hsl(var(--destructive));
}

.alert-info {
  background-color: hsl(var(--info) / 0.1);
  border-color: hsl(var(--info));
  color: hsl(var(--info));
}

/* 네비게이션 바 */
.navbar {
  background-color: hsl(var(--background) / 0.95);
  border-bottom: 1px solid hsl(var(--border));
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: hsl(var(--foreground));
  font-weight: 600;
  text-decoration: none;
}

.navbar-nav a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-nav a:hover {
  color: hsl(var(--foreground));
}

/* 테이블 */
.table {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.table th {
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

.table td {
  padding: 0.75rem;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover {
  background-color: hsl(var(--muted) / 0.5);
}

/* 모달/팝오버 */
.modal {
  background-color: hsl(var(--popover));
  color: hsl(var(--popover-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 프로그레스 바 */
.progress {
  background-color: hsl(var(--muted));
  border-radius: var(--radius);
  overflow: hidden;
  height: 0.5rem;
}

.progress-bar {
  background-color: hsl(var(--primary));
  height: 100%;
  transition: width 0.3s ease;
}

/* 파일 업로드 영역 */
.file-upload {
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
  background-color: hsl(var(--muted) / 0.5);
}

.file-upload:hover,
.file-upload.dragover {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.05);
}

.file-upload-text {
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* 반응형 브레이크포인트 */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .card {
    margin: 0.5rem;
  }
}

/* 다크 모드 토글 */
.dark-mode-toggle {
  background: none;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: hsl(var(--foreground));
  transition: all 0.2s;
}

.dark-mode-toggle:hover {
  background-color: hsl(var(--muted));
}

/* 포커스 스타일 */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: hsl(var(--ring));
  ring-offset: 2px;
}

/* 스크롤바 스타일링 (Webkit 기반 브라우저) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground) / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

/* 애니메이션 */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in 0.3s ease-out;
}

/* 유틸리티 클래스 */
.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-success {
  color: hsl(var(--success));
}

.text-warning {
  color: hsl(var(--warning-foreground));
}

.text-error {
  color: hsl(var(--destructive));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.border {
  border: 1px solid hsl(var(--border));
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}