/* 춘자네명품김치 - 김치맛있는업체 Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #c0392b;
    --primary-dark: #962d22;
    --primary-light: #e74c3c;
    --accent: #d4a017;
    --accent-light: #f0c75e;
    --bg-warm: #fdf6f0;
    --bg-white: #ffffff;
    --bg-light: #faf5ef;
    --bg-section: #f8f0e8;
    --text-dark: #2c2c2c;
    --text-body: #444444;
    --text-light: #777777;
    --text-muted: #999999;
    --border: #e8ddd2;
    --border-light: #f0e6da;
    --shadow: rgba(0,0,0,0.08);
    --shadow-heavy: rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg-warm);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px var(--shadow);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 44px; width: auto; }
.site-logo .logo-text { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.site-logo .logo-sub { font-size: 12px; color: var(--text-light); }

.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a { color: var(--text-body); font-size: 15px; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
.header-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); }

.header-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.header-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* Hero */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 80px;
    text-align: center;
}
.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}
.hero-content .hero-desc {
    font-size: 18px;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--primary) !important;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    border: 2px solid #fff;
}
.btn-primary:hover { background: transparent; color: #fff !important; }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Sections */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-alt {
    background: var(--bg-section);
}
.section-alt .section {
    padding: 80px 24px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
}
.section-divider {
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.about-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-body);
}
.about-contact {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-section);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text-dark);
}

/* Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}
.blog-link-card {
    text-decoration: none;
    padding: 0;
    overflow: hidden;
    display: block;
}
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}
.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}
.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 20px 24px;
}
.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.product-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Step Grid */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}
.step-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
}
.info-table th,
.info-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}
.info-table th {
    background: var(--bg-section);
    font-weight: 600;
    color: var(--text-dark);
    width: 140px;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    text-align: center;
    padding: 60px 24px;
}
.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
}
.cta-phone {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: #aaa;
    padding: 40px 24px;
    text-align: center;
    font-size: 13px;
    line-height: 2;
}
.site-footer strong { color: #ddd; }

/* Blog / Post Styles */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}
.post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.post-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}
.post-meta {
    font-size: 13px;
    color: var(--text-muted);
}
.post-featured-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.post-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
}
.post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}
.post-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 12px;
}
.post-content p {
    margin-bottom: 16px;
}
.post-content ul, .post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.post-content li {
    margin-bottom: 8px;
}
.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.post-content table th,
.post-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 14px;
}
.post-content table th {
    background: var(--bg-section);
    font-weight: 600;
}
.post-content .highlight-box {
    background: linear-gradient(135deg, #fff5f5, #fff0eb);
    border: 1px solid #f0d0c0;
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.post-content .info-box {
    background: var(--bg-section);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content .checklist {
    list-style: none;
    padding-left: 0;
}
.post-content .checklist li {
    padding-left: 28px;
    position: relative;
}
.post-content .checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    background: var(--bg-warm);
}

/* Blog List */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 20px;
}
.blog-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .hero-content h1 { font-size: 28px; }
    .hero-content { padding: 60px 20px 50px; }
    .hero-content .hero-desc { font-size: 15px; }
    .section { padding: 48px 16px; }
    .section-title { font-size: 24px; }
    .about-layout { grid-template-columns: 1fr; gap: 24px; }
    .about-img { height: 280px; }
    .card-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .step-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-phone { font-size: 24px; }
    .post-title { font-size: 22px; }
    .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .step-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
