/* ========================= */
/*   ABOUT PAGE LAYOUT       */
/* ========================= */

.about-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Section spacing */
.about-section {
    padding: 60px 0;
    background: #0b3b75; /* default VetForge blue */
    color: white;
}

.about-section.alt-bg {
    background: #0a3568; /* slightly darker band */
}

/* Centered content container */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Headings */
.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Paragraph spacing */
.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
/* ========================= */
/* HERO → CONTENT TRANSITION */
/* ========================= */

/* HERO → ABOUT TRANSITION */
/* ========================= */
/* FORGE PULSE TRANSITION LINE */
/* ========================= */

.vf-forge-line {
    height: 0px;
    background-color: #352527; /* exact center-bottom hero color */
    position: relative;
    z-index: 5;
}

/* Glow above and below */
.vf-forge-line::before,
.vf-forge-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 18px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 120, 60, 0.45) 0%,   /* forge ember glow */
        rgba(255, 120, 60, 0.15) 40%,
        rgba(255, 120, 60, 0) 100%
    );
    animation: forgePulse 2s ease-in-out infinite;
}

/* Glow above */
.vf-forge-line::before {
    top: -6px;
}

/* Glow below */
.vf-forge-line::after {
    bottom: -6px;
}

/* Pulsating forge glow animation */
@keyframes forgePulse {
    0% {
        opacity: 0.35;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.75;
        transform: scaleY(1.35);
    }
    100% {
        opacity: 0.35;
        transform: scaleY(1);
    }
}



/* ========================= */
/*   TWO COLUMN LAYOUT       */
/* ========================= */

.two-col {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.col-text {
    flex: 2;
}

.col-side {
    flex: 1;
}

/* Side card */
.about-card {
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
}
/* FORCE ABOUT SECTIONS TO USE THE DARK BACKGROUND */
.about-section {
    background-color: #0b3b75 !important;
    color: white !important;
    position: relative;
    z-index: 2;
}

.about-section.alt-bg {
    background-color: #0a3568 !important;
}


/* ========================= */
/*   FEATURE GRID            */
/* ========================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* ========================= */
/*   STAT GRID               */
/* ========================= */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.stat-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* ========================= */
/*   TABLES                  */
/* ========================= */
/* ABOUT PAGE TABLE FIX */
.about-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    color: white; /* override black text */
    font-size: 1rem; /* override small text */
    background: transparent; /* override white background */
}

.about-section table th,
.about-section table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    color: white; /* ensure all text is white */
}

.about-section table th {
    font-weight: 700;
    opacity: 0.95;
}

.about-section table td {
    opacity: 0.85;
}

.about-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.about-content table th,
.about-content table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
}

.about-content table th {
    text-align: left;
    font-weight: 700;
    opacity: 0.9;
}

.about-content table td {
    opacity: 0.85;
}
