/* BNI Member Map - App Styles */

/* ========================================
   Layout
======================================== */
.bni-app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bni-main {
    flex: 1;
}

/* ========================================
   Header
======================================== */
.bni-app-header {
    background: #1a365d;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.bni-logo {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.bni-logo a {
    color: white;
    text-decoration: none;
}

.bni-header-nav {
    display: flex;
    gap: 16px;
}

.bni-header-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.15s;
}

.bni-header-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}

/* ========================================
   Footer
======================================== */
.bni-app-footer {
    background: #1a365d;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

.bni-app-footer p {
    margin: 0;
}

/* ========================================
   Home Page
======================================== */
.bni-home-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.bni-hero {
    margin-bottom: 60px;
}

.bni-hero h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 16px;
}

.bni-hero p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
}

.bni-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bni-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #1a365d;
    color: #1a365d;
    background: white;
}

.bni-btn:hover {
    background: #f7fafc;
    text-decoration: none;
}

.bni-btn.primary {
    background: #1a365d;
    color: white;
}

.bni-btn.primary:hover {
    background: #2c5282;
    border-color: #2c5282;
}

.bni-stats-section {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.bni-stat-box {
    background: white;
    padding: 32px 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bni-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1;
}

.bni-stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 8px;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 600px) {
    .bni-app-header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }

    .bni-header-nav {
        gap: 8px;
    }

    .bni-header-nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .bni-hero h1 {
        font-size: 1.75rem;
    }

    .bni-stats-section {
        flex-direction: column;
    }

    .bni-stat-box {
        padding: 24px 32px;
    }
}
