/* 전주/전북 스타일 폐차장 디자인 - 전통과 현대의 조화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 전북 전통 색상 팔레트 */
    --primary-color: #2C5F2D;      /* 한옥 청록색 */
    --secondary-color: #3A7D44;    /* 전통 녹색 */
    --accent-color: #C62828;       /* 전주 비빔밥 빨강 */
    --success-color: #4CAF50;      /* 밝은 녹색 */
    --warning-color: #FF9800;      /* 황토색 */
    --danger-color: #D32F2F;       /* 진한 빨강 */
    --hanok-brown: #8B6914;        /* 한옥 갈색 */
    --hanok-beige: #D4A574;        /* 한옥 베이지 */
    --text-dark: #2C3E2F;          /* 짙은 녹색 계열 텍스트 */
    --text-light: #5D7060;         /* 연한 녹색 계열 텍스트 */
    --bg-light: #F5F8F5;           /* 연한 녹색 배경 */
    --bg-white: #ffffff;
    --bg-cream: #FFF8DC;           /* 크림색 배경 */
    --border-color: #C8D5C9;       /* 은은한 녹색 보더 */
    --shadow-sm: 0 2px 4px 0 rgba(44, 95, 45, 0.08);
    --shadow: 0 4px 8px -1px rgba(44, 95, 45, 0.12), 0 2px 6px -1px rgba(44, 95, 45, 0.08);
    --shadow-lg: 0 10px 20px -3px rgba(44, 95, 45, 0.15), 0 4px 8px -2px rgba(44, 95, 45, 0.08);
    --shadow-xl: 0 20px 30px -5px rgba(44, 95, 45, 0.18), 0 10px 15px -5px rgba(44, 95, 45, 0.10);
    --border-radius: 8px;          /* 한옥의 부드러운 곡선 */
    --border-radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --hanok-curve: cubic-bezier(0.34, 1.56, 0.64, 1);  /* 한옥 지붕 곡선 */
}

body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 헤더 스타일 - 전주 한옥 테마 */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-bottom: 3px solid var(--hanok-brown);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px),
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
    pointer-events: none;
}

.navbar {
    padding: 1rem 0;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.nav-brand a:hover {
    color: var(--hanok-beige);
    transform: scale(1.02);
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: var(--warning-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--warning-color);
    transition: width 0.3s var(--hanok-curve);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--hanok-beige);
    background: rgba(37, 99, 235, 0.1);
}

/* 메인 콘텐츠 */
main {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* 페이지 헤더 - 한옥 지붕 스타일 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--hanok-brown) 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 80px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 0, -100px 0, 80px 0; }
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #ffffff, var(--hanok-beige));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* 카드 스타일 - 한옥 창호문 테마 */
.card {
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-cream));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--hanok-brown);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(44,95,45,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-left-color: var(--accent-color);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(44,95,45,0.3);
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* 섹션 스타일 */
.section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--hanok-brown), var(--warning-color), var(--hanok-brown));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 그리드 레이아웃 */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* 회사 소개 섹션 */
.company-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.company-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.company-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.company-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.company-highlight i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.company-highlight h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* 타임라인 스타일 */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* 핵심 가치 카드 */
.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* 경영진 카드 */
.management-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.management-avatar {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.management-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.management-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.management-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.management-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* 사업자 정보 카드 */
.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: 2rem;
    margin: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* 푸터 - 한옥 기와 지붕 테마 */
.footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, var(--hanok-brown) 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, 
        var(--primary-color) 0%, 
        var(--hanok-brown) 25%, 
        var(--warning-color) 50%, 
        var(--hanok-brown) 75%, 
        var(--primary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 60px);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--hanok-beige);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--warning-color);
    width: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
}

/* 햄버거 메뉴 스타일 - 전북 테마 */
.hamburger {
    display: none !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    z-index: 1002 !important;
    position: relative !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    transition: var(--transition) !important;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--warning-color) !important;
}

.hamburger span {
    width: 25px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    margin: 3px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
    display: block !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* 모바일 메뉴 */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    gap: 0;
    z-index: 1001;
}

.nav-menu.mobile-active .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.nav-menu.mobile-active .nav-link:last-child {
    border-bottom: none;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* 모바일 페이지 헤더 완전 통일 스타일 */
    .page-header h1,
    .hero-banner h1,
    .hero-text h1,
    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }
    
    .page-header p,
    .hero-banner p,
    .hero-text p,
    .hero p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        opacity: 0.9 !important;
    }
    
    .company-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline::before {
        left: 0.75rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -0.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-section {
        padding: 2rem 0;
        border-radius: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   전북 전통 스타일 추가 요소
======================================== */

/* 버튼 스타일 - 전북 테마 */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(44,95,45,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44,95,45,0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #B71C1C);
    color: white;
    box-shadow: 0 4px 12px rgba(198,40,40,0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198,40,40,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* 링크 스타일 - 전북 테마 */
a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* 전통 문양 장식 클래스 */
.hanok-pattern {
    position: relative;
}

.hanok-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--hanok-brown) 25%, 
        var(--warning-color) 50%, 
        var(--hanok-brown) 75%, 
        transparent 100%);
}

/* 전주 비빔밥 색상 강조 */
.jeonju-accent {
    background: linear-gradient(to right, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--warning-color) 50%, 
        var(--accent-color) 75%, 
        var(--hanok-brown) 100%);
    height: 4px;
    border-radius: 2px;
}

/* 한옥 곡선 장식 */
.hanok-curve-top {
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
}

.hanok-curve-bottom {
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
}

/* 전통 그림자 효과 */
.hanok-shadow {
    box-shadow: 
        0 4px 6px rgba(44,95,45,0.1),
        0 8px 15px rgba(44,95,45,0.1),
        0 12px 25px rgba(44,95,45,0.1);
}

/* 전북 배지 스타일 */
.badge-jeonbuk {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(44,95,45,0.2);
}

/* 전통 테두리 */
.hanok-border {
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--hanok-brown);
    border-radius: var(--border-radius);
}

/* 애니메이션 - 한옥 지붕 흔들림 효과 */
@keyframes hanokShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(0.5deg); }
    75% { transform: rotate(-0.5deg); }
}

.hanok-shake:hover {
    animation: hanokShake 0.5s ease-in-out;
}

/* 전통 격자 패턴 배경 */
.hanok-grid-bg {
    background-image: 
        linear-gradient(rgba(44,95,45,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44,95,45,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 전주 비빔밥 그라데이션 텍스트 */
.jeonju-gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--warning-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* 한옥 호버 효과 */
.hanok-hover {
    transition: all 0.4s var(--hanok-curve);
}

.hanok-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}