/* =============================================
   Culture Detail Page – Shared Styles
   ============================================= */

/* ── Hero ── */
.cd-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 4rem;
    position: relative;
    overflow: hidden;
}
.cd-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.cd-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.cd-shape.s1 { width: 400px; height: 400px; top: -120px; right: -80px; }
.cd-shape.s2 { width: 250px; height: 250px; bottom: -60px; left: -50px; }

.cd-breadcrumb { margin-bottom: 1.5rem; }
.cd-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,0.85);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.cd-breadcrumb a:hover { color: #fff; }

.cd-hero-body { max-width: 780px; }

.cd-category-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: .04em;
}

.cd-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    font-family: var(--font-en), 'Noto Sans KR', sans-serif;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.cd-hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cd-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* ── Main layout ── */
.cd-main { padding: 4rem 0 6rem; background: #f8f9fb; }

.cd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

/* ── Content sections ── */
.cd-section {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.cd-section h2 {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #f1f5f9;
}
.cd-section h2 i { color: #6FB7C4; font-size: 1.1rem; }
.cd-section p { color: #4b5563; line-height: 1.85; font-size: .97rem; }

/* ── Timeline ── */
.cd-timeline { display: flex; flex-direction: column; gap: 0; }
.cd-tl-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.75rem;
}
.cd-tl-item:last-child { padding-bottom: 0; }
.cd-tl-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}
.cd-tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6FB7C4;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #6FB7C4;
    flex-shrink: 0;
    margin-top: 2px;
}
.cd-tl-body { padding-top: 0; }
.cd-tl-time {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: #6FB7C4;
    background: rgba(111,183,196,.1);
    padding: .2rem .65rem;
    border-radius: 999px;
    margin-bottom: .45rem;
}
.cd-tl-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .35rem;
}
.cd-tl-body p { font-size: .875rem; color: #6b7280; line-height: 1.7; }

/* ── Include / exclude grid ── */
.cd-include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.cd-include-box {
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
}
.cd-include-box.included {
    background: rgba(111,183,196,.08);
    border: 1.5px solid rgba(111,183,196,.3);
}
.cd-include-box.excluded {
    background: rgba(239,68,68,.05);
    border: 1.5px solid rgba(239,68,68,.2);
}
.cd-include-box h4 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .9rem;
}
.cd-include-box.included h4 { color: #6FB7C4; }
.cd-include-box.excluded h4 { color: #ef4444; }
.cd-include-box ul { list-style: none; padding: 0; margin: 0; }
.cd-include-box ul li {
    font-size: .875rem;
    color: #374151;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.cd-include-box ul li:last-child { border-bottom: none; }
.cd-include-box.included li::before { content: '✓'; color: #6FB7C4; font-weight: 800; }
.cd-include-box.excluded li::before { content: '✗'; color: #ef4444; font-weight: 800; }

/* ── Info cards ── */
.cd-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.cd-info-card {
    background: #f8f9fb;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform .2s, box-shadow .2s;
}
.cd-info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.cd-info-card i {
    font-size: 1.75rem;
    color: #6FB7C4;
    margin-bottom: .65rem;
    display: block;
}
.cd-info-card h4 { font-size: .9rem; font-weight: 700; color: #111827; margin-bottom: .4rem; }
.cd-info-card p { font-size: .82rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── Notice box ── */
.cd-notice {
    background: #fffbf0;
    border: 1.5px solid #fde68a;
    border-radius: 1rem;
    padding: 1.5rem;
}
.cd-notice ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.cd-notice li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: #374151;
    line-height: 1.65;
}
.cd-notice li i { color: #f59e0b; margin-top: 3px; flex-shrink: 0; font-size: .7rem; }

/* ── Sidebar ── */
.cd-sidebar { position: sticky; top: 100px; }

.cd-booking-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.cd-price-box,
.cd-price-label,
.cd-price-amount,
.opt-price,
.ks-menu-price,
.price-highlight {
    display: none !important;
}

.cd-quick-info {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    border-bottom: 1px solid #f1f5f9;
}
.cd-quick-info li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: #374151;
}
.cd-quick-info li i { color: #6FB7C4; width: 16px; text-align: center; }

.cd-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: #FEE500;
    color: #3A1D1D;
    font-size: 1rem;
    font-weight: 800;
    padding: 1rem;
    margin: 1.25rem;
    border-radius: .875rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.cd-book-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(254,229,0,.45); }

.cd-book-note {
    text-align: center;
    font-size: .75rem;
    color: #9ca3af;
    padding: 0 1.5rem 1.25rem;
    margin: 0;
}

/* ── Other programs ── */
.cd-other-programs {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.cd-other-programs h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid #f1f5f9;
}
.cd-other-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .5rem;
    border-radius: .5rem;
    font-size: .875rem;
    color: #374151;
    text-decoration: none;
    transition: background .15s, color .15s, transform .15s;
    border-bottom: 1px solid #f9fafb;
}
.cd-other-link:last-child { border-bottom: none; }
.cd-other-link i { color: #6FB7C4; width: 18px; text-align: center; }
.cd-other-link:hover {
    background: rgba(111,183,196,.08);
    color: #6FB7C4;
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 968px) {
    .cd-hero { padding: 120px 0 3rem; min-height: auto; }
    .cd-layout { grid-template-columns: 1fr; }
    .cd-sidebar { position: static; }
    .cd-include-grid { grid-template-columns: 1fr; }
    .cd-info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .cd-section { padding: 1.5rem 1.25rem; }
    .cd-hero-title { font-size: 1.9rem; }
    .cd-hero-meta { gap: .6rem; }
    .cd-hero-meta span { font-size: .78rem; padding: .35rem .75rem; }
    .cd-info-cards { grid-template-columns: 1fr; }
    .cd-price-amount { display: none !important; }
}
