/* Interior Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black) 70%, var(--red) 70%, var(--red) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    margin-top: 0;
}

.page-hero .accent-bar {
    width: 80px;
    height: 4px;
    background: var(--red);
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--light-grey);
    max-width: 700px;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--black);
}

/* Mission Vision Values */
.mvv-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid var(--red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mvv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.values-list strong {
    color: var(--red);
}

/* Team Section */
.team-section {
    background: var(--white);
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    border-left: 6px solid var(--red);
}

.member-image {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 64px;
    font-weight: 700;
    color: var(--red);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.member-title {
    font-size: 16px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--black);
}

.member-quote {
    font-style: italic;
    color: var(--red);
    font-weight: 600;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--red);
    border-radius: 5px;
    margin-top: 25px;
}

.board-note {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
}

.board-note h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--red);
}

.board-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Governance Section */
.governance-section {
    background: var(--white);
    padding: 80px 0;
}

.governance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.governance-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--black);
}

.governance-card:nth-child(2n) {
    border-top-color: var(--red);
}

.governance-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.governance-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
}

/* Get Involved Page Styles */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.involvement-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid var(--red);
}

.involvement-card:nth-child(2) {
    border-top-color: var(--black);
}

.involvement-card:nth-child(3) {
    border-top-color: var(--grey);
}

.involvement-card:nth-child(4) {
    border-top-color: var(--red);
}

.involvement-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.involvement-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.involvement-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 25px;
}

.involvement-details {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.involvement-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.involvement-details ul {
    list-style: none;
    padding: 0;
}

.involvement-details li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.involvement-details li::before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.involvement-details strong {
    color: var(--red);
    font-weight: 700;
}

.why-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.why-section .section-header h2 {
    color: var(--white);
}

.why-section .section-line {
    background: var(--red);
}

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

.why-card {
    background: rgba(192, 0, 0, 0.15);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .page-hero h1 {
        font-size: 42px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
}
