/* ============================================
   HeirloomIQ Theme - Shared Styles
   ============================================ */

/* Body & Layout */
body {
    background-color: #f8f9fa;
}

/* Hero Section - Used on landing and example pages */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    font-weight: bold;
}

.hero-section p {
    margin-bottom: 0;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Background Colors */
.bg-light-purple {
    background: #f8f6ff;
}

.persona-cards {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Container Styles */
.paper-container {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.paper-container h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.paper-container h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.trust-pillars .card,
.info-card {
    height: 100%;
}

.info-card .card-title {
    font-weight: 600;
    color: inherit;
}

/* Step Number Circle */
.step-number {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

/* Icons */
.icon-large {
    font-size: 60px;
    color: #667eea;
}

/* Typography Utilities */
.micro-trust {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Button Styles */
.btn-primary {
    background: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #5568d3;
    border: none;
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 30px;
    font-weight: 600;
}

/* Navigation/Back Button */
.back-button {
    display: inline-block;
    margin-top: 15px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #dee2e6;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Code Blocks */
pre[class*="language-"] {
    margin: 0;
    border-radius: 6px;
    font-size: 14px;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    overflow-x: visible !important;
}

code[class*="language-"] {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}
