/* ═══════════════════════════════════════════════════════════
   SACREMENTS - CSS
═══════════════════════════════════════════════════════════ */

:root {
    /* Couleurs Material */
    --mat-blue: hsl(207, 65%, 45%);
    --mat-blue-light: hsl(207, 65%, 55%);
    --mat-blue-dark: hsl(207, 65%, 35%);
    --mat-surface: #FFFFFF;
    --mat-background: #FAFAFA;
    
    /* Élévations Material (box-shadow) */
    --elevation-1: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --elevation-2: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --elevation-3: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    --elevation-4: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    --elevation-5: 0 12px 32px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
    
    /* Transitions Material */
    --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-emphasized: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mode sombre - Ajustements Material */
.dark {
    --mat-surface: hsl(210, 6%, 15%);
    --mat-background: hsl(210, 15%, 12%);
    --elevation-1: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --elevation-2: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --elevation-3: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    --elevation-4: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    --elevation-5: 0 12px 32px rgba(0, 0, 0, 0.5), 0 6px 12px rgba(0, 0, 0, 0.4);
}


/* ═══════════════════════════════════════════════════════════
   CONFIGURATION
═══════════════════════════════════════════════════════════ */

section {
    margin-top: 0;
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONFIGURATION SVG
═══════════════════════════════════════════════════════════ */

.nav-icon svg {
    width: 4.5rem;
    height: 4.5rem;
    display: block;
}

.category-icon svg {
    width: 5rem;
    height: 5rem;
    display: block;
}

.sacrement-icon-large svg {
    width: 4rem;
    height: 4rem;
    display: block;
}

.hero-decorative svg {
    width: 5rem;
    height: 5rem;
    display: block;
    opacity: 0.6;
}

.cta-icon svg {
    width: 5rem;
    height: 5rem;
    display: block;
}

.overview-icon svg {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.sacrement-hero {
    background: linear-gradient(135deg, var(--mat-blue), var(--mat-blue-light));
    min-height: 15vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content-wrapper h1 {
    font-size: 5.5rem;
    font-weight: 500;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.hero-decorative {
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-page {
    padding: 5px 5%;
}

   /*SECTION INTRODUCTION - CARTE ÉLEVÉE*/

.intro-section {
    background: var(--mat-background);
    padding: 8rem 0 6rem;
    margin-top: -50px;
}

.intro-card {
    border: none;
    border-radius: 16px;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 4rem;
    transition: var(--transition-standard);
}


.intro-text-large {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--color-text);
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-large strong {
    color: var(--mat-blue);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION PAR CATÉGORIES - MATERIAL CARDS
═══════════════════════════════════════════════════════════ */

.sacrement-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 2rem 0;
    background: var(--mat-background);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-category {
    background: var(--mat-surface);
    border: none;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--elevation-2);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-category:hover {
    box-shadow: var(--elevation-4);
    transform: translateY(-4px);
}

.nav-category::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.nav-category:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.nav-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(857%) hue-rotate(171deg) brightness(94%) contrast(89%);
    max-width: 50px;
}

.nav-label {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
}

.cat-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(857%) hue-rotate(171deg) brightness(94%) contrast(89%);
    max-width: 0px;
}

.head-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(857%) hue-rotate(171deg) brightness(94%) contrast(89%);
    max-width: 50px;
}

/* ═══════════════════════════════════════════════════════════
   HEADERS DE CATÉGORIES - MATERIAL
═══════════════════════════════════════════════════════════ */

.sacrement-category {
    padding: 1rem 0;
    background: var(--mat-background);
}

.sacrement-category:nth-child(even) {
    background: var(--color-background-alt);
}

.category-header {
    padding: 6rem 2rem 4rem;
    margin-bottom: 0;
    border: none;
    text-align: left;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    /*background: var(--mat-blue);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(61, 141, 207);
}

.category-title-wrapper h2 {
    font-size: 3.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.category-subtitle {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CARTES DE SACREMENTS - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.page-content {
    background: var(--mat-background);
    padding: 0 ;
}

.sacrement-card {
    background: var(--mat-surface);
    border: none;
    border-radius: 16px;
    box-shadow: var(--elevation-2);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: var(--transition-standard);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

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

.sacrement-card-header {
    background: linear-gradient(135deg, var(--mat-blue-light), var(--mat-blue));
    padding: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sacrement-number {
    font-size: 8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.sacrement-header-content {
    flex: 1;
    color: white;
    z-index: 1;
}

.sacrement-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #ffffffe3;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--mat-blue);
}

.sacrement-card-header h3 {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.5rem 0;
}

.sacrement-tagline {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.sacrement-card-body {
    padding: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   CITATIONS - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.sacrement-quote {
    background: transparent;
    border-left: 4px solid var(--mat-blue);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 4px;
}

.sacrement-quote p {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-mark {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   DESCRIPTION
═══════════════════════════════════════════════════════════ */

.sacrement-description {
    font-size: 1.7rem;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 3rem;
}

.dark .sacrement-description {
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   ACCORDÉONS - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.accordion-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.accordion-header {
    width: 100%;
    background: var(--mat-background);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
    box-shadow: var(--elevation-1);
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.accordion-header:hover {
    background: #F5F5F5;
    box-shadow: var(--elevation-2);
}

.accordion-header.active {
    background: var(--mat-blue-light);
    color: white;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.dark .accordion-header {
    background: var(--color-boxground);
    color: var(--color-text);
}

.dark .accordion-header:hover {
    background: var(--color-background-alt);
}

.dark .accordion-header.active {
    background: var(--mat-blue);
    color: white;
}

.accordion-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(857%) hue-rotate(171deg) brightness(94%) contrast(89%);
    max-width: 35px;
}

.accordion-header.active .accordion-icon {
    filter: brightness(0) invert(1);
}

.accordion-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 1.4rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════
   LISTES D'INFORMATIONS
═══════════════════════════════════════════════════════════ */

.info-list {
    padding: 2rem 0;
}

.info-item {
    background: transparent;
    border-left: 3px solid var(--mat-blue-light);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: none;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-standard);
}

.info-item:hover {
    background: var(--mat-background);
}

.dark .info-item:hover {
    background: var(--color-boxground);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--mat-blue);
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(857%) hue-rotate(171deg) brightness(94%) contrast(89%);
    max-width: 30px;
}

.info-text {
    flex: 1;
}

.info-item strong {
    font-weight: 500;
    color: var(--mat-blue-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.7rem;
}

.dark .info-item strong {
    color: var(--mat-blue-light);
}

.info-item p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   ÉTAPES ET PROCESSUS
═══════════════════════════════════════════════════════════ */

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--mat-surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--elevation-1);
    position: relative;
    transition: var(--transition-standard);
}

.step-item:hover {
    box-shadow: var(--elevation-3);
    transform: translateX(5px);
}

.dark .step-item {
    background: var(--color-boxground);
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--mat-blue);
    border-radius: 12px 0 0 12px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--mat-blue-light);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.step-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HIGHLIGHTS ET CALLOUTS
═══════════════════════════════════════════════════════════ */

.sacrement-highlight {
    background: #FFF9E6;
    border-left: 4px solid var(--color-tertiary);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.dark .sacrement-highlight {
    background: rgba(255, 243, 205, 0.1);
    border-left-color: var(--color-tertiary);
}

.sacrement-highlight p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.vocation-callout {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--elevation-2);
}

.dark .vocation-callout {
    background: rgba(232, 245, 233, 0.1);
    border-color: #4CAF50;
}

.vocation-callout h4 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2E7D32;
    margin: 0 0 1rem 0;
}

.dark .vocation-callout h4 {
    color: #66BB6A;
}

.vocation-callout > p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   BADGES - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.sacrement-dates-badge {
    background: var(--mat-blue);
    border-radius: 8px;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sacrement-dates-badge strong {
    font-size: 1.8rem;
    font-weight: 600;
}

.sacrement-dates-badge p {
    font-size: 1.7rem;
    margin: 0;
}

.badge-icon {
    font-size: 2.5rem;
    filter: brightness(0) invert(1);
    max-width: 40px;
}

.badge-text {
    font-size: 1.6rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   OVERVIEW - MATERIAL CARDS
═══════════════════════════════════════════════════════════ */

.sacrement-overview {
    background: var(--mat-background);
    padding: 6rem 2rem;
}

.sacrement-overview h2 {
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: var(--mat-surface);
    border: none;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    transition: var(--transition-standard);
    padding: 3rem 2rem;
    text-align: center;
}

.overview-card:hover {
    box-shadow: var(--elevation-4);
    transform: translateY(-8px);
}

.dark .overview-card {
    background: var(--color-boxground);
}

.overview-icon {
    width: 64px;
    height: 64px;
    background: var(--mat-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.overview-card h4 {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION - MATERIAL
═══════════════════════════════════════════════════════════ */

.cta-section-enhanced {
    background: var(--mat-surface);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.dark .cta-section-enhanced {
    background: var(--color-boxground);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 96px;
    height: 96px;
    background: var(--mat-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.3);
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-content h2 {
    font-size: 3.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    border-radius: 8px;
    font-weight: 500;
    padding: 1.6rem 3.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--elevation-3);
    transition: var(--transition-standard);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-large {
    background: var(--mat-blue);
    color: white;
    border: none;
}

.btn-primary-large:hover {
    background: var(--mat-blue-dark);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.3);
    transform: translateY(-2px);
}

.btn-secondary-large {
    background: transparent;
    color: var(--mat-blue);
    border: 2px solid var(--mat-blue);
}

.btn-secondary-large:hover {
    background: var(--mat-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn-primary-large:active::after {
    animation: ripple 0.6s ease-out;
}

.btn-icon {
    font-size: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   COULEURS SPÉCIFIQUES PAR SACREMENT
═══════════════════════════════════════════════════════════ */

/* Baptême */
.bapteme .sacrement-card-header {
    background: linear-gradient(135deg, #42A5F5, #1976D2);
}

.bapteme .category-icon {
    background: linear-gradient(135deg, #42A5F5, #1976D2);
}

.bapteme .sacrement-icon-large {
    color: #1976D2;
}

/* Eucharistie */
.eucharistie .sacrement-card-header {
    background: linear-gradient(135deg, #FFA726, #F57C00);
}

.eucharistie .category-icon {
    background: linear-gradient(135deg, #FFA726, #F57C00);
}

.eucharistie .sacrement-icon-large {
    color: #F57C00;
}

/* Confirmation */
.confirmation .sacrement-card-header {
    background: linear-gradient(135deg, #EF5350, #C62828);
}

.confirmation .category-icon {
    background: linear-gradient(135deg, #EF5350, #C62828);
}

.confirmation .sacrement-icon-large {
    color: #C62828;
}

/* Réconciliation */
.reconciliation .sacrement-card-header {
    background: linear-gradient(135deg, #66BB6A, #388E3C);
}

.reconciliation .category-icon {
    background: linear-gradient(135deg, #66BB6A, #388E3C);
}

.reconciliation .sacrement-icon-large {
    color: #388E3C;
}

/* Onction */
.onction .sacrement-card-header {
    background: linear-gradient(135deg, #AB47BC, #7B1FA2);
}

.onction .category-icon {
    background: linear-gradient(135deg, #AB47BC, #7B1FA2);
}

.onction .sacrement-icon-large {
    color: #7B1FA2;
}

/* Mariage */
.mariage .sacrement-card-header {
    background: linear-gradient(135deg, #EC407A, #C2185B);
}

.mariage .category-icon {
    background: linear-gradient(135deg, #EC407A, #C2185B);
}

.mariage .sacrement-icon-large {
    color: #C2185B;
}

/* Ordre */
.ordre .sacrement-card-header {
    background: linear-gradient(135deg, #8D6E63, #5D4037);
}

.ordre .category-icon {
    background: linear-gradient(135deg, #8D6E63, #5D4037);
}

.ordre .sacrement-icon-large {
    color: #5D4037;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING ACTION BUTTON (SCROLL TO TOP)
═══════════════════════════════════════════════════════════ */

.scroll-top-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--mat-blue);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-standard);
    z-index: 100;
    color: white;
    border: none;
}

.scroll-top-fab:hover {
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.4);
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT ITEMS
═══════════════════════════════════════════════════════════ */

.contact-item {
    background: var(--mat-surface);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--elevation-2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-standard);
}

.contact-item:hover {
    box-shadow: var(--elevation-3);
    transform: translateX(5px);
}

.dark .contact-item {
    background: var(--color-boxground);
}

.contact-icons {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--mat-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-icon {
    filter: brightness(0) invert(1);
    max-width: 35px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.contact-text p {
    font-size: 1.7rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-item strong {
    font-size: 1.8rem;
}

.contact-item p {
    font-size: 1.7rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - MATERIAL
═══════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {
    .hero-content-wrapper h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .intro-card {
        padding: 3rem 2rem;
    }
    
    .intro-text-large {
        font-size: 1.7rem;
    }
    
    .sacrement-nav {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem 2rem;
    }
    
    .category-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .category-icon svg {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .category-title-wrapper h2 {
        font-size: 2.8rem;
    }
    
    .category-subtitle {
        font-size: 1.6rem;
    }
    
    .sacrement-card {
        border-radius: 12px;
    }
    
    .sacrement-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sacrement-number {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        font-size: 6rem;
    }
    
    .sacrement-header-content {
        padding-left: 0;
    }
    
    .sacrement-card-header h3 {
        font-size: 2.5rem;
    }
    
    .sacrement-tagline {
        font-size: 1.4rem;
    }
    
    .sacrement-quote p {
        font-size: 1.7rem;
    }
    
    .sacrement-description {
        font-size: 1.6rem;
    }
    
    .accordion-header {
        font-size: 1.6rem;
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item::before {
        display: none;
    }
    
    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .overview-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
    
    .cta-content p {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sacrement-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .hero-content-wrapper h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-decorative svg {
        width: 4rem;
        height: 4rem;
    }
    
    .intro-text-large {
        font-size: 1.5rem;
    }
    
    .category-title-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .category-subtitle {
        font-size: 1.4rem;
    }
    
    .sacrement-card {
        border-radius: 12px;
    }
    
    .sacrement-card-header {
        padding: 2rem;
    }
    
    .sacrement-number {
        font-size: 4rem;
    }
    
    .sacrement-icon-large {
        width: 56px;
        height: 56px;
    }
    
    .sacrement-icon-large svg {
        width: 3rem;
        height: 3rem;
    }
    
    .sacrement-card-header h3 {
        font-size: 2rem;
    }
    
    .sacrement-card-body {
        padding: 2rem;
    }
    
    .sacrement-quote p {
        font-size: 1.5rem;
        padding: 1.5rem;
    }
    
    .sacrement-description {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        font-size: 1.4rem;
        padding: 1.2rem;
    }
    
    .info-item strong {
        font-size: 1.5rem;
    }
    
    .info-item p {
        font-size: 1.4rem;
    }
    
    .step-content h4 {
        font-size: 1.6rem;
    }
    
    .step-content p {
        font-size: 1.4rem;
    }
    
    .vocation-callout {
        padding: 2rem;
    }
    
    .vocation-callout h4 {
        font-size: 1.9rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon svg {
        width: 4rem;
        height: 4rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.5rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        font-size: 1.5rem;
        padding: 1.5rem 2.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION BÉNÉDICTIONS - MATERIAL DESIGN
═══════════════════════════════════════════════════════════ */

.benedictions-section {
    background: var(--mat-background);
    padding: 1rem 0;
}

.intro-card .benediction-intro {
    margin-top: 0;
}

.benediction-intro {
    margin-bottom: 4rem;
}

/* Grid des bénédictions */
.benedictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Carte de bénédiction */
.benediction-card {
    background: var(--mat-surface);
    border-radius: 16px;
    box-shadow: var(--elevation-2);
    overflow: hidden;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.benediction-card:hover {
    box-shadow: var(--elevation-4);
    transform: translateY(-4px);
}

/* Header de la carte bénédiction */
.benediction-card-header {
    background: linear-gradient(135deg, var(--mat-blue), var(--mat-blue-light));
    padding: 3rem 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.benediction-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    transform: rotate(-15deg);
}

.benediction-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
    max-width: 50px;
}

.benediction-card-header h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.benediction-tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Body de la carte bénédiction */
.benediction-card-body {
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benediction-quote {
    background: linear-gradient(135deg, rgba(30, 95, 138, 0.05), rgba(30, 95, 138, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--mat-blue);
    position: relative;
}

.benediction-quote p {
    font-size: 1.7rem;
    font-style: italic;
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
}

.benediction-description p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* CTA dans les cartes */
.benediction-cta {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-tertiary);
    margin-top: auto;
}

.benediction-cta p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.benediction-cta strong {
    color: var(--mat-blue);
}

/* Section d'aide */
.benediction-help-section {
    margin-top: 5rem;
}

.help-card {
    background: linear-gradient(135deg, var(--mat-blue), var(--mat-blue-light));
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--elevation-3);
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.help-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.help-card h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.help-card p {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.btn-primary-benediction {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 3.5rem;
    background: white;
    color: var(--mat-blue);
    border-radius: 50px;
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-standard);
    box-shadow: var(--elevation-2);
    position: relative;
    z-index: 1;
}

.btn-primary-benediction:hover {
    transform: translateY(-3px);
    box-shadow: var(--elevation-4);
    background: #f5f5f5;
}

/* Process steps pour le déroulement */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--mat-blue), var(--mat-blue-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: var(--elevation-2);
}

.step-content h4 {
    font-size: 1.7rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--color-background-alt);
    border-radius: 12px;
    border-left: 4px solid var(--mat-blue-light);
}

.faq-item h4 {
    font-size: 1.7rem;
    color: var(--mat-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Responsive bénédictions */
@media (max-width: 768px) {
    .benedictions-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benediction-card-header {
        padding: 2.5rem 2rem;
    }
    
    .benediction-icon {
        font-size: 4rem;
    }
    
    .benediction-card-header h3 {
        font-size: 2rem;
    }
    
    .benediction-tagline {
        font-size: 1.4rem;
    }
    
    .benediction-card-body {
        padding: 2.5rem 2rem;
    }
    
    .benediction-quote p {
        font-size: 1.5rem;
    }
    
    .help-card {
        padding: 3rem 2rem;
    }
    
    .help-icon {
        font-size: 5rem;
    }
    
    .help-card h3 {
        font-size: 2.2rem;
    }
    
    .help-card p {
        font-size: 1.5rem;
    }
    
    .step-item {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }
}
