/* Styles spécifiques pour la page d'accueil */

/* Hero section */
.hero {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Privacy badge */
.privacy-badge {
    background-color: #34a853;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 15px 0;
}

.privacy-badge i {
    margin-right: 8px;
}

/* Tools sections */
.tools-section {
    margin-bottom: 50px;
}

.tools-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.tool-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tool-icon {
    background-color: #f0f7ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tool-icon i {
    font-size: 28px;
    color: #4285f4;
}

.tool-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.tool-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fbbc05;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.coming-soon {
    opacity: 0.7;
    pointer-events: none;
}

/* Why us section */
.why-us {
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    background-color: #e8f0fe;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #4285f4;
}

.feature h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
