/* Vision Page Styles - Copied to about-us.css */

:root {
    --primary-dark: #363f49;
    --primary-light: #f8fbfb;
    --text-gray: #7f7f80;
    --accent-gold: #e3be2f;
    --accent-rust: #c75339;
    --light-gray: #c9d0d3;
    --accent-teal: #69b1b9;
    --accent-cream: #dfd194;
    --accent-peach: #dba18d;
    --white: #ffffff;
}

/* General Styles */
section {
    padding: 70px 0;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-dark);
    text-align: center;
}

.section-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.primary-btn {
    display: inline-block;
    background-color: var(--accent-teal);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #5899a1;
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-teal);
    padding: 11px 29px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--accent-teal);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #f0f8f9;
    transform: translateY(-2px);
}

/* Hero Section */
.vision-hero {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.vision-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vision-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Bold Vision Section */
.bold-vision {
    background-color: var(--primary-light);
    padding: 70px 0;
}

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

.vision-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.vision-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

/* Project Details */
.project-details {
    background-color: var(--white);
}

.feature-list {
    max-width: 800px;
    margin: 0 auto 30px;
    padding-left: 20px;
}

.feature-list li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.feature-list li::before {
    content: "•";
    color: var(--accent-teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.project-details p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Crowdfunding Section */
.crowdfunding {
    background-color: var(--primary-light);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.progress-container {
    height: 30px;
    background-color: var(--light-gray);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--accent-teal);
    border-radius: 15px;
    width: 0;
    transition: width 1.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.progress-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Contribution Tiers */
.contribution-tiers {
    background-color: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tier-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-header {
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.tier-header.supporter {
    background-color: var(--primary-dark);
}

.tier-header.crew {
    background-color: var(--accent-teal);
}

.tier-header.first-mate {
    background-color: var(--accent-gold);
}

.tier-header.officer {
    background-color: var(--primary-dark);
}

.tier-header.captain {
    background-color: var(--accent-teal);
}

.tier-header.admiral {
    background-color: var(--accent-gold);
}

.tier-header h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.tier-price {
    font-size: 24px;
    font-weight: 600;
}

.tier-content {
    padding: 25px;
    background-color: var(--white);
}

.tier-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.tier-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-gray);
}

.tier-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.tier-select, .tier-contact {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tier-select {
    background-color: var(--white);
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.tier-select:hover {
    background-color: var(--accent-teal);
    color: var(--white);
}

.tier-contact {
    background-color: var(--accent-gold);
    color: var(--white);
}

.tier-contact:hover {
    background-color: #c9ab2a;
}

.popular-tag, .premium-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-rust);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 1;
}

.premium-tag {
    background-color: var(--accent-gold);
}

.tier-card.popular, .tier-card.premium {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Timeline Section */
.timeline-section {
    background-color: var(--primary-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--accent-teal);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    z-index: 1;
}

.timeline-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.timeline-date {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.timeline-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Team Section */
.team-section {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light-gray);
}

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

.team-member h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.member-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-small {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-dark);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background-color 0.3s ease;
}

.member-social a:hover .social-icon-small {
    background-color: var(--accent-teal);
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f8f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-arrow {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-arrow::before, .faq-arrow::after {
    content: "";
    position: absolute;
    background-color: var(--accent-teal);
    transition: all 0.3s ease;
}

.faq-arrow::before {
    top: 10px;
    right: 0;
    width: 20px;
    height: 2px;
}

.faq-arrow::after {
    top: 1px;
    right: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-arrow::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--accent-teal);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-section .primary-btn {
    background-color: var(--white);
    color: var(--accent-teal);
}

.cta-section .primary-btn:hover {
    background-color: #f0f0f0;
}

.cta-section .secondary-btn {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .vision-hero h1 {
        font-size: 36px;
    }

    .vision-buttons,
    .progress-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .primary-btn,
    .secondary-btn,
    .tier-select,
    .tier-contact {
        width: 100%;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        min-width: 100%;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item::before {
        left: 5px;
    }

    .timeline-item {
        padding-left: 35px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
    }

    .vision-hero h1 {
        font-size: 30px;
    }

    .tier-card {
        min-width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
