﻿:root {
  --ink: #1f2a37;
  --ink-soft: #445166;
  --brand: #0f6f5c;
  --brand-light: #d8efe9;
  --accent: #f7b731;
  --bg: #f4f6f8;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 15%, #f8fffd 0%, #f2f7f6 40%, #edf2f4 100%);
  min-height: 100vh;
}

.site-header {
  background: linear-gradient(135deg, #e8f5f2 0%, #fef7e6 55%, #f5f5f5 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.nav-link {
  color: var(--ink-soft);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--brand);
}

.hero {
  padding: 2rem 0 3rem;
}

.hero-eyebrow {
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.site-main {
  padding: 2rem 0 4rem;
}

.card-panel {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.badge-soft {
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  display: inline-block;
}

.table-custom {
  font-size: 0.95rem;
}

.table-custom thead th {
  background: #f7faf9;
  font-weight: 700;
}

.search-form input,
.search-form select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  border: none;
}

.btn-brand:hover {
  background: #0d5c4c;
  color: #fff;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 0;
}

.site-footer h4,
.site-footer h5 {
  color: #fff;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero {
    padding-bottom: 2rem;
  }
}
