/* Tarte au Citron - Styles modernes avec support du mode sombre */

/* Reset et polices */
#tarteaucitronRoot {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1a202c;
}

/* Support du mode sombre avec Alpine.js/Tailwind */
.dark #tarteaucitronRoot {
    color: #e2e8f0;
}

.dark #tarteaucitronRoot a,
.dark #tarteaucitronPrivacyUrl,
.dark #tarteaucitronCloseAlert {
    color: #ffffff !important;
    text-decoration: underline;
}

.dark #tarteaucitronRoot a:hover,
.dark #tarteaucitronPrivacyUrl:hover,
.dark #tarteaucitronCloseAlert:hover {
    color: #e2e8f0 !important;
    opacity: 0.9;
}


/* Bandeau d'alerte */
#tarteaucitronAlertBig {
    position: fixed;
    z-index: 9999;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 48rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0; /* Modifié pour gérer le padding différemment */
    max-height: 90vh;
    overflow: hidden; /* Pour que l'image dépasse bien dans les coins arrondis */
    transition: background-color 0.3s, color 0.3s;
}

#tarteaucitronRoot.tarteaucitronBeforeVisible {
    position: absolute;
}

/* Contenu de la bannière d'alerte */
#tarteaucitronAlertBig > div {
    padding: 1.5rem;
}

/* En-tête personnalisé de la bannière */
.tac-alert-header {
    width: 100%;
    height: 100px; /* Hauteur de l'image */
    background-image: url('../../assets/img/cookies_karate_eperlecques.png');
    background-size: cover;
    background-position: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Mode sombre pour le bandeau */
.dark #tarteaucitronAlertBig {
    background-color: #1e293b;
    color: #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Texte du bandeau d'alerte */
#tarteaucitronDisclaimerAlert {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    transition: color 0.3s;
}

/* Mode sombre pour le texte */
.dark #tarteaucitronDisclaimerAlert {
    color: #e2e8f0;
}

/* Boutons généraux */
#tarteaucitronAlertBig button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Bouton Accepter */
#tarteaucitronPersonalize2 {
    background-color: #2563eb;
    color: white;
    margin-right: 1rem;
}

#tarteaucitronPersonalize2:hover {
    background-color: #1d4ed8;
}

/* Bouton Refuser */
#tarteaucitronAllDenied2 {
    background-color: #e2e8f0;
    color: #1a202c;
}

#tarteaucitronAllDenied2:hover {
    background-color: #cbd5e0;
}

/* Bouton Fermer */
#tarteaucitronCloseAlert {
    color: #2563eb;
    text-decoration: underline;
    background: none;
    padding: 0;
}

#tarteaucitronCloseAlert:hover {
    color: #1e40af;
}

/* Lien politique de confidentialité */
#tarteaucitronPrivacyUrl {
    color: #2563eb;
    text-decoration: underline;
    margin-left: 1rem;
}

#tarteaucitronPrivacyUrl:hover {
    color: #1e40af;
}

/* Modal - Masquée par défaut */
#tarteaucitron {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none; /* Masqué par défaut */
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    overflow-y: auto;
    transition: background-color 0.3s;
}

/* Afficher la modale uniquement quand elle est active */
#tarteaucitron.tac_show {
    display: flex;
}

/* Mode sombre pour le fond de la modale */
.dark #tarteaucitron {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Contenu de la modale */
#tarteaucitron > div {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Cache le contenu qui dépasse */
    padding: 0;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

/* En-tête personnalisé de la modale */
.tac-modal-header {
    width: 100%;
    height: 120px; /* Hauteur de l'image */
    background-image: url('../img/cookies_karate_eperlecques.png');
    background-size: cover;
    background-position: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    flex-shrink: 0; /* Empêche le rétrécissement de l'en-tête */
}

/* Contenu de la modale (sous l'en-tête) */
#tarteaucitron > div > div:not(.tac-modal-header) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    overflow-y: auto; /* Permet le défilement vertical */
    flex: 1; /* Prend tout l'espace disponible */
    max-height: calc(90vh - 120px); /* Hauteur maximale moins la hauteur de l'en-tête */
}

/* Mode sombre pour le contenu de la modale */
.dark #tarteaucitron > div {
    background-color: #1e293b;
    color: #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* En-tête de la modale */
.tarteaucitronH1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

/* Catégories de services */
.tarteaucitronTitle button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    text-align: left;
    background-color: #f7fafc;
    color: #1a202c;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mode sombre pour les boutons de catégories */
.dark .tarteaucitronTitle button {
    background-color: #334155;
    color: #e2e8f0;
}

.dark .tarteaucitronTitle button:hover {
    background-color: #475569;
}

.tarteaucitronTitle button:hover {
    background-color: #edf2f7;
}

/* Éléments de service */
.tarteaucitronLine {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    transition: border-color 0.3s;
}

/* Mode sombre pour les séparateurs */
.dark .tarteaucitronLine {
    border-bottom-color: #475569;
}

/* Nom du service */
.tarteaucitronH3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s;
}

/* Mode sombre pour les titres */
.dark .tarteaucitronH3 {
    color: #f8fafc;
}

/* Description du service */
.tarteaucitronLine span:not(.tarteaucitronH3) {
    color: #4a5568;
    font-size: 0.875rem;
    display: block;
    transition: color 0.3s;
}

/* Mode sombre pour le texte des descriptions */
.dark .tarteaucitronLine span:not(.tarteaucitronH3) {
    color: #94a3b8;
}

/* Boutons bascule */
.tarteaucitronAllow,
.tarteaucitronDeny {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    outline: none;
}

.tarteaucitronAllow {
    background-color: #10b981;
    color: white;
    margin-right: 0.5rem;
}

.tarteaucitronAllow:hover {
    background-color: #059669;
}

.tarteaucitronDeny {
    background-color: #ef4444;
    color: white;
}

.tarteaucitronDeny:hover {
    background-color: #dc2626;
}

/* Réactivité */
@media (max-width: 768px) {
    #tarteaucitronAlertBig {
        width: 95%;
        padding: 1rem;
    }
    
    #tarteaucitronAlertBig button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #tarteaucitronPrivacyUrl {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }
}

/* Animation de la modale */
@keyframes tacFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#tarteaucitron {
    animation: tacFadeIn 0.3s ease-out;
}

/* Overlay */
#tarteaucitron::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
div#tarteaucitronAlertBig::before {
	content: ''; 
	font-size: 0px;
}

/* Style du bouton de fermeture */
#tarteaucitronClosePanel {
    background: none;
    border: none;
    color: white !important;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 10;
}

#tarteaucitronClosePanel:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
}

#tarteaucitronClosePanel:hover {
    opacity: 0.8;
}

#tarteaucitronServices {
    padding: 1rem 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
