/* About Page Specific CSS */
/* This file ensures the about page displays properly */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: #ffffff !important;
    color: #333333 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container styles */
.container {
    background-color: transparent !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.display-4 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: #6c757d !important;
}

p, li, span {
    color: #333333 !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1.7;
}

/* Links */
a {
    color: #0d6efd !important;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
}

a:hover {
    color: #0a58ca !important;
    text-decoration: underline;
}

/* Button styles */
.btn {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 500;
    text-align: center;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    border-radius: 0.375rem !important;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
    color: white !important;
    text-decoration: none !important;
}

/* Card styles */
.card {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    margin-bottom: 1rem;
}

.card-body {
    padding: 1.5rem !important;
}

.card-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
}

/* List styles */
ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.list-unstyled {
    padding-left: 0 !important;
    list-style: none !important;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Badge styles */
.badge {
    display: inline-block !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    line-height: 1;
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem !important;
    margin: 0.125rem !important;
}

.bg-primary {
    background-color: #0d6efd !important;
}

/* Bootstrap utilities */
.mt-5 { margin-top: 3rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.me-3 { margin-right: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.gap-2 > * { margin-right: 0.5rem !important; margin-bottom: 0.5rem !important; }

/* Text utilities */
.text-muted {
    color: #6c757d !important;
}

/* Layout utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Flexbox utilities */
.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

/* Sticky positioning */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
    z-index: 1020;
}

/* Responsive design */
@media (max-width: 992px) {
    .col-lg-8,
    .col-lg-4 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 1.75rem !important;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    .btn {
        display: block !important;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .me-3 {
        margin-right: 0 !important;
    }
}

/* Section spacing */
section {
    margin-bottom: 2rem;
}

/* Article styling */
article {
    background-color: transparent;
}

header {
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

/* Navigation styling */
nav {
    margin-bottom: 2rem;
}

/* Strong text */
strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Ensure all content is visible */
* {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override any hiding styles */
body * {
    display: block;
}

.d-flex * {
    display: inline-block;
}

.btn {
    display: inline-block !important;
}

.badge {
    display: inline-block !important;
}
