/* about.css - Styles spécifiques à la page About */

/* Structure de base */
.about-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Cartes about */
.about-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e8ff;
    box-shadow: 0 4px 12px rgba(90, 141, 238, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(90, 141, 238, 0.12);
}

.about-card h2 {
    color: #5a8dee;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.about-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-card ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.about-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Section des fonctionnalités de protection */
.protection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fbff;
    border-radius: 10px;
    border: 1px solid #e0e8ff;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature h3 {
    margin: 0 0 0.75rem;
    color: #333;
    font-size: 1.25rem;
}

.feature p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Stack technologique */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tech-item {
    background-color: #f0f7ff;
    border: 1px solid #c2d9ff;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    color: #3a6fc8;
    font-size: 0.9rem;
}

/* Lien Product Hunt */
.product-hunt-link {
    margin-top: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.product-hunt-link a {
    color: #da552f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-hunt-link a:hover {
    color: #c04a29;
    text-decoration: underline;
}

/* Section CTA */
.cta-section {
    text-align: center;
    background-color: #f8fbff;
    border: 1px solid #c2d9ff;
}

.cta-button {
    display: inline-block;
    background-color: #5a8dee;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(90, 141, 238, 0.3);
}

.cta-button:hover {
    background-color: #4a7ed6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 141, 238, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section intro */
.intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.intro h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: #333;
    font-weight: 700;
}

.intro p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .protection-features {
        grid-template-columns: 1fr;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1.1rem;
    }

    .about-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 0.75rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .intro h1 {
        font-size: 1.75rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem;
    }
}