/*
Theme Name: Theme Logisseo DevDigit
Author: Guillaume CHARTIER
Author URI: https://developpeur-digital.fr/
Description: Template WordPress de Logisseo - Redesign 2026
Version: 2.0
Tags: Logisseo, Angers, Logistique, E-commerce, 2026
*/

/* Le CSS 2026 est charge via functions.php (style-2026.css) */

/* Styles pour le contenu Gutenberg des articles */
.article-content-2026 h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.article-content-2026 h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 12px;
}
.article-content-2026 p {
    margin-bottom: 20px;
}
.article-content-2026 img {
    border-radius: var(--radius-md);
}
.article-content-2026 ul, .article-content-2026 ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-content-2026 li {
    margin-bottom: 8px;
}
.article-content-2026 blockquote {
    border-left: 3px solid var(--rose);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--rose-pale);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}
.article-content-2026 a {
    color: var(--rose);
    text-decoration: underline;
}
.article-content-2026 a:hover {
    color: var(--rose-light);
}

/* Pagination style 2026 */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    text-decoration: none;
}
.nav-links .page-numbers:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: var(--rose-pale);
}
.nav-links .page-numbers.current {
    background: var(--rose-gradient);
    color: var(--white);
    border-color: transparent;
}

/* Contact Form 7 styling 2026 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark);
    transition: border-color 0.2s;
    background: var(--off-white);
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--rose-glow);
}
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    background: var(--rose-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px var(--rose-glow);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}
.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--rose-glow);
}
