/* ============================================================================
   ANNOUNCEMENT BADGE - Position Absolute (Élégant et Discret)
   Version FIXED - Pas de bande blanche
   ============================================================================ */

/* Container avec position relative pour le header */
header {
    position: relative; /* Nécessaire pour que absolute fonctionne */
}

/* Badge Container - Position Absolute (ne suit PAS le scroll) */
/* ⚠️ IMPORTANT: display:none par défaut pour éviter la bande blanche */
.announcement-badge-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    animation: slideInRight 0.6s ease-out;
    display: none; /* ← AJOUTÉ : Masqué par défaut */
}

/* Le JavaScript met display:block UNIQUEMENT si annonce active */
.announcement-badge-container[style*="display: block"] {
    display: block;
}

/* Badge Principal */
.announcement-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 12px 45px 12px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    opacity: 0; /* Animation initiale */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Badge visible (après animation) */
.announcement-badge[style*="opacity: 1"] {
    opacity: 1;
}

/* Hover Effect */
.announcement-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Icône */
.announcement-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Texte */
.announcement-text {
    flex: 1;
    line-height: 1.4;
}

/* Bouton Fermer */
.announcement-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #1a1a2e;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* Animation d'entrée */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation de sortie */
.announcement-badge-container.closing {
    animation: slideOutRight 0.4s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* ============================================================================
   RESPONSIVE - Mobile & Tablet
   ============================================================================ */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .announcement-badge-container {
        right: 15px;
        top: 15px;
    }
    
    .announcement-badge {
        max-width: 280px;
        font-size: 13px;
        padding: 10px 40px 10px 12px;
    }
}

/* Mobile (jusqu'à 768px) */
@media (max-width: 768px) {
    .announcement-badge-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .announcement-badge {
        max-width: 100%;
        font-size: 12px;
        padding: 10px 35px 10px 12px;
    }
    
    .announcement-icon {
        font-size: 16px;
    }
    
    .announcement-close {
        font-size: 20px;
        right: 8px;
    }
}

/* Petit Mobile (jusqu'à 480px) */
@media (max-width: 480px) {
    .announcement-badge-container {
        top: 5px;
        right: 5px;
        left: 5px;
    }
    
    .announcement-badge {
        font-size: 11px;
        padding: 8px 30px 8px 10px;
        border-radius: 20px;
    }
    
    .announcement-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* ============================================================================
   ÉTATS SPÉCIAUX
   ============================================================================ */

/* Badge masqué */
.announcement-badge-container.hidden {
    display: none !important;
}

/* Badge prioritaire (couleur différente pour événements urgents) */
.announcement-badge.priority-high {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
}

.announcement-badge.priority-high .announcement-close {
    color: white;
}

/* Badge événement spécial (couleur thématique) */
.announcement-badge.theme-christmas {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    color: white;
}

.announcement-badge.theme-christmas .announcement-close {
    color: white;
}

/* ============================================================================
   ACCESSIBILITÉ
   ============================================================================ */

/* Focus visible pour navigation clavier */
.announcement-badge:focus-visible,
.announcement-close:focus-visible {
    outline: 2px solid #1a1a2e;
    outline-offset: 2px;
}

/* Réduction mouvement pour utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
    .announcement-badge-container {
        animation: none;
    }
    
    .announcement-badge {
        transition: none;
    }
    
    .announcement-badge-container.closing {
        animation: none;
        display: none;
    }
}
