/* css/about.css */

/* Reuse Variables (Matches your existing theme) */
:root {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --primary: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* About Hero */
.about-hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Container */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Link List */
.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.link-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.link-list a {
    color: var(--primary);
    text-decoration: none;
}

.link-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    margin-top: auto;
}

/* --- Global Professional Footer --- */
.site-footer {
    background: var(--bg-card); /* Matches your tool cards */
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem;
    text-align: center;
    margin-top: auto; /* Pushes footer to bottom even on short pages */
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}

.site-footer h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.site-footer .copyright {
    font-size: 0.85rem;
    margin-bottom: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle divider */
    color: var(--text-muted);
}

.site-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
}