/* Site Page Styles - Bootstrap 5.3 Maximized
   
   This stylesheet provides minimal custom CSS.
   HTML should use Bootstrap utility classes directly:
   - Layout: container, row, col-*, d-flex, gap-*
   - Spacing: p-*, m-*, py-*, px-*
   - Typography: fs-*, fw-*, text-*, lh-*
   - Colors: text-body, text-body-secondary, bg-body-tertiary
   - Borders: border, border-bottom, rounded-*, shadow-*
   - Components: card, card-body, alert, list-group, badge
*/

/* ============================================
   PAGE HERO
   Use with: py-5 text-center text-white
   ============================================ */
.site-page-hero {
    background: linear-gradient(135deg, 
        var(--bs-primary) 0%, 
        color-mix(in srgb, var(--bs-primary) 70%, var(--bs-dark)) 100%);
    position: relative;
    overflow: hidden;
}

.site-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.site-page-hero > .container {
    position: relative;
    z-index: 1;
}

/* Hero icon - use with: d-flex align-items-center justify-content-center mx-auto mb-3 rounded-4 bg-white bg-opacity-10 */
.site-page-hero-icon {
    width: 80px;
    height: 80px;
    backdrop-filter: blur(10px);
}

/* ============================================
   INTRO CARD
   Use with: card shadow-sm rounded-4 mx-auto
   Container needs: style="max-width: 1140px"
   ============================================ */
.site-page-intro {
    margin-top: -3rem;
    z-index: 2;
    position: relative;
}

/* ============================================
   DO / DON'T CARDS
   Use with: card bg-body-tertiary rounded-3
   ============================================ */
.card-do {
    border-left: 3px solid var(--bs-success) !important;
}

.card-dont {
    border-left: 3px solid var(--bs-danger) !important;
}

/* ============================================
   LIST STYLES
   Use Bootstrap list-group list-group-flush
   ============================================ */
.list-branded .list-group-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--bs-primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.list-prohibit .list-group-item {
    padding-left: 2rem;
    position: relative;
}

.list-prohibit .list-group-item::before {
    content: "\f05e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0.75rem;
    color: var(--bs-danger);
    font-size: 0.875rem;
}

/* ============================================
   CALLOUTS
   Use with: alert rounded-3 border
   ============================================ */
.callout-primary {
    background: color-mix(in srgb, var(--bs-primary) 10%, var(--bs-body-bg));
    border-color: color-mix(in srgb, var(--bs-primary) 25%, transparent);
}

.callout-primary strong {
    color: var(--bs-primary);
}

.callout-warning {
    background: color-mix(in srgb, var(--bs-warning) 10%, var(--bs-body-bg));
    border-color: color-mix(in srgb, var(--bs-warning) 30%, transparent);
}

.callout-warning strong {
    color: var(--bs-warning-text-emphasis);
}

/* ============================================
   FEATURE BADGES
   Use with: d-flex align-items-center gap-2 p-3 bg-body-tertiary rounded-3
   ============================================ */
.feature-badge i,
.feature-badge .fas {
    color: var(--bs-primary);
}

/* ============================================
   CONTENT SECTIONS
   Use with: py-4 border-bottom
   ============================================ */
section:last-of-type {
    border-bottom: none !important;
}

/* Blockquote accent */
.site-page-content blockquote {
    border-left: 3px solid var(--bs-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767.98px) {
    .site-page-hero-icon {
        width: 64px;
        height: 64px;
    }
    
    .site-page-intro {
        margin-top: -2rem;
    }
}
