
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f5f5f5;
}

/* 네비게이션 바 스타일 */
.navbar {
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.bg-dark.text-white {
    transition: all 0.3s ease;
}

.bg-dark.text-white:hover {
    background-color: #495057 !important;
}

.category-map {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 배너 슬라이더 스타일 */
.banner-slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.carousel-inner {
    border-radius: 15px;
}

.banner-content {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 40px;
}

.banner-content img {
    max-height: 300px;
    width: auto;
    object-fit: contain;
}

.banner-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.banner-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.banner-text {
    max-width: 800px;
    text-align: center;
}

.banner-text h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 18px;
}

.banner-features li {
    padding: 8px 0;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .banner-features {
        font-size: 15px;
    }
}

.category-card {
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    min-height: 280px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    z-index: 1;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.category-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.card-badges {
    padding: 15px 15px 0;
}

.card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    color: white;
}

.badge-green {
    background-color: #28a745;
}

.badge-blue {
    background-color: #007bff;
}

.badge-red {
    background-color: #dc3545;
}

.badge-yellow {
    background-color: #ffc107;
    color: #000;
}

.badge-gray {
    background-color: #6c757d;
}

.card-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.card-title-main {
    font-size: 32px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-footer-info {
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.card-date {
    font-size: 14px;
    color: white;
    text-align: center;
    margin: 0;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.category-items li {
    padding: 5px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.legend {
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-color {
    width: 40px;
    height: 4px;
    margin-right: 10px;
    border-radius: 2px;
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #495057;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    background: none;
    border-bottom: 3px solid #007bff;
}

.nav-tabs .nav-link:hover {
    color: #007bff;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8ba674;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    position: relative;
}
.section-link {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
.section-link:hover {
    color: #007bff;
}
.section-link svg {
    width: 20px;
}