/* css/about.css */

/* --- Main Page Content Wrapper --- */
.page-content-wrapper {
    padding: 60px 0;
}
.page-header {
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), #ff00c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Section Styling --- */
.about-section {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}
.about-section h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.about-section p, .about-section li {
    line-height: 1.7;
    color: var(--text-secondary);
}
.about-section ul {
    list-style: none;
    padding-left: 0;
}
.about-section li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.about-section li::before {
    content: '\f058'; /* FontAwesome check-circle solid */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* --- Two-Column Layout for "Our Mission" --- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.mission-grid img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* === NEW: Icon Grid Section for Airdrop vs Campaign === */
.icon-grid-section {
    padding: 20px; /* Less padding for this specific section */
}
.icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grid-item {
    padding: 30px;
    text-align: center;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.grid-item-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}
.grid-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}


/* --- Responsive Adjustments for About Page --- */
@media (max-width: 768px) {
    .mission-grid, .icon-grid {
        grid-template-columns: 1fr; /* Stack columns on tablets and mobile */
    }

    .page-header h1 { font-size: 2.2rem; }
    .page-header p { font-size: 1rem; }
    .about-section { padding: 25px; }
    .about-section h2 { font-size: 1.5rem; }
    .grid-item h3 { font-size: 1.3rem; }
}