/**
 * Pitchinator Light Styles
 * Template-based generator (no AI) with green theme
 */

.container-wide { max-width: 1200px !important; }

/* No AI Badge */
.no-ai-badge {
    background: #27ae60;
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    display: inline-block;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
}

/* Disclaimer - Green theme */
.disclaimer {
    background: #d4edda;
    border-left: 5px solid #27ae60;
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-md);
}

body.dark-theme .disclaimer {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
}

.disclaimer h3 {
    color: #155724;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-lg);
}

body.dark-theme .disclaimer h3 {
    color: #27ae60;
}

.disclaimer p {
    color: #155724;
    line-height: 1.6;
    margin: var(--space-xs) 0;
}

body.dark-theme .disclaimer p {
    color: var(--color-text);
}

/* Step Indicator - Green primary */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    background: var(--color-bg-elevated);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.step {
    flex: 1;
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-border);
    font-size: var(--font-size-2xl);
}

.step.active {
    color: #27ae60;
    font-weight: var(--font-weight-bold);
}

.step.active .step-number {
    background: #27ae60;
    color: white;
}

.step.completed {
    color: #3498db;
}

.step.completed .step-number {
    background: #3498db;
    color: white;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-bold);
}

.step-title {
    font-size: var(--font-size-sm);
    display: block;
}

/* Intro Text - Green accent */
.intro-text {
    background: #f0f9f4;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    border-left: 4px solid #27ae60;
}

body.dark-theme .intro-text {
    background: rgba(39, 174, 96, 0.1);
}

.intro-text h3 {
    color: #27ae60;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
}

.intro-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Labels - Green */
label {
    display: block;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-bold);
    color: #27ae60;
    font-size: var(--font-size-base);
}

body.dark-theme label {
    color: #27ae60;
}

.label-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: normal;
    margin-top: var(--space-xs);
    font-style: italic;
}

/* Inputs */
input, select, textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-base);
    font-family: inherit;
    background: var(--color-bg-elevated);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Tip Box */
.tip-box {
    background: #fff3cd;
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    margin: var(--space-lg) 0;
    border-left: 4px solid #ffc107;
    font-size: var(--font-size-sm);
}

body.dark-theme .tip-box {
    background: rgba(255, 193, 7, 0.1);
}

.tip-box strong {
    color: #856404;
}

body.dark-theme .tip-box strong {
    color: #ffc107;
}

/* Results - Green theme */
.results {
    background: #f0f9f4;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 2px solid #27ae60;
    margin-top: var(--space-xl);
}

body.dark-theme .results {
    background: rgba(39, 174, 96, 0.1);
}

.results h3 {
    color: #27ae60;
    margin-bottom: var(--space-lg);
}

.result-section {
    background: var(--color-bg-elevated);
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    border-left: 4px solid #3498db;
}

body.dark-theme .result-section {
    background: var(--color-bg);
}

.result-section h4 {
    color: #3498db;
    margin-bottom: var(--space-md);
}

.result-section .content {
    white-space: pre-wrap;
    line-height: 1.8;
    color: var(--color-text);
}

/* Template Preview */
.template-preview {
    background: #f9f9f9;
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--color-border);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

body.dark-theme .template-preview {
    background: var(--color-bg);
}

.placeholder {
    background: #ffffcc;
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-xs);
    font-weight: var(--font-weight-bold);
    color: #856404;
}

/* Export Buttons */
.export-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.export-buttons .btn {
    margin-top: 0;
    flex: 1;
    min-width: 120px;
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Button variants - Green theme */
.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #229954;
}

.btn-secondary {
    background: #3498db;
    color: white;
}

.btn-secondary:hover {
    background: #2980b9;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #1e8449;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .step-indicator { padding: var(--space-md); }
    .step { padding: var(--space-sm); }
    .step:not(:last-child)::after { display: none; }
    .step-title { display: none; }
    .export-buttons { flex-direction: column; }
    .export-buttons .btn { min-width: 100%; }
}

@media (max-width: 480px) {
    .intro-text { padding: var(--space-lg); }
    .step { padding: var(--space-xs); }
    .step-number { width: 35px; height: 35px; line-height: 35px; }
    .no-ai-badge { font-size: var(--font-size-xs); padding: var(--space-sm) var(--space-md); }
}

/* Print styles */
@media print {
    .disclaimer, .step-indicator, .btn, .export-buttons, .no-ai-badge { display: none; }
    .results { border: none; box-shadow: none; }
    .result-section { page-break-inside: avoid; }
}
