/* ====================================
   BAOBAB CAPITAL PARTNERS - STYLESHEET
   Dark Mode - PDF Colors Applied
   ==================================== */

/* CSS Variables - EXACT PDF Colors */
:root {
    /* PDF Extracted Colors */
    --primary-black: #101112;
    --secondary-dark: #2d3032;
    --light-bg: #f5f5f6;
    --accent-purple: #ab9df5;
    --warm-grey: #e4dfde;
    --white: #ffffff;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-dark: #101112;
    --text-muted: #a0a0a0;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Typography */
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Effects */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Navigation - Bifrost Edge Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: rgba(16, 17, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 50vw;
    height: 70px;
}

.nav-brand .logo-image {
    height: 70px;
    width: 266px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition);
    display: block;
}

.nav-brand .logo-image:hover {
    filter: brightness(1.3);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-right: 1rem;
    position: absolute;
    right: 0;
    z-index: 1001;
}

.nav-menu a {
    color: var(--light-bg);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-purple);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-bg);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/photo_p3_1024x512.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--light-bg);
    color: var(--light-bg);
}

.btn-secondary:hover {
    background: var(--light-bg);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-purple), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section - Dark */
.about-section {
    background: var(--secondary-dark);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.principle-card {
    background: var(--primary-black);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(171, 157, 245, 0.2);
    transition: var(--transition);
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(171, 157, 245, 0.15);
}

.principle-icon {
    
    margin-bottom: 1rem;
}

.principle-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.principle-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.approach-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--primary-black);
    border-radius: 12px;
    border: 1px solid rgba(171, 157, 245, 0.2);
}

.approach-section h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.approach-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.approach-section strong {
    color: var(--accent-purple);
}

.approach-values {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.value-badge {
    padding: 0.7rem 1.5rem;
    background: var(--accent-purple);
    color: var(--primary-black);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: var(--primary-black);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card {
    padding: 3rem;
    background: var(--secondary-dark);
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
}

.vm-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-purple);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vm-title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Sectors Section */
.sectors-section {
    background: var(--secondary-dark);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sector-card {
    padding: 2rem;
    background: var(--primary-black);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sector-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(171, 157, 245, 0.15);
}

.sector-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sector-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Numbers Section */
.numbers-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.number-card {
    text-align: center;
}

.number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.number-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.contact-info h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p, .contact-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-purple);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--primary-black);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(171, 157, 245, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(171, 157, 245, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-muted);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(171, 157, 245, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(171, 157, 245, 0.1);
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
    font-size: 2.2rem;
    font-weight: 400; font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .vm-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    :root {
        --section-padding: 60px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

 100%;
        text-align: center;
    }
}

      text-align: center;
    }
}

ign: center;
    }
}

nter;
    }
}

ign: center;
    }
}

nter;
    }
}

 }
}



er;
    }
}

 }
}




}



er;
    }
}

 }
}



p: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

 100%;
        text-align: center;
    }
}

      text-align: center;
    }
}

ign: center;
    }
}

nter;
    }
}

ign: center;
    }
}

nter;
    }
}

 }
}



er;
    }
}

 }
}




}



er;
    }
}

 }
}



   width: 100%;
        text-align: center;
    }
}

 100%;
        text-align: center;
    }
}

      text-align: center;
    }
}

ign: center;
    }
}

nter;
    }
}

ign: center;
    }
}

nter;
    }
}

 }
}



er;
    }
}

 }
}




}



er;
    }
}

 }
}



