/*
Theme Name: Julien CHARPENTIER - Pompes Funèbres (Carrousel)
Theme URI: https://www.juliencharpentier.fr
Author: Julien CHARPENTIER
Author URI: https://www.juliencharpentier.fr
Description: Thème WordPress personnalisé avec carrousel hero pour les pompes funèbres de Julien CHARPENTIER
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: julien-charpentier
*/

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f3f6d;
    --secondary-color: #1a5b92;
    --accent-color: #2c8de0;
    --text-color: #1f2f3f;
    --text-light: #4d6277;
    --bg-light: #edf5fd;
    --white: #ffffff;
    --border-color: #c7daee;
    --shadow: 0 2px 10px rgba(13, 66, 112, 0.12);
    --shadow-hover: 0 6px 22px rgba(13, 66, 112, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header et Navigation */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.nav-brand .subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.hero-carousel {
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide:not([style]) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 35, 60, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(8, 35, 60, 0.42);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}

.hero-control-prev {
    left: 1.2rem;
}

.hero-control-next {
    right: 1.2rem;
}

.hero-dots {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--accent-color);
}

/* Sections communes */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1a78c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 120, 200, 0.35);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Cérémonie Section */
.ceremonie {
    padding: 5rem 0;
    background-color: var(--white);
}

.ceremonie-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ceremonie-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.ceremonie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ceremonie-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.ceremonie-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ceremonie-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Produits Section */
.produits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.produit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.produit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.produit-card p {
    color: var(--text-light);
}

/* Démarches Section */
.demarches {
    padding: 5rem 0;
    background-color: var(--white);
}

.demarches-content {
    max-width: 900px;
    margin: 0 auto;
}

.demarche-item {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.demarche-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.demarche-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Avis Section */
.avis {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.avis-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.admin-link-container {
    text-align: center;
    margin-bottom: 2rem;
}

.avis-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.avis-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}

.avis-item:hover {
    box-shadow: var(--shadow-hover);
}

.avis-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.avis-nom {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.avis-age {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.avis-dates {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.avis-dates p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.avis-dates strong {
    color: var(--primary-color);
}

.famille-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.95rem;
}

.famille-info strong {
    color: var(--primary-color);
}

.avis-message {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-color);
}

.ceremonie-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-size: 0.95rem;
}

.ceremonie-info strong {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.condoleances-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.condoleances-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.condoleances-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.condoleance-item {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.condoleance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.condoleance-header strong {
    color: var(--primary-color);
}

.condoleance-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.condoleance-message {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.avis-actions {
    margin-top: 1.5rem;
}

.condoleances-private-note {
    margin-top: 0.8rem;
    color: var(--text-light);
    font-size: 0.92rem;
    font-style: italic;
}

.condoleance-form-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.condoleance-form {
    max-width: 100%;
}

.condoleance-form .form-group {
    margin-bottom: 1rem;
}

.condoleance-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.condoleance-form .form-group input,
.condoleance-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.condoleance-form .form-group input:focus,
.condoleance-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.condoleance-form .form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.no-avis {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
}

/* Cartes avis de décès (comme la maquette) */
.deces-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.deces-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.4rem 1.1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.deces-card__image-link {
    display: inline-flex;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #e3eef9;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.deces-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deces-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d7e0e6, #eff3f6);
}

.deces-card__name {
    margin: 0 0 0.35rem;
    color: var(--text-color);
    font-size: 2rem;
    line-height: 1.15;
}

.deces-card__date {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.deces-card__button {
    background: #1f4156;
    color: var(--white);
    border-radius: 8px;
    min-width: 240px;
    box-shadow: 0 4px 10px rgba(31, 65, 86, 0.22);
}

.deces-card__button:hover {
    background: #193547;
}

.galerie-thumb {
    width: 210px;
    height: 140px;
    border-radius: 12px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__figure {
    max-width: min(1100px, 95vw);
    max-height: 90vh;
    margin: 0;
    text-align: center;
}

.gallery-lightbox__figure img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__figure figcaption {
    margin-top: 0.7rem;
    color: #fff;
}

.gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    cursor: pointer;
}

.gallery-lightbox__nav--prev {
    left: 16px;
}

.gallery-lightbox__nav--next {
    right: 16px;
}

.deces-pagination {
    margin-top: 1.2rem;
}

.deces-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.deces-pagination .page-numbers {
    text-decoration: none;
    color: #556170;
    padding: 0.1rem 0.3rem;
}

.deces-pagination .page-numbers.current {
    color: #1f4156;
    font-weight: 700;
}

/* Zones Section */
.zones {
    padding: 5rem 0;
    background-color: var(--white);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zone-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.zone-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.zone-card ul {
    list-style: none;
}

.zone-card li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.zone-card li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item p {
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* WordPress Content */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
    margin-bottom: 1.5rem;
}

.wp-block-button__link {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.wp-block-button__link:hover {
    background-color: #1a78c8;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(13, 66, 112, 0.2);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-control {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .produits-grid,
    .ceremonie-grid {
        grid-template-columns: 1fr;
    }

    .deces-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deces-card__name {
        font-size: 1.5rem;
    }

    .deces-card__button {
        min-width: 100%;
    }

    .galerie-thumb {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services,
    .ceremonie,
    .produits,
    .demarches,
    .avis,
    .zones,
    .contact {
        padding: 3rem 0;
    }

    .service-card,
    .produit-card,
    .info-card {
        padding: 1.5rem;
    }

    .deces-grid {
        grid-template-columns: 1fr;
    }

    .deces-card__image-link {
        width: 140px;
        height: 140px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

/* Error 404 */
.error-404 {
    padding: 5rem 0;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Archive Navigation */
.avis-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nav-previous a,
.nav-next a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.produit-card,
.ceremonie-item {
    animation: fadeIn 0.6s ease-out;
}

