/* Styles pour la page Lit de Shungite */

/* Page header avec image */
.page-header-shungite {
    background: linear-gradient(135deg, #2C3E2F 0%, #3D5A4F 50%, #4A6B5D 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-shungite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 47, 0.7);
    z-index: 1;
}

.page-header-shungite .container {
    position: relative;
    z-index: 2;
}

/* Grid pour les bienfaits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card h3 {
    color: #2C3E2F;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.benefit-card p {
    color: #62665B;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Styles pour les cartes d'utilisation */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.usage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7C9885;
    transition: transform 0.3s ease;
}

.usage-card:hover {
    transform: translateX(8px);
}

.usage-card h4 {
    color: #2C3E2F;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.usage-card p {
    color: #62665B;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA section avec gradient */
.cta-shungite {
    background: linear-gradient(135deg, #7C9885 0%, #5A7563 100%);
    padding: 5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid,
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card,
    .usage-card {
        padding: 2rem 1.5rem;
    }
}
