/* ===================================
   SCRIPT BASE STYLES
   Untuk semua halaman naskah produksi
   =================================== */

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-size: 15px;
}

.container {
    max-width: 900px;
    background: var(--bg-white);
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 50px 60px;
    text-align: center;
}

.header-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.header-subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
}

/* Content */
.content {
    padding: 50px 60px;
}

/* Section Styles */
.section-title {
    font-size: 13px;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--bg-cream);
    padding: 20px 25px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.info-card-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-card-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Tables */
th {
    background: var(--primary);
    color: white;
}

td {
    border-bottom: 1px solid var(--border);
}

tr:hover {
    background-color: #FDFBF7;
}

/* Scene Cards */
.act-header {
    background: var(--primary);
    color: white;
    padding: 18px 25px;
    margin: 35px 0 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.act-header h2 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.act-duration {
    font-size: 13px;
    opacity: 0.85;
}

.scene-card {
    border: 1px solid var(--border);
    margin-bottom: 25px;
    background: white;
}

.scene-header {
    background: var(--bg-cream);
    padding: 15px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scene-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.scene-duration {
    font-size: 13px;
    color: var(--text-muted);
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.scene-body {
    padding: 22px;
}

.scene-row {
    margin-bottom: 18px;
}

.scene-row:last-child {
    margin-bottom: 0;
}

.scene-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.scene-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.scene-content ul {
    margin-left: 20px;
}

.scene-content li {
    margin-bottom: 5px;
}

/* Shot List */
.shot-list {
    background: #F8F6F3;
    padding: 15px 18px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-dark);
}

/* Narration */
.narration {
    background: linear-gradient(135deg, #FEF9E7 0%, #FDF6E3 100%);
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    font-style: italic;
    color: #5D4E37;
    margin-top: 15px;
}

.narration::before {
    content: "NARASI V.O.";
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-style: normal;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Key Shot Badge */
.key-shot {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Script Box */
.script-box {
    background: #2C2C2C;
    color: #F5F5F5;
    padding: 30px;
    border-radius: 6px;
    font-family: 'Georgia', serif;
    line-height: 2.2;
}

.script-box .scene-marker {
    color: var(--accent);
    font-size: 12px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.script-box .scene-marker:first-child {
    margin-top: 0;
}

.script-box .line {
    font-size: 16px;
    margin-bottom: 5px;
}

/* CTA Box */
.cta-box {
    background: var(--bg-cream);
    border: 2px dashed var(--border);
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.cta-box .cta-main {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.cta-box .cta-sub {
    font-size: 15px;
    color: var(--text-muted);
}

/* Checklist */
.checklist {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.checklist li:last-child {
    border-bottom: none;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Notes */
.note-card {
    background: var(--bg-cream);
    padding: 22px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.note-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.note-card ul {
    margin-left: 18px;
}

.note-card li {
    margin-bottom: 6px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-cream);
    padding: 30px 60px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Print Styles */
@media print {
    .scene-card {
        break-inside: avoid;
    }
    .act-header {
        break-after: avoid;
    }
}
