/*
Theme Name: Les Jours d'Elle
Theme URI: https://lesjoursdelle.com
Author: Les Jours d'Elle
Author URI: https://lesjoursdelle.com
Description: Thème WordPress pour Les Jours d'Elle - Comprendre son cycle, se reconnecter à soi
Version: 1.2.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lesjoursdelle
Domain Path: /languages
Tags: cycle-menstruel, santé-féminine, bien-être, communauté, blog
*/

/* Importation de votre CSS existant */
/* Votre CSS complet sera ici */

/* Ajouter ces styles à la fin pour compléter */

/* Styles pour les pages WordPress */
.entry-header {
    margin-bottom: 40px;
}

.entry-title {
    color: #5D4E6D;
    margin-bottom: 20px;
    font-weight: 700;
}

.entry-content {
    line-height: 1.8;
    font-size: 16px;
}

.entry-content h2 {
    color: #9B72B0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.entry-content h3 {
    color: #7A6B8A;
    margin-top: 25px;
    margin-bottom: 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 8px;
}

/* Pagination */
.navigation.pagination {
    margin-top: 50px;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8F0F2;
    color: #5D4E6D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background: #E8B4BC;
    color: white;
}

.page-numbers:hover:not(.current) {
    background: #9B72B0;
    color: white;
    transform: translateY(-2px);
}

/* Widgets sidebar */
.widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: #5D4E6D;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8B4BC;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid #F8F0F2;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #7A6B8A;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #E8B4BC;
    padding-left: 5px;
}

/* Search widget */
.search-form .input-group {
    display: flex;
}

.search-form .form-control {
    border: 2px solid #E8B4BC;
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
    font-size: 16px;
    flex: 1;
}

.search-form .btn {
    border: 2px solid #E8B4BC;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background: #E8B4BC;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: #9B72B0;
    border-color: #9B72B0;
}

/* Comments */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F8F0F2;
}

.comment-reply-title {
    color: #5D4E6D;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #7A6B8A;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #F8F0F2;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #E8B4BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 180, 188, 0.2);
}

.comment-form .submit {
    background: #E8B4BC;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: #9B72B0;
    transform: translateY(-2px);
}

/* 404 Page spécifique */
.error-404 .btn-get-started {
    background: #E8B4BC;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-404 .btn-get-started:hover {
    background: #9B72B0;
    transform: translateY(-2px);
}

.error-404 .btn-communaute {
    background: white;
    color: #9B72B0;
    border: 2px solid #9B72B0;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-404 .btn-communaute:hover {
    background: #9B72B0;
    color: white;
    transform: translateY(-2px);
}

/* Responsive pour contenu WordPress */
@media (max-width: 768px) {
    .entry-title {
        font-size: 28px;
    }
    
    .widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 18px;
    }
    
    .navigation.pagination {
        margin-top: 30px;
    }
    
    .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Alignements WordPress */
.aligncenter {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
}

.gallery-caption {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* Classes de couleur pour le thème */
.text-primary-lesjours {
    color: #E8B4BC !important;
}

.text-secondary-lesjours {
    color: #9B72B0 !important;
}

.bg-primary-lesjours {
    background-color: #E8B4BC !important;
}

.bg-secondary-lesjours {
    background-color: #9B72B0 !important;
}

.btn-primary-lesjours {
    background: #E8B4BC;
    color: white;
    border: 2px solid #E8B4BC;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-lesjours:hover {
    background: #9B72B0;
    border-color: #9B72B0;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-lesjours {
    background: transparent;
    color: #9B72B0;
    border: 2px solid #9B72B0;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-lesjours:hover {
    background: #9B72B0;
    color: white;
    transform: translateY(-2px);
}

/* Effets de focus pour l'accessibilité */
*:focus {
    outline: 2px solid #E8B4BC;
    outline-offset: 2px;
}

/* Supprimer l'outline pour les éléments qui ont leur propre style de focus */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 180, 188, 0.3);
}

/* (Header/footer rules moved to assets/css/style-fixes.css to avoid conflicts)
   See assets/css/style-fixes.css for the authoritative header/footer styles. */
