/* XAV 자브 - 30대 결혼식 하객룩 가방 커스텀 스타일 */
/* 디자인패턴: 클래식 올리브 (classic-olive) */

:root {
    --xav-olive: #556B2F;
    --xav-olive-light: #6B8E23;
    --xav-olive-dark: #3B4A1F;
    --xav-cream: #FDFBF5;
    --xav-warm-gray: #8B8878;
    --xav-gold: #B8860B;
    --xav-text: #2C2C2C;
    --xav-text-light: #5A5A5A;
    --xav-border: #D4CDB8;
    --xav-bg-section: #F5F2EB;
}

/* 전체 레이아웃 */
body.xav-landing {
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
    color: var(--xav-text);
    background: var(--xav-cream);
    line-height: 1.8;
}

/* 히어로 섹션 */
.xav-hero {
    background: linear-gradient(135deg, var(--xav-olive-dark) 0%, var(--xav-olive) 50%, var(--xav-olive-light) 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}
.xav-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.xav-hero .xav-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}
.xav-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* 컨텐츠 래퍼 */
.xav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 공통 */
.xav-section {
    padding: 60px 0;
}
.xav-section:nth-child(even) {
    background: var(--xav-bg-section);
}
.xav-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--xav-olive-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.xav-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--xav-gold);
    margin: 12px auto 0;
}

/* 카드 그리드 */
.xav-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.xav-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--xav-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.xav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.xav-card h3 {
    color: var(--xav-olive);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.xav-card p {
    color: var(--xav-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 이미지 카드 */
.xav-img-card {
    overflow: hidden;
    padding: 0;
}
.xav-img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.xav-img-card .xav-card-body {
    padding: 20px 24px;
}

/* 체크리스트 */
.xav-checklist {
    list-style: none;
    padding: 0;
}
.xav-checklist li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--xav-border);
    font-size: 0.95rem;
}
.xav-checklist li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    color: var(--xav-olive);
    font-weight: 700;
    font-size: 1.1rem;
}

/* 팁 박스 */
.xav-tip-box {
    background: linear-gradient(to right, var(--xav-olive), var(--xav-olive-light));
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}
.xav-tip-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.xav-tip-box p {
    opacity: 0.95;
    font-size: 0.95rem;
}

/* FAQ 아코디언 */
.xav-faq-item {
    border: 1px solid var(--xav-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.xav-faq-question {
    padding: 18px 50px 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--xav-olive-dark);
    position: relative;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.xav-faq-question:hover {
    background: var(--xav-bg-section);
}
.xav-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--xav-olive);
    transition: transform 0.3s;
}
.xav-faq-item.active .xav-faq-question::after {
    content: '−';
}
.xav-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.xav-faq-item.active .xav-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}
.xav-faq-answer p {
    color: var(--xav-text-light);
    font-size: 0.93rem;
    line-height: 1.8;
}

/* CTA 배너 */
.xav-cta {
    background: var(--xav-olive-dark);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.xav-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.xav-cta-btn {
    display: inline-block;
    background: var(--xav-gold);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    margin-top: 15px;
}
.xav-cta-btn:hover {
    background: #D4A017;
    color: #fff;
}

/* 푸터 */
.xav-footer {
    background: #2C2C2C;
    color: #999;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 2;
}
.xav-footer a {
    color: var(--xav-olive-light);
    text-decoration: none;
}

/* 글 목록 */
.xav-post-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.xav-post-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--xav-border);
    transition: transform 0.2s;
}
.xav-post-item:hover {
    transform: translateY(-3px);
}
.xav-post-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.xav-post-item .xav-post-info {
    padding: 20px;
}
.xav-post-item h3 {
    font-size: 1rem;
    color: var(--xav-olive-dark);
    margin-bottom: 8px;
}
.xav-post-item p {
    font-size: 0.88rem;
    color: var(--xav-text-light);
}
.xav-post-item a {
    color: var(--xav-olive);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* 테이블 */
.xav-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.93rem;
}
.xav-table th {
    background: var(--xav-olive);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.xav-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--xav-border);
}
.xav-table tr:nth-child(even) {
    background: var(--xav-bg-section);
}

/* 탭 네비게이션 */
.xav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--xav-border);
    margin-bottom: 30px;
}
.xav-tab {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--xav-text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.xav-tab.active, .xav-tab:hover {
    color: var(--xav-olive);
    border-bottom-color: var(--xav-olive);
}
.xav-tab-content {
    display: none;
}
.xav-tab-content.active {
    display: block;
}

/* 반응형 */
@media (max-width: 768px) {
    .xav-hero { padding: 50px 16px; }
    .xav-hero h1 { font-size: 1.6rem; }
    .xav-section { padding: 40px 0; }
    .xav-section-title { font-size: 1.3rem; }
    .xav-card-grid { grid-template-columns: 1fr; }
    .xav-tabs { flex-wrap: wrap; }
    .xav-tab { padding: 10px 16px; font-size: 0.85rem; }
}

/* 워드프레스 글 본문 스타일 */
.entry-content .xav-article-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.entry-content .xav-article-wrap h2 {
    color: var(--xav-olive-dark);
    font-size: 1.4rem;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--xav-border);
}
.entry-content .xav-article-wrap h3 {
    color: var(--xav-olive);
    font-size: 1.15rem;
    margin: 28px 0 12px;
}
.entry-content .xav-article-wrap p {
    color: var(--xav-text);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}
.entry-content .xav-article-wrap img {
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.entry-content .xav-article-wrap blockquote {
    border-left: 4px solid var(--xav-olive);
    padding: 16px 24px;
    background: var(--xav-bg-section);
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--xav-text-light);
}
