/* Resume Builder Presets */

/* Common Styles for Preview */
#resume-preview {
    background: white;
    width: 210mm;
    min-height: 297mm;
    padding: 20mm;
    margin: 0 auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    box-sizing: border-box;
}

@media print {
    #resume-preview {
        box-shadow: none;
        margin: 0;
        width: 100%;
        padding: 0;
    }
}

/* --- Template 1: Modern (Blue Header) --- */
.template-modern .resume-header {
    border-bottom: 3px solid #2563eb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.template-modern h1 {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.template-modern h3.section-title {
    color: #1e40af;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.template-modern .contact-info {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
}

/* --- Template 2: Classic (Serif, Traditional) --- */
.template-classic {
    font-family: 'Times New Roman', Times, serif;
}

.template-classic h1 {
    text-align: center;
    font-size: 24pt;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.template-classic .contact-info {
    text-align: center;
    font-size: 11pt;
    margin-bottom: 20px;
}

.template-classic h3.section-title {
    font-size: 14pt;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    margin-top: 15px;
    margin-bottom: 10px;
}

.template-classic .resume-section {
    margin-bottom: 15px;
}

/* --- Template 3: Minimal (Clean, Sans-Serif) --- */
.template-minimal {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #444;
}

.template-minimal h1 {
    font-weight: 300;
    font-size: 3rem;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.template-minimal .contact-info {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
    margin-bottom: 30px;
}

.template-minimal h3.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Helper Classes for Grid */
.resume-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.resume-full {
    grid-column: 1 / -1;
}
