/* ============================================
   BANNIÈRE DE COOKIES - STYLE RGPD
   ============================================ */

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-banner-content {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: #1a1a1a;
    color: white;
}

.cookie-btn-accept:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-refuse {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e8e8e8;
}

.cookie-btn-refuse:hover {
    background: #e8e8e8;
    color: #1a1a1a;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
        align-items: flex-end;
    }
    
    .cookie-banner-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
        border-radius: 4px 4px 0 0;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.3rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.9rem;
    }
}

/* Bouton pour gérer les cookies (optionnel, dans le footer) */
.cookie-settings-link {
    display: inline-block;
    color: #999;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 1rem;
}

.cookie-settings-link:hover {
    color: white;
}
