@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

:root {
    --background-panel: var(--linearBackground);
    --foreground-panel: var(--bodyColor);
}

main {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: normal;
}

/* Page Layout */
.page {
    padding-top: 40px;
    padding-bottom: 60px;
    color: var(--bodyColor);
}

/* Title Header */
.title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--mainColor);
    margin-bottom: 20px;
}

/* Headings */
.intro-highlight,
.main-heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.intro-highlight {
    font-size: 1.5rem;
    color: var(--mainColor);
    font-weight: 600;
}

.main-heading {
    font-size: 2rem;
    color: var(--bodyColor);
    font-weight: 700;
}

/* Description Panel */
.custom-description {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: var(--cartColor);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}
.custom-description p {
    margin-bottom: 18px;
}

/* CTA Button Wrapper */
.custom-button {
    text-align: center;
    margin-top: 36px;
    margin-bottom: 8px;
}

/* CTA Button */
.custom-button button.btn-primary,
.custom-button a.btn-primary,
.custom-button a.btn {
    display: inline-block;
    background-color: var(--cartButtonBackground);
    color: var(--cartButtonColor);
    font-size: 1.125rem;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.custom-button button.btn-primary:hover,
.custom-button a.btn-primary:hover,
.custom-button a.btn:hover {
    background-color: var(--cartButtonHoverBackground);
    color: var(--cartButtonColor);
    transform: scale(1.05);
}

/* Closed State */
.custom-closed {
    background-color: var(--removeCartButtonBackground);
    padding: 16px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 30px;
}
.custom-closed strong {
    color: var(--removeCartButtonColor);
    font-weight: 700;
}

/* Content Note Box (NOTE: genre restriction) */
.content-note {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--mainColor);
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 18px;
}
.content-note p {
    margin-bottom: 0;
}

/* Pricing Note */
.pricing-note {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

/* Studio Status Banner */
.studio-status {
    text-align: center;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 24px 0;
}
.studio-status.open {
    border: 2px solid var(--mainColor);
    color: var(--mainColor);
    background: rgba(255, 255, 255, 0.04);
}
.studio-status.closed {
    background-color: var(--removeCartButtonBackground);
    color: var(--removeCartButtonColor);
    border: 2px solid transparent;
}

/* Section Blocks (How It Works, What to Include) */
.section-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mainColor);
    margin-bottom: 1rem;
}

/* Numbered Steps */
.steps {
    list-style: none;
    padding-left: 0;
    counter-reset: steps;
}
.steps li {
    counter-increment: steps;
    position: relative;
    padding: 11px 12px 11px 48px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    line-height: 1.5;
}
.steps li::before {
    content: counter(steps);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mainColor);
    color: var(--darkText);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Checklist */
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li {
    position: relative;
    padding: 9px 10px 9px 28px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    line-height: 1.5;
}
.checklist li::before {
    content: '✦';
    position: absolute;
    left: 9px;
    top: 10px;
    color: var(--mainColor);
    font-size: 0.7rem;
}

/* Section Note (italic hint text) */
.section-note {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Policy / Disclaimer */
.policy-note {
    margin-top: 2rem;
    padding: 12px 16px;
    border-left: 3px solid var(--removeCartButtonBackground);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}
