/* Start custom CSS for html, class: .elementor-element-920c3ff *//* ==========================================================================
   Header Publi Décès - Fond Clair & Bleu Officiel (#0e6d8a)
   ========================================================================== */

.pd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
    background-color: #ffffff; /* Fond blanc opaque garanti */
    border-bottom: 1px solid #edf2f6;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.pd-header *, .pd-header *::before, .pd-header *::after {
    box-sizing: border-box;
}

/* Grille alignée sur les 1140px de la page */
.pd-header-bound {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 1. Logo / Identité */
.pd-header-brand {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
}

.pd-logo-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #0c2b38; /* Bleu nuit lisible */
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.pd-logo-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #556977;
    font-weight: 600;
    margin-top: 3px;
}

/* 2. Menu Navigation Desktop */
.pd-nav-desktop {
    display: block;
}

.pd-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.pd-nav-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none !important;
    border-bottom: none !important;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.pd-nav-link:hover {
    color: #0e6d8a; /* Bleu officiel du logo au survol */
}

/* 3. Bouton CTA Header */
.pd-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-btn-header {
    display: inline-block !important;
    background-color: #0e6d8a !important; /* Bleu pétrole officiel */
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    border: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pd-btn-header:hover {
    background-color: #094d62 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.pd-btn-w100 {
    display: block !important;
    width: 100%;
    text-align: center;
}

/* 4. Bouton Mobile (Hamburger) */
.pd-burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 26px;
}

.pd-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0c2b38;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Animation croix sur burger */
.pd-burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.pd-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.pd-burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 5. Ombre au défilement */
.pd-header.is-scrolled {
    padding: 13px 0;
    box-shadow: 0 4px 20px rgba(12, 43, 56, 0.06);
}

/* 6. Tiroir Mobile */
.pd-drawer-mobile {
    display: none;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #edf2f6;
    border-bottom: 1px solid #edf2f6;
    padding: 16px 24px 24px 24px;
    box-shadow: 0 12px 24px rgba(12, 43, 56, 0.08);
}

.pd-drawer-mobile.is-open {
    display: block;
}

.pd-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-drawer-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f6;
    font-size: 16px;
    font-weight: 500;
    color: #0c2b38;
    text-decoration: none !important;
}

.pd-drawer-link:hover {
    color: #0e6d8a;
}

.pd-drawer-cta-wrap {
    padding-top: 18px;
}

/* Responsive */
@media (max-width: 960px) {
    .pd-nav-desktop,
    .pd-header-right .pd-btn-header {
        display: none;
    }

    .pd-burger {
        display: flex;
    }

    .pd-header {
        padding: 14px 0;
    }
}/* End custom CSS */