/* BOD 2026 - Boost Our Dreams */
/* BNI コンセンサス チャプター */

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ffc107;
    --accent: #c53030;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #f5f7fa;
    --white: #fff;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 20px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* App Wrapper */
.bod-app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.bod-app-header {
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bod-logo {
    margin: 0;
}

.bod-logo a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bod-logo a:hover {
    text-decoration: none;
}

.bod-header-nav {
    display: flex;
    gap: 24px;
}

.bod-header-nav a {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
}

.bod-header-nav a:hover {
    opacity: 1;
    text-decoration: none;
}

/* Main */
.bod-main {
    flex: 1;
}

/* Container */
.bod-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.bod-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.bod-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bod-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.bod-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bod-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 28px;
    opacity: 0.85;
}

.bod-hero-date {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section */
.bod-section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
}

.bod-section-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* Mission Section */
.bod-mission {
    background: var(--white);
    padding: 60px 0;
}

.bod-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bod-mission-card {
    background: var(--bg);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bod-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bod-mission-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bod-mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.bod-mission-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Members Section */
.bod-members {
    padding: 60px 0;
}

.bod-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    background: var(--white);
    border-radius: 12px;
}

.bod-empty-state h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}

/* Member Grid - PDF風2カラム */
.bod-member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Member Card - PDF風フルプロフィール */
.bod-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
}

.bod-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Member Header */
.bod-member-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px 20px;
    color: var(--white);
    text-align: center;
}

.bod-member-furigana {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 4px;
    letter-spacing: 0.15em;
}

.bod-member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bod-member-title {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

/* Member Body */
.bod-member-body {
    padding: 20px;
}

.bod-member-company {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.bod-member-profile {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text);
}

/* Member Footer */
.bod-member-footer {
    padding: 16px 20px;
    background: var(--bg);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bod-member-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.bod-member-role {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Footer */
.bod-app-footer {
    background: var(--primary);
    color: var(--white);
    padding: 32px 24px;
    text-align: center;
}

.bod-app-footer p {
    margin-bottom: 4px;
}

.bod-app-footer .footer-small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .bod-app-header {
        flex-direction: column;
        gap: 12px;
    }

    .bod-header-nav {
        gap: 16px;
    }

    .bod-hero {
        padding: 60px 20px;
    }

    .bod-hero-title {
        font-size: 2.5rem;
    }

    .bod-hero-subtitle {
        font-size: 1.2rem;
    }

    .bod-mission,
    .bod-members {
        padding: 40px 0;
    }

    .bod-section-title {
        font-size: 1.4rem;
    }

    /* スマホでは1カラム */
    .bod-member-grid {
        grid-template-columns: 1fr;
    }

    .bod-member-name {
        font-size: 1.2rem;
    }

    .bod-member-title {
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.bod-member-card {
    animation: fadeIn 0.4s ease-out;
}
