/* ==============================================
   PAGE ARCHIVES ALBUMS JOOMEO - DESIGN ULTRA-MODERNE 2026
   Version modernisée style Staff
   Créé le 18/01/2026
=============================================== */

/* Masquer UNIQUEMENT le contenu visuel du header, PAS le menu sticky */
.page-template-template-archives-albums .header .overlay-layer {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-template-template-archives-albums .intro-section {
    display: none !important;
}

/* Réduire l'espace du header au minimum */
.page-template-template-archives-albums .header {
    min-height: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Section principale avec fond dégradé */
.joomeo-section-modern {
    position: relative;
    padding: 60px 0 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Effet de particules en arrière-plan */
.joomeo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.joomeo-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(241, 108, 32, 0.4);
    border-radius: 50%;
    animation: particleFloat 20s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) translateX(80px);
        opacity: 0;
    }
}

.joomeo-overlay-modern {
    position: relative;
    z-index: 2;
}

/* Header moderne */
.joomeo-header-modern {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 80px;
    position: relative;
}

/* Icône principale */
.joomeo-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(241, 108, 32, 0.2) 0%, rgba(241, 108, 32, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
}

.joomeo-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f16c20, transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.joomeo-icon-wrapper svg {
    stroke: #f16c20;
    filter: drop-shadow(0 0 10px rgba(241, 108, 32, 0.5));
    position: relative;
    z-index: 1;
}

.joomeo-title-modern {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ligne décorative animée */
.joomeo-line-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto;
}

.joomeo-line-modern span {
    height: 3px;
    background: #f16c20;
    border-radius: 3px;
    animation: lineGrow 2s ease-in-out infinite;
}

.joomeo-line-modern span:nth-child(1) {
    width: 60px;
    animation-delay: 0s;
}

.joomeo-line-modern span:nth-child(2) {
    width: 100px;
    animation-delay: 0.3s;
}

.joomeo-line-modern span:nth-child(3) {
    width: 60px;
    animation-delay: 0.6s;
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(0.7);
        opacity: 0.6;
    }
}

/* Texte d'introduction */
.joomeo-intro-modern {
    max-width: 900px;
    margin: 0 auto 60px;
}

.joomeo-intro-main {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

.joomeo-intro-main strong {
    color: #f16c20;
    font-weight: 600;
}

/* Features */
.joomeo-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(241, 108, 32, 0.1);
    border: 1px solid rgba(241, 108, 32, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(241, 108, 32, 0.2);
    border-color: rgba(241, 108, 32, 0.5);
    transform: translateY(-3px);
}

.feature-item svg {
    stroke: #f16c20;
    flex-shrink: 0;
}

.joomeo-gratitude {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 40px 0 0 0;
    font-style: italic;
}

.joomeo-gratitude strong {
    color: #f16c20;
}

/* Carte d'accès principale */
.joomeo-access-card {
    max-width: 900px;
    margin: 0 auto 80px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(241, 108, 32, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header de la carte */
.access-card-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, rgba(241, 108, 32, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(241, 108, 32, 0.15);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.lock-icon svg {
    stroke: #f16c20;
}

.access-card-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.access-card-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.access-card-header strong {
    color: #f16c20;
    font-weight: 600;
}

/* Contenu de la carte */
.access-card-content {
    padding: 40px;
}

.access-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(241, 108, 32, 0.3);
    transform: translateX(5px);
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label svg {
    stroke: rgba(241, 108, 32, 0.8);
    flex-shrink: 0;
}

.info-value {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.highlight-orange {
    color: #f16c20;
    font-weight: 700;
}

.joomeo-link {
    color: #f16c20;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    word-break: break-all;
}

.joomeo-link:hover {
    color: #ff8c4a;
    transform: translateX(3px);
}

.joomeo-link svg {
    flex-shrink: 0;
}

/* Bouton CTA */
.access-cta {
    text-align: center;
}

.joomeo-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f16c20 0%, #ff8c4a 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(241, 108, 32, 0.3);
}

.joomeo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 108, 32, 0.5);
    background: linear-gradient(135deg, #ff8c4a 0%, #f16c20 100%);
}

.joomeo-button svg {
    flex-shrink: 0;
}

/* Footer de la carte */
.access-card-footer {
    padding: 25px 40px;
    background: rgba(241, 108, 32, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.help-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.help-notice svg {
    stroke: #f16c20;
    flex-shrink: 0;
}

.help-notice strong {
    color: #f16c20;
}

/* Statistiques */
.joomeo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }
.stat-card:nth-child(4) { animation-delay: 0.6s; }

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 108, 32, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(241, 108, 32, 0.2);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(241, 108, 32, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(241, 108, 32, 0.2);
    transform: scale(1.1);
}

.stat-icon svg {
    stroke: #f16c20;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #f16c20;
    margin: 0 0 10px 0;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .joomeo-title-modern {
        font-size: 42px;
    }
    
    .joomeo-intro-main {
        font-size: 16px;
    }
    
    .joomeo-features {
        gap: 20px;
    }
    
    .joomeo-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .joomeo-section-modern {
        padding: 40px 0 80px 0;
    }
    
    .joomeo-header-modern {
        margin-top: 60px;
        margin-bottom: 50px;
    }
    
    .joomeo-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .joomeo-icon-wrapper svg {
        width: 60px;
        height: 60px;
    }
    
    .joomeo-title-modern {
        font-size: 32px;
    }
    
    .joomeo-intro-main {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .joomeo-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .joomeo-access-card {
        margin: 0 15px 60px;
    }
    
    .access-card-header {
        padding: 40px 20px 25px;
    }
    
    .access-card-header h3 {
        font-size: 24px;
    }
    
    .access-card-content {
        padding: 30px 20px;
    }
    
    .info-value {
        font-size: 16px;
    }
    
    .joomeo-button {
        width: 100%;
        justify-content: center;
    }
    
    .access-card-footer {
        padding: 20px;
    }
    
    .help-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .joomeo-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-value {
        font-size: 36px;
    }
}

/* Animation pour les navigateurs qui supportent */
@media (prefers-reduced-motion: no-preference) {
    .joomeo-access-card,
    .stat-card {
        will-change: opacity, transform;
    }
}
