/* ===== about.css — FULL BISCUIT THEME (#DFBC94 + white + black) ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* All colors replaced with Biscuit palette */
    --biscuit: #DFBC94;
    --biscuit-dark: #c4a07a;
    --biscuit-light: #f0e0cc;
    --charcoal-soft: #1e1e1e;
    --off-white: #ffffff;
    --text-secondary: #2c2c2c;
    --accent-gradient: linear-gradient(135deg, #DFBC94 0%, #c4a07a 100%);
    --border-organic: rgba(223, 188, 148, 0.3);
    --shadow-elevated: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--off-white);
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-soft);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    margin-top: -40px;
    background: #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(223, 188, 148, 0.35) 0%,
            rgba(223, 188, 148, 0.08) 50%,
            rgba(255, 255, 255, 0.70) 100%
        ),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(223, 188, 148, 0.20) 0%,
        rgba(223, 188, 148, 0.05) 50%,
        transparent 100%);
    pointer-events: none;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
    opacity: 0.20;
}

.badge {
    background: rgba(223, 188, 148, 0.20);
    color: #1e1e1e;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid #DFBC94;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: #1e1e1e;
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #c4a07a;
}

.hero p {
    color: #2c2c2c;
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: #DFBC94;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #1e1e1e;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(223, 188, 148, 0.35);
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #c4a07a;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(223, 188, 148, 0.50);
}

.orb-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.orb-inner {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 85%;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #DFBC94;
    box-shadow: 0 0 30px rgba(223, 188, 148, 0.20);
    padding: 1.5rem;
}

.orb-inner img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}



.orb-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 110%;
    background: radial-gradient(circle, rgba(223, 188, 148, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    top: -5%;
    left: -5%;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ===== APPROACHES SECTION ===== */
.approaches-section {
    padding: 4rem 0;
    background-color: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.red-line {
    width: 50px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1e1e1e;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.approach-card {
    background: #ffffff;
    border: 2px solid #DFBC94;
    border-radius: 20px;
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 188, 148, 0.06) 0%, transparent 100%);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
    background-color: #f5ede3;
    border-color: #c4a07a;
    color: #1e1e1e;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    background-color: #1e1e1e;
    color: #ffffff;
}

.approach-card:hover .icon-box {
    background-color: #DFBC94;
    color: #1e1e1e;
    box-shadow: 0 4px 15px rgba(223, 188, 148, 0.4);
}

.content {
    position: relative;
    z-index: 2;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    color: #1e1e1e;
}

.approach-card:hover .content h3 {
    color: #1e1e1e;
}

.content p {
    color: #2c2c2c;
    font-size: 0.9rem;
    line-height: 1.5;
}

.approach-card:hover .content p {
    color: #2c2c2c;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e1e1e;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    border-top: 4px solid #DFBC94;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: #DFBC94;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 280px;
}

.footer-links h5, .footer-contact h5, .footer-direct h5 {
    color: #DFBC94;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #DFBC94;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.contact-item a:hover {
    color: #DFBC94;
}

.contact-item .material-symbols-outlined {
    font-size: 1.2rem;
    color: #DFBC94;
}

.direct-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: 0.5rem;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.phone-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
}

.phone-item a:hover {
    color: #DFBC94;
}

.phone-item .material-symbols-outlined {
    color: #DFBC94;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.5;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-accent {
    height: 4px;
    background: #DFBC94;
    width: 100%;
    margin-top: 2rem;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* ===== AFRICAN HERITAGE BG (subtle) ===== */
.african-heritage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        repeating-linear-gradient(45deg, rgba(223, 188, 148, 0.03) 0px, rgba(223, 188, 148, 0.03) 1px, transparent 1px, transparent 12px),
        repeating-linear-gradient(135deg, rgba(223, 188, 148, 0.03) 0px, rgba(223, 188, 148, 0.03) 2px, transparent 2px, transparent 16px);
}

.african-heritage-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" opacity="0.10"><path fill="none" stroke="%23DFBC94" stroke-width="1.2" d="M25,30 L35,20 L45,30 L40,45 L25,45 L18,35 L25,30Z M85,80 L95,72 L102,82 L94,92 L82,88 L85,80Z M60,55 L70,48 L78,58 L70,68 L58,66 L60,55Z M15,85 L24,78 L32,86 L26,94 L16,92 L15,85Z M100,20 L108,26 L104,36 L94,32 L96,22 L100,20Z"/></svg>');
    background-repeat: repeat;
    background-size: 48px;
    mix-blend-mode: multiply;
    opacity: 0.20;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-content { align-items: center; text-align: center; }
    .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero { padding: 3rem 0 3rem 0; min-height: auto; }
    .hero-visual { order: -1; margin-bottom: -1rem; }
    .orb-container { max-width: 280px; }
    .section-header { text-align: center; }
    .red-line { margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 2rem 0 2.5rem 0; }
    .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .hero p { font-size: 0.95rem; }
    .badge { font-size: 0.7rem; padding: 0.3rem 0.8rem; }
    .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
    .orb-container { max-width: 220px; }
    .approaches-section { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.6rem; }
    .approach-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .approach-card { padding: 1.5rem; }
    .icon-box { width: 48px; height: 48px; font-size: 1.3rem; margin-bottom: 1.25rem; }
    .content h3 { font-size: 1rem; }
    .content p { font-size: 0.85rem; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .hero { padding: 1.5rem 0 2rem 0; height: 90vh; }
    .hero h1 { font-size: 1.6rem; line-height: 1.25; }
    .hero p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .badge { font-size: 0.65rem; margin-bottom: 1rem; margin-top: 25px; }
    .btn-primary { padding: 0.7rem 1.25rem; font-size: 0.8rem; }
    .orb-container { max-width: 300px; }
    .orb-inner { padding: 1rem; margin-top: 80px; }
    .hero-grid { padding-top: 80px; gap: 0.5rem; padding-bottom: 50px; }
    .approaches-section { padding: 2.5rem 0; }
    .section-header h2 { font-size: 1.4rem; }
    .red-line { width: 40px; height: 3px; }
    .approach-card { padding: 1.25rem; }
    .icon-box { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 1rem; }
    .content h3 { font-size: 0.95rem; }
    .content p { font-size: 0.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
    .container { padding: 0 0.875rem; }
    .hero h1 { font-size: 1.4rem; }
    .hero p { font-size: 0.85rem; }
    .orb-container { max-width: 160px; }
    .approach-card { padding: 1rem; }
    .content h3 { font-size: 0.9rem; }
    .content p { font-size: 0.75rem; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero { padding: 1rem 0 1.5rem 0; min-height: auto; }
    .hero-grid { gap: 1rem; }
    .orb-container { max-width: 140px; }
    .hero h1 { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .hero p { margin-bottom: 1rem; font-size: 0.8rem; }
    .approaches-section { padding: 1.5rem 0; }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

.approach-grid {
    width: 100%;
}